diff --git a/.github/workflows/test-runner.yml b/.github/workflows/test-runner.yml index fe6c35e9b..42eda86ab 100644 --- a/.github/workflows/test-runner.yml +++ b/.github/workflows/test-runner.yml @@ -20,9 +20,9 @@ jobs: - 2019.3.15f1 - 2019.4.40f1 - 2020.3.48f1 - - 2021.3.37f1 - - 2022.3.24f1 - - 2023.2.18f1 + - 2021.3.45f1 + - 2022.3.43f1 + - 6000.0.23f1 steps: #Test Checkout @@ -39,7 +39,7 @@ jobs: Library-${{ matrix.unityVersion }} #Test Runner - - uses: game-ci/unity-test-runner@v4.1.1 + - uses: game-ci/unity-test-runner@v4.3.1 id: tests env: UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} diff --git a/.github/workflows/test-runner_dispatch.yml b/.github/workflows/test-runner_dispatch.yml index fa4cd50fd..36c53d6b2 100644 --- a/.github/workflows/test-runner_dispatch.yml +++ b/.github/workflows/test-runner_dispatch.yml @@ -15,6 +15,7 @@ jobs: #- playmode - editmode unityVersion: + #this might need to be corrected in the future - 2019.3.15f1 - 2019.4.40f1 - 2020.1.17f1 @@ -28,6 +29,7 @@ jobs: - 2022.3.24f1 - 2023.1.7f1 - 2023.2.18f1 + - 6000.0.23f1 steps: #Test Checkout diff --git a/.github/workflows/unity-builder.yml b/.github/workflows/unity-builder.yml index 9ff359b90..b75be48cb 100644 --- a/.github/workflows/unity-builder.yml +++ b/.github/workflows/unity-builder.yml @@ -20,15 +20,15 @@ jobs: - 2019.3.15f1 - 2019.4.40f1 - 2020.3.48f1 - - 2021.3.37f1 - - 2022.3.24f1 - - 2023.2.18f1 + - 2021.3.45f1 + - 2022.3.43f1 + - 6000.0.23f1 include: - targetPlatform: WebGL unityVersion: 2019.3.15f1 - targetPlatform: WebGL - unityVersion: 2023.2.18f1 + unityVersion: 6000.0.23f1 steps: @@ -47,7 +47,7 @@ jobs: Library-${{ matrix.unityVersion }} #Build - - uses: game-ci/unity-builder@v4.2.3 + - uses: game-ci/unity-builder@v4.3.0 env: UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} diff --git a/Assets/LDtkUnity/CHANGELOG.md b/Assets/LDtkUnity/CHANGELOG.md index c196d8dcf..39de27fd9 100644 --- a/Assets/LDtkUnity/CHANGELOG.md +++ b/Assets/LDtkUnity/CHANGELOG.md @@ -1,4 +1,39 @@ -## [6.4.5](https://github.com/Cammin/LDtkToUnity/compare/6.4.4...6.4.5) (2024-09-23) +# [6.6.0](https://github.com/Cammin/LDtkToUnity/compare/6.5.1...6.6.0) (2024-12-08) + + +### Bug Fixes + +* All samples now have collision setup. Most have intgrid value tile collision, but some others use tileset file collision. ([808db33](https://github.com/Cammin/LDtkToUnity/commit/808db3328835cfa1f5a81587f3fb2e6ee7fb64c2)) +* Fixed separate levels not reimporting when the configured fields in the project importer inspector was changed. This was fixed by introducing a new config file that gets generated by the project importer (.ldtkc) ([a7be947](https://github.com/Cammin/LDtkToUnity/commit/a7be9471a1874761ddf963857803954fbda980c8)) + + +### Features + +* Importer dependency section now additonally shows an icon for each depended asset ([9ddc70a](https://github.com/Cammin/LDtkToUnity/commit/9ddc70aaf684aa043a1a02adf09b8cd88dd8043a)) + +## [6.5.1](https://github.com/Cammin/LDtkToUnity/compare/6.5.0...6.5.1) (2024-12-01) + + +### Bug Fixes + +* Mac/Linux: Fixed a command-related error message in the importer inspector even when the command is correct ([5796eae](https://github.com/Cammin/LDtkToUnity/commit/5796eae5659a465ceaaca44c988fbf298f8d7ee3)) +* Verbose log will properly log when tilemaps are refreshed even if the scene window doesn't exist ([9ada5d4](https://github.com/Cammin/LDtkToUnity/commit/9ada5d4ec2e14365173bd3447ff80b6745f4852a)) + +# [6.5.0](https://github.com/Cammin/LDtkToUnity/compare/6.4.6...6.5.0) (2024-11-21) + + +### Features + +* Enabling verbose logging will log the tilemap refresh notification that occurs after importing a tileset file ([1e6960c](https://github.com/Cammin/LDtkToUnity/commit/1e6960ccfeee2f88b05e8bc2a2fa95c27039e9d1)) + +## [6.4.6](https://github.com/Cammin/LDtkToUnity/compare/6.4.5...6.4.6) (2024-11-04) + + +### Bug Fixes + +* Fix a compile error for linux editors ([50247c4](https://github.com/Cammin/LDtkToUnity/commit/50247c4ff6697fcea0a4eabeaac561e002b7bd12)) + +## [6.4.5](https://github.com/Cammin/LDtkToUnity/compare/6.4.4...6.4.5) (2024-09-23) ### Performance Improvements diff --git a/Assets/LDtkUnity/Editor/Builders/LDtkBuilderProject.cs b/Assets/LDtkUnity/Editor/Builders/LDtkBuilderProject.cs index 9d7ae87d7..2154b8869 100644 --- a/Assets/LDtkUnity/Editor/Builders/LDtkBuilderProject.cs +++ b/Assets/LDtkUnity/Editor/Builders/LDtkBuilderProject.cs @@ -2,6 +2,7 @@ namespace LDtkUnity.Editor { + //todo: add support for runtime building startting from here. use the LDtkConfig object instead of the importers internal sealed class LDtkProjectBuilder { private readonly LDtkProjectImporter _project; diff --git a/Assets/LDtkUnity/Editor/CustomEditor/Importer/LDtkConfigImporterEditor.cs b/Assets/LDtkUnity/Editor/CustomEditor/Importer/LDtkConfigImporterEditor.cs new file mode 100644 index 000000000..36859a364 --- /dev/null +++ b/Assets/LDtkUnity/Editor/CustomEditor/Importer/LDtkConfigImporterEditor.cs @@ -0,0 +1,24 @@ +using UnityEditor; + +#if UNITY_2020_2_OR_NEWER +using UnityEditor.AssetImporters; +#else +using UnityEditor.Experimental.AssetImporters; +#endif + +namespace LDtkUnity.Editor +{ + [CanEditMultipleObjects] + [CustomEditor(typeof(LDtkConfigImporter))] + internal sealed class LDtkConfigImporterEditor : ScriptedImporterEditor + { + public override void OnInspectorGUI() + { + const string msg = "This file is generated by the project importer.\n" + + "It contains the configuration data from the project inspector.\n" + + "It is only used for telling the levels to reimport when this is changed."; + EditorGUILayout.HelpBox(msg, MessageType.Info); + ApplyRevertGUI(); + } + } +} \ No newline at end of file diff --git a/Assets/LDtkUnity/Editor/CustomEditor/Importer/LDtkConfigImporterEditor.cs.meta b/Assets/LDtkUnity/Editor/CustomEditor/Importer/LDtkConfigImporterEditor.cs.meta new file mode 100644 index 000000000..f32690d1e --- /dev/null +++ b/Assets/LDtkUnity/Editor/CustomEditor/Importer/LDtkConfigImporterEditor.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 140d76bba56441daa47a526fa5243295 +timeCreated: 1733635295 \ No newline at end of file diff --git a/Assets/LDtkUnity/Editor/CustomEditor/Importer/LDtkEditorCommandUpdater.cs b/Assets/LDtkUnity/Editor/CustomEditor/Importer/LDtkEditorCommandUpdater.cs index 2f6d88827..7ac6ddb22 100644 --- a/Assets/LDtkUnity/Editor/CustomEditor/Importer/LDtkEditorCommandUpdater.cs +++ b/Assets/LDtkUnity/Editor/CustomEditor/Importer/LDtkEditorCommandUpdater.cs @@ -287,20 +287,6 @@ public bool HasCustomCommand(LdtkJson data, out string reason) return false; } - //ensure that there is a 2nd arg. - string[] split = Regex.Matches(command.Command, @"[\""].+?[\""]|[^ ]+") - .Cast() - .Select(m => m.Value) - .ToArray(); - - if (split.Length != 2 || split[1] != $"\"{ProjectName}\"") - { - reason = $"The command exists, but doesn't have a single parameter of the project name." + - $"\n" + - $"The command was this:\n{command.Command}"; - return false; - } - reason = null; return true; } diff --git a/Assets/LDtkUnity/Editor/CustomEditor/SectionDrawers/LDtkSectionDependencies.cs b/Assets/LDtkUnity/Editor/CustomEditor/SectionDrawers/LDtkSectionDependencies.cs index f3422131b..d9d38b1c0 100644 --- a/Assets/LDtkUnity/Editor/CustomEditor/SectionDrawers/LDtkSectionDependencies.cs +++ b/Assets/LDtkUnity/Editor/CustomEditor/SectionDrawers/LDtkSectionDependencies.cs @@ -1,6 +1,8 @@ -using System.Linq; +using System; +using System.Linq; using UnityEditor; using UnityEngine; +using Object = UnityEngine.Object; namespace LDtkUnity.Editor { @@ -9,6 +11,7 @@ internal sealed class LDtkSectionDependencies : LDtkSectionDrawer private readonly SerializedObject _serializedObject; private string[] _dependencies; private Object[] _dependencyAssets; + private GUIContent[] _dependencyContent; protected override string GuiText => "Dependencies"; protected override string GuiTooltip => "Dependencies that were defined since the last import.\n" + @@ -40,15 +43,35 @@ public LDtkSectionDependencies(LDtkImporterEditor editor, SerializedObject seria _dependencies = LDtkDependencyCache.Load(importerPath); _dependencyAssets = new Object[_dependencies.Length]; + _dependencyContent = new GUIContent[_dependencies.Length]; for (int i = 0; i < _dependencies.Length; i++) { _dependencyAssets[i] = AssetDatabase.LoadAssetAtPath(_dependencies[i]); + _dependencyContent[i] = new GUIContent + { + text = _dependencyAssets[i].name, + tooltip = _dependencies[i], + image = GetIconForDependency(_dependencyAssets[i].GetType(), _dependencies[i]) + }; + } + + Texture2D GetIconForDependency(Type type, string assetPath) + { + AssetImporter importer = AssetImporter.GetAtPath(assetPath); + + if (importer != null && importer is LDtkTilesetImporter) + { + return LDtkIconUtility.LoadTilesetFileIcon(); + } + + return AssetPreview.GetMiniTypeThumbnail(type); } } public override void Draw() { + //don't draw this section at all if there are no dependencies if (_dependencyAssets.All(p => p == null)) { return; @@ -60,9 +83,9 @@ public override void Draw() protected override void DrawDropdownContent() { + EditorGUIUtility.SetIconSize(Vector2.one * 16f); for (int i = 0; i < _dependencies.Length; i++) { - string dependency = _dependencies[i]; Object dependencyAsset = _dependencyAssets[i]; if (dependencyAsset == null) @@ -70,11 +93,9 @@ protected override void DrawDropdownContent() continue; } - GUIContent content = new GUIContent(dependencyAsset.name, dependency); - using (new LDtkGUIEnabledScope(false)) { - EditorGUILayout.ObjectField(content, dependencyAsset, typeof(Object), false); + EditorGUILayout.ObjectField(_dependencyContent[i], dependencyAsset, typeof(Object), false); } } } diff --git a/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkConfigImporter.cs b/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkConfigImporter.cs new file mode 100644 index 000000000..9c771b617 --- /dev/null +++ b/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkConfigImporter.cs @@ -0,0 +1,25 @@ +using UnityEngine; + +#if UNITY_2020_2_OR_NEWER +using UnityEditor.AssetImporters; +#else +using UnityEditor.Experimental.AssetImporters; +#endif + +namespace LDtkUnity.Editor +{ + [ScriptedImporter(LDtkImporterConsts.CONFIG_VERSION, LDtkImporterConsts.CONFIG_EXT, LDtkImporterConsts.CONFIG_ORDER)] + internal sealed class LDtkConfigImporter : ScriptedImporter + { + public override void OnImportAsset(AssetImportContext ctx) + { + LDtkConfigData data = LDtkConfigData.ReadJson(assetPath); + + LDtkConfig obj = ScriptableObject.CreateInstance(); + obj._data = data; + + ctx.AddObjectToAsset("main", obj, LDtkIconUtility.LoadListIcon()); + ctx.SetMainObject(obj); + } + } +} \ No newline at end of file diff --git a/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkConfigImporter.cs.meta b/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkConfigImporter.cs.meta new file mode 100644 index 000000000..77dc80aba --- /dev/null +++ b/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkConfigImporter.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e306d4530b9e4685b6ed80f056cbdfa5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {fileID: 2800000, guid: d0a523b7db0d3014ca35ab02049633ea, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkImporterConsts.cs b/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkImporterConsts.cs index 19066c04f..613d5e48b 100644 --- a/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkImporterConsts.cs +++ b/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkImporterConsts.cs @@ -2,15 +2,18 @@ { internal static class LDtkImporterConsts { - public const int PROJECT_VERSION = 31; - public const int LEVEL_VERSION = 15; + public const int PROJECT_VERSION = 32; + public const int LEVEL_VERSION = 16; public const int TILESET_VERSION = 8; + public const int CONFIG_VERSION = 0; + public const string MINIMUM_JSON_VERSION = "1.5.0"; public const string EXPORT_APP_VERSION_REQUIRED = "1.5.3.1"; public const string PROJECT_EXT = "ldtk"; public const string LEVEL_EXT = "ldtkl"; public const string TILESET_EXT = "ldtkt"; + public const string CONFIG_EXT = "ldtkc"; public const int DEFAULT_PPU = 16; private const int SCRIPTED_IMPORTER_ORDER = 1000; @@ -21,6 +24,7 @@ internal static class LDtkImporterConsts //Import order https://forum.unity.com/threads/understanding-import-order-of-native-unity-asset-types.1187845/#post-9171509 //Important to reimport before prefabs (1500) //99 is the secret parallel import value, but doesnt appear to work. maybe in a future update + public const int CONFIG_ORDER = 1093 - SCRIPTED_IMPORTER_ORDER; public const int TILESET_ORDER = 1094 - SCRIPTED_IMPORTER_ORDER; public const int PROJECT_ORDER = 1095 - SCRIPTED_IMPORTER_ORDER; public const int LEVEL_ORDER = 1099 - SCRIPTED_IMPORTER_ORDER; diff --git a/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkProjectImporter.cs b/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkProjectImporter.cs index a69591855..305bc5db6 100644 --- a/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkProjectImporter.cs +++ b/Assets/LDtkUnity/Editor/ScriptedImporter/LDtkProjectImporter.cs @@ -167,6 +167,10 @@ protected override void Import() TryGenerateEnums(json); LDtkProfiler.EndSample(); + LDtkProfiler.BeginSample("CreateConfigurationFile"); + GenerateConfigurationFile(json); + LDtkProfiler.EndSample(); + LDtkProfiler.BeginSample("BufferEditorCache"); BufferEditorCache(); LDtkProfiler.EndSample(); @@ -242,10 +246,34 @@ private void TryCreateTableOfContents(LdtkJson json) } Toc = ScriptableObject.CreateInstance(); - Toc.name += Path.GetFileNameWithoutExtension(assetPath) + "_Toc"; + Toc.name += AssetName + "_Toc"; Toc.Initialize(json); ImportContext.AddObjectToAsset("toc", Toc, LDtkIconUtility.LoadListIcon()); } + + private void GenerateConfigurationFile(LdtkJson json) + { + //only generate the file if separate levels is used + if (!json.ExternalLevels) return; + + LDtkConfigData config = new LDtkConfigData() + { + PixelsPerUnit = _pixelsPerUnit, + CustomLevelPrefab = _customLevelPrefab, + IntGridValueColorsVisible = _intGridValueColorsVisible, + UseCompositeCollider = _useCompositeCollider, + GeometryType = _geometryType, + CreateBackgroundColor = _createBackgroundColor, + CreateLevelBoundsTrigger = _createLevelBoundsTrigger, + UseParallax = _useParallax, + IntGridValues = _intGridValues, + Entities = _entities, + }; + string writePath = config.WriteJson(assetPath); + + //importing the asset if it doesn't exist due to the asset database not refreshing this automatically + AssetDatabase.ImportAsset(writePath); + } private void BufferEditorCache() { diff --git a/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfig.cs b/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfig.cs new file mode 100644 index 000000000..fb9580468 --- /dev/null +++ b/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfig.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +namespace LDtkUnity.Editor +{ + /// + /// Purely a class to hold the LDtkConfigData as an import artifact + /// + internal sealed class LDtkConfig : ScriptableObject + { + public LDtkConfigData _data; + } +} \ No newline at end of file diff --git a/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfig.cs.meta b/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfig.cs.meta new file mode 100644 index 000000000..572d498ca --- /dev/null +++ b/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfig.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1646b9ca512648909e9b895e83536d3e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {fileID: 2800000, guid: d0a523b7db0d3014ca35ab02049633ea, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfigData.cs b/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfigData.cs new file mode 100644 index 000000000..e58465b85 --- /dev/null +++ b/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfigData.cs @@ -0,0 +1,54 @@ +using System; +using System.IO; +using System.Text; +using UnityEngine; + +namespace LDtkUnity.Editor +{ + //todo: could be used to spawn levels in runtime potentially + [Serializable] + internal struct LDtkConfigData + { + public int PixelsPerUnit; + public GameObject CustomLevelPrefab; + public bool IntGridValueColorsVisible; + public bool UseCompositeCollider; + public CompositeCollider2D.GeometryType GeometryType; + public bool CreateBackgroundColor; + public bool CreateLevelBoundsTrigger; + public bool UseParallax; + public LDtkAssetIntGridValue[] IntGridValues; + public LDtkAssetEntity[] Entities; + + internal string WriteJson(string projectAssetPath) + { + string writePath = GetPath(projectAssetPath); + string json = JsonUtility.ToJson(this, true); + byte[] byteArray = Encoding.UTF8.GetBytes(json); + + LDtkPathUtility.TryCreateDirectoryForFile(writePath); + + File.WriteAllBytes(writePath, byteArray); + return writePath; + } + + internal static LDtkConfigData ReadJson(string assetPath) + { + if (!File.Exists(assetPath)) + { + return new LDtkConfigData(); + } + + byte[] bytes = File.ReadAllBytes(assetPath); + string json = Encoding.UTF8.GetString(bytes); + return JsonUtility.FromJson(json); + } + + internal static string GetPath(string projectAssetPath) + { + string dir = Path.GetDirectoryName(projectAssetPath); + string importerAssetName = Path.GetFileNameWithoutExtension(projectAssetPath); + return Path.Combine(dir, importerAssetName, $"{importerAssetName}_Config.{LDtkImporterConsts.CONFIG_EXT}"); + } + } +} \ No newline at end of file diff --git a/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfigData.cs.meta b/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfigData.cs.meta new file mode 100644 index 000000000..5683d540d --- /dev/null +++ b/Assets/LDtkUnity/Editor/Utility/Artifacts/LDtkConfigData.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: fb903341661e499d81654cf46506c33a +timeCreated: 1733564261 \ No newline at end of file diff --git a/Assets/LDtkUnity/Editor/Utility/Dependencies/LDtkLevelDependencyFactory.cs b/Assets/LDtkUnity/Editor/Utility/Dependencies/LDtkLevelDependencyFactory.cs index 2298d8fa6..4ce615a26 100644 --- a/Assets/LDtkUnity/Editor/Utility/Dependencies/LDtkLevelDependencyFactory.cs +++ b/Assets/LDtkUnity/Editor/Utility/Dependencies/LDtkLevelDependencyFactory.cs @@ -58,6 +58,20 @@ public static string[] GatherLevelDependencies(string levelPath) //in this case, it's: //- LDtkIntGridValue assets (so tilemaps tile references are updated properly), //- Entity prefabs, and level prefab (so that prefabs in the import result are updated, because normally they aren't after editing a prefab) + + //levels are not updated with the new/removed dependencies when changed in the project importer inspector. therefore, we need to at least specifically depend on the project meta data. + //paths.Add(projectPath + ".meta"); + //NEW DEVELOPMENT: we should only depend on the meta file of the project, but not the source asset. + //We ended up choosing to generate a new file. Here's how its referenced. + string pathToProjectConfig = LDtkConfigData.GetPath(projectPath); + if (File.Exists(pathToProjectConfig)) + { + paths.Add(pathToProjectConfig); + } + else + { + LDtkDebug.LogWarning($"Could not find the level's project configuration file from {levelPath}. This will make levels not update properly when the project is changed in the importer inspector."); + } //Within the above types of assets we want to depend on, we only want to depend on assets that are used in a particular level as to further prevent unnecessary reimports. DugDependencyDataLevel depends = new DugDependencyDataLevel(); diff --git a/Assets/LDtkUnity/Editor/Utility/LDtkTilemapColliderReset.cs b/Assets/LDtkUnity/Editor/Utility/LDtkTilemapColliderReset.cs index 5297e6977..c567668e2 100644 --- a/Assets/LDtkUnity/Editor/Utility/LDtkTilemapColliderReset.cs +++ b/Assets/LDtkUnity/Editor/Utility/LDtkTilemapColliderReset.cs @@ -1,8 +1,10 @@ -using System.Diagnostics; +using System; +using System.Diagnostics; using System.Linq; using UnityEditor; using UnityEngine; using UnityEngine.Tilemaps; +using Debug = UnityEngine.Debug; namespace LDtkUnity.Editor { @@ -56,12 +58,19 @@ public static void TilemapColliderTileUpdate() } } watch.Stop(); - + + float seconds = watch.ElapsedMilliseconds * 0.001f; SceneView view = SceneView.lastActiveSceneView; - if (view != null && affected > 0) + string msg = $"Refreshed LDtk scene tilemaps\n({affected} in {seconds:F2}s)"; + + if (view != null) + { + view.ShowNotification(new GUIContent(msg), 2.5f); + } + + if (LDtkPrefs.VerboseLogging) { - float seconds = watch.ElapsedMilliseconds * 0.001f; - view.ShowNotification(new GUIContent($"Refreshed LDtk scene tilemaps\n({affected} in {seconds:F2}s)"), 2.5f); + LDtkDebug.Log(msg); } }; } diff --git a/Assets/LDtkUnity/Editor/Utility/LDtkTilesetExporterUtility.cs b/Assets/LDtkUnity/Editor/Utility/LDtkTilesetExporterUtility.cs index 4bb734b20..5f1a3c0d7 100644 --- a/Assets/LDtkUnity/Editor/Utility/LDtkTilesetExporterUtility.cs +++ b/Assets/LDtkUnity/Editor/Utility/LDtkTilesetExporterUtility.cs @@ -1,9 +1,14 @@ using System; using System.Diagnostics; using System.IO; +using UnityEditor; using UnityEngine; using Debug = UnityEngine.Debug; +#if UNITY_EDITOR_LINUX +using UnityEditor; +#endif + namespace LDtkUnity.Editor { internal static class LDtkTilesetExporterUtil @@ -113,4 +118,4 @@ public static bool GetAppUpToDate(out Version version, out Version requiredVersi return version == requiredVersion; } } -} \ No newline at end of file +} diff --git a/Assets/LDtkUnity/Samples~/Common/LDtkExampleTile_Grid.asset b/Assets/LDtkUnity/Samples~/Common/LDtkExampleTile_Grid.asset index 4bf8bbae4..2a895d460 100644 --- a/Assets/LDtkUnity/Samples~/Common/LDtkExampleTile_Grid.asset +++ b/Assets/LDtkUnity/Samples~/Common/LDtkExampleTile_Grid.asset @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 31471dfd53d5490a956a89a1b2d11ad9, type: 3} m_Name: LDtkExampleTile_Grid m_EditorClassIdentifier: - _colliderType: 0 + _colliderType: 2 _customPhysicsSprite: {fileID: 0} _tilemapTag: Untagged _tilemapLayerMask: 0 diff --git a/Assets/LDtkUnity/Samples~/Common/Scripts/ExampleImportedLadder.cs b/Assets/LDtkUnity/Samples~/Common/Scripts/ExampleImportedLadder.cs new file mode 100644 index 000000000..96c26dbce --- /dev/null +++ b/Assets/LDtkUnity/Samples~/Common/Scripts/ExampleImportedLadder.cs @@ -0,0 +1,48 @@ +using LDtkUnity; +using UnityEngine; + +namespace Samples +{ + /// + /// This example demonstrates how resizing an LDtk entity can dynamically adjust the size of an object. + /// + public class ExampleImportedLadder : MonoBehaviour, ILDtkImportedEntity + { + [SerializeField] private SpriteRenderer _renderer = null; + [SerializeField] private BoxCollider2D _collider = null; + + public void OnLDtkImportEntity(EntityInstance entityInstance) + { + if (_renderer == null) + { + Debug.LogWarning($"LDtk Sample: An entity's referenced renderer component was null. This can happen when importing the examples for the first time. Try reimporting again to fix the samples.\n{name}", gameObject); + return; + } + if (_collider == null) + { + Debug.LogWarning($"LDtk Sample: An entity's referenced collider component was null. This can happen when importing the examples for the first time. Try reimporting again to fix the samples.\n{name}", gameObject); + return; + } + + //The importer will normally scale the GameObject based on how much it was resized in LDtk. + //But we don't want that in this instance, so set the scale back to one. + transform.localScale = Vector3.one; + + //The resize factor is the entity instance size divided by the entity definition size. + //Alternatively if the base prefab was never scaled, the y scale of the entity GameObject can be used too. + float yScale = entityInstance.Height / (float)entityInstance.Definition.Height; + + _renderer.size = new Vector2(_renderer.size.x, yScale); + _collider.size = new Vector2(_collider.size.x, yScale); + + //Because the entity's pivot is in the top left, the sprite's pivot was configured accordingly to have the corresponding pivot. + //However, it's not possible to configure a pivot for a BoxCollider2D, so the colliders offset needs to be manually determined. + _collider.offset = new Vector2(_collider.offset.x, -yScale * 0.5f); + } + + public int GetPostprocessOrder() + { + return -1; + } + } +} \ No newline at end of file diff --git a/Assets/LDtkUnity/Samples~/Common/Scripts/ExampleImportedLadder.cs.meta b/Assets/LDtkUnity/Samples~/Common/Scripts/ExampleImportedLadder.cs.meta new file mode 100644 index 000000000..b32443056 --- /dev/null +++ b/Assets/LDtkUnity/Samples~/Common/Scripts/ExampleImportedLadder.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 0b0571a2f3dca1a4692e7ec77ada60c9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/LDtkUnity/Samples~/Common/Sprites/Ladder.png b/Assets/LDtkUnity/Samples~/Common/Sprites/Ladder.png new file mode 100644 index 000000000..9261fff67 Binary files /dev/null and b/Assets/LDtkUnity/Samples~/Common/Sprites/Ladder.png differ diff --git a/Assets/LDtkUnity/Samples~/Common/Sprites/Ladder.png.meta b/Assets/LDtkUnity/Samples~/Common/Sprites/Ladder.png.meta new file mode 100644 index 000000000..9a1e7b764 --- /dev/null +++ b/Assets/LDtkUnity/Samples~/Common/Sprites/Ladder.png.meta @@ -0,0 +1,143 @@ +fileFormatVersion: 2 +guid: e53a6a46125489046aa60333dd75bf44 +TextureImporter: + internalIDToNameTable: + - first: + 213: 1833247098351559992 + second: Ladder_0 + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 0 + alignment: 1 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 16 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 100 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: Ladder_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 16 + height: 16 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 1, z: 0, w: 1} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 835a2c2e580017910800000000000000 + internalID: 1833247098351559992 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: aaaabb7e3ec73a04fa11edf4cf7def13 + internalID: -1749009402 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: + Ladder_0: 1833247098351559992 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_1_basic/Atlas_AutoLayers_1_basic.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_1_basic/Atlas_AutoLayers_1_basic.spriteatlas index 2d700d565..37046ff99 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_1_basic/Atlas_AutoLayers_1_basic.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_1_basic/Atlas_AutoLayers_1_basic.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_2_stamps/Atlas_AutoLayers_2_stamps.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_2_stamps/Atlas_AutoLayers_2_stamps.spriteatlas index b8ef11b18..cbbfbc3e1 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_2_stamps/Atlas_AutoLayers_2_stamps.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_2_stamps/Atlas_AutoLayers_2_stamps.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_2_stamps/Inca_front_by_Kronbits.ldtkt.meta b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_2_stamps/Inca_front_by_Kronbits.ldtkt.meta index 07b99843d..56f69be6b 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_2_stamps/Inca_front_by_Kronbits.ldtkt.meta +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_2_stamps/Inca_front_by_Kronbits.ldtkt.meta @@ -25,7 +25,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 05d8a0b4740cdb74d81e0dd3682d1eb0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_1 originalName: @@ -40,7 +45,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 260d600661c1670439d0952849ec77db - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_2 originalName: @@ -55,7 +65,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f0a955071146c794db3636b63451d808 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_3 originalName: @@ -70,7 +85,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c72c7e4af93cf1c4b89069d41295833d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_4 originalName: @@ -85,7 +105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 93a15f0bdfe3d904dac27e9808940c66 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_5 originalName: @@ -100,7 +125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 66e9fe5d35446d44bad5a9f0a6e4b627 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_6 originalName: @@ -115,7 +145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7126d5ff7cc4c1448bc2f45f1012c414 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_7 originalName: @@ -130,7 +165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5a7e9bc2e94236e4f97ccc1481c33da1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_8 originalName: @@ -145,7 +185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 43e19741df586e54186fc82b3dd72cb7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_9 originalName: @@ -160,7 +205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4597da13e6d79e8468e846f611541941 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_10 originalName: @@ -175,7 +225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 075bbb5c0d595be4d872ade969995192 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_11 originalName: @@ -190,7 +245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3101d54c879283b4a926fcf67af8243a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_12 originalName: @@ -205,7 +265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a0fede68c925fe148bd5643e693f3954 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_13 originalName: @@ -220,7 +285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cb079272c737b5b4893b4b91c289d56b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_14 originalName: @@ -235,7 +305,13 @@ ScriptedImporter: width: 16 height: 16 spriteID: f523c1ad98199bb40aa4161593d5dedd - spriteOutline: [] + spriteOutline: + - shape: + - {x: -3, y: 5} + - {x: -3, y: 8} + - {x: -8, y: 8} + - {x: -8, y: 3} + - {x: -5, y: 3} tessellationDetail: 0 - name: Inca_front_by_Kronbits_15 originalName: @@ -250,7 +326,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fcf5bc1c0695a3343ada1d46dbcccc40 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_16 originalName: @@ -265,7 +346,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 886833ad4cd1dd044a912ecfa502c124 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_17 originalName: @@ -280,7 +366,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9996efb72d8afae47b6d316e3f5bb944 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_18 originalName: @@ -295,7 +386,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7ddc3d5d04086eb4186ba3f5be42fa99 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_19 originalName: @@ -310,7 +406,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4efcab5384253c5408bceebab955eb6f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_20 originalName: @@ -325,7 +426,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 546d7c82c2243f245a09cad635d69bfa - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_21 originalName: @@ -340,7 +446,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4a858666fd53cfe40897e4edc7e3a925 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_22 originalName: @@ -355,7 +466,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9ba4a21af0c390e48bfa68f3dd3d9e79 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_23 originalName: @@ -370,7 +486,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 555c962e6a07bf547a94a2d3b4faf03b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_24 originalName: @@ -385,7 +506,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2fb1e29dc5131da4dae294f4a7b0ebee - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_25 originalName: @@ -400,7 +526,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 25a3c157a5ec26a40948d3c4a9fa9341 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_26 originalName: @@ -415,7 +546,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9230824c1b6d87446b49c100c8d7cbbd - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_27 originalName: @@ -430,7 +566,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9ce33f1a862883246a20b882e04e6170 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_28 originalName: @@ -445,7 +586,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 49f4bfaf14256d14b860e79f3fd87232 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_29 originalName: @@ -460,7 +606,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 47612971d20a8744ba7451a3986401de - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_30 originalName: @@ -475,7 +626,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0a70401a49ee725469a73a324b1a2f66 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_31 originalName: @@ -490,7 +646,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0143a72346083824f9f71950d2bc7633 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_32 originalName: @@ -505,7 +666,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2a684de683bf2b945834fe4a1f2f769b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_33 originalName: @@ -520,7 +686,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8386f587722e7be4e9f85e342bd2e140 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_34 originalName: @@ -535,7 +706,13 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4c8c9819f1e7bc840acbf3d33fe25815 - spriteOutline: [] + spriteOutline: + - shape: + - {x: -3, y: -5} + - {x: -5, y: -3} + - {x: -8, y: -3} + - {x: -8, y: -8} + - {x: -3, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_35 originalName: @@ -550,7 +727,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d300547f691d27a41866ea9cb32d17da - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_36 originalName: @@ -565,7 +747,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5da28413ea3103549ae978cb8dca10f4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_37 originalName: @@ -580,7 +767,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cfa8804524e7d76468cda6b2e7e986a4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_38 originalName: @@ -595,7 +787,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 74f436be70ff3fd498b0432fc03c5f45 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_39 originalName: @@ -610,7 +807,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 51f9e18a974d2c3479ce9e97abe56c17 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_40 originalName: @@ -625,7 +827,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 408810a8c57918746a80b98ee1b922ac - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_41 originalName: @@ -640,7 +847,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 75de6a0f3ad7baa44a82f89e34fcb06a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_42 originalName: @@ -655,7 +867,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3bfd2d4eca02e3b499e5055e44b1d06c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_43 originalName: @@ -670,7 +887,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 01944d21946b78f4198e699e8cc8d619 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_44 originalName: @@ -685,7 +907,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 01c3415f8118f1242a2119953744c826 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_45 originalName: @@ -700,7 +927,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b93d43d73b013a74b81bd83881098ea7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_46 originalName: @@ -715,7 +947,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 84b03e5b6d96d1f4783a9cdbe6446668 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_47 originalName: @@ -730,7 +967,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c2d40776da36d4a45bec8ccf4c31e13e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_48 originalName: @@ -745,7 +987,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7a1f1838cb1e4b34fa4193a87a5babf3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_49 originalName: @@ -760,7 +1007,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0a141e89355548b4ab267e6829297764 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_50 originalName: @@ -775,7 +1027,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e384b4b0b8c942040b4839a6b1b0c330 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_51 originalName: @@ -790,7 +1047,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5d13eae39cda33e41bd114b1ae137afe - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_52 originalName: @@ -805,7 +1067,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 32818e4240f75ac41ac83feb701da641 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_53 originalName: @@ -820,7 +1087,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4b0826a78c868034cbc8df2db2d50f28 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_54 originalName: @@ -835,7 +1107,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 128e4363d388d5d4a8d47a702ed97ea8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_55 originalName: @@ -850,7 +1127,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 475fe1027381e414facfd3809d11d6b8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_56 originalName: @@ -865,7 +1147,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1d4d1a5843b32d840853fa9bde920390 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_57 originalName: @@ -880,7 +1167,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d904e6e56b39e4a42a92a1b52d7e5195 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_58 originalName: @@ -895,7 +1187,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0e4829f8c9895ef4f91e24cb61154ac0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_59 originalName: @@ -910,7 +1207,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 64a4d26e0b2c2b942b42564d251b0278 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_60 originalName: @@ -925,7 +1227,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 23413ad85fea65a4989b2488b03a08f1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_61 originalName: @@ -940,7 +1247,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9d995ef3b10ba5040966006f10ca6475 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_62 originalName: @@ -955,7 +1267,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 06934ac0c75697b4cbda89db7c452016 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_63 originalName: @@ -970,7 +1287,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7c990492956c3d345ac7689dda95ac4c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_64 originalName: @@ -985,7 +1307,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: aea7632de03d9e0479d287bb31aed28a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_65 originalName: @@ -1000,7 +1327,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3bf178fe6d4b830438d3f6fb0bfc6a5c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_66 originalName: @@ -1015,7 +1347,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 971f5a590a2c6c64ca929c759a47f43d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_67 originalName: @@ -1030,7 +1367,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e154b3fb3432ff24781b5e85557552f1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_68 originalName: @@ -1045,7 +1387,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5b89257cb0f58ea4394bdea83264c407 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_69 originalName: @@ -1060,7 +1407,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 81113e008cb64c842a1b6b4faa47aa32 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_70 originalName: @@ -1075,7 +1427,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e49cc7c31b8adce40af6facc88b64568 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_71 originalName: @@ -1090,7 +1447,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c7293f70d63bba148b3d49ce11ddd51c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_72 originalName: @@ -1105,7 +1467,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 83cf554110a7a104f924639bcefa2a35 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_73 originalName: @@ -1120,7 +1487,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1213a47c6cd042748843447e83b0d52c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_74 originalName: @@ -1135,7 +1507,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f6a2d69247d63dd47abd08cf1a2314e9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_75 originalName: @@ -1150,7 +1527,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4fac349d20cd1864e924a749c270fbcc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_76 originalName: @@ -1165,7 +1547,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7da33feb05a9c0449ab611e0a8deaade - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_77 originalName: @@ -1180,7 +1567,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 384b5e8f36fbd874aa622f0b61fcb214 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_78 originalName: @@ -1195,7 +1587,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 60ab1976079785848ac326d106b292ca - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_79 originalName: @@ -1210,7 +1607,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1b7e2b82af5935b48a3b5af2a4709144 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_80 originalName: @@ -1225,7 +1627,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8a8a96c106140524e8bc39e20036967e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_81 originalName: @@ -1240,7 +1647,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7d70fb1de1814fc47b34f0cde9c7eb9c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_82 originalName: @@ -1255,7 +1667,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: af5dbad34787eb546bf916abb3267f45 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_83 originalName: @@ -1270,7 +1687,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6fdb14a196a49854abea662ac686321b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_84 originalName: @@ -1285,7 +1707,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e8c9f217b886a4f409ab64b3f0d20546 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_85 originalName: @@ -1300,7 +1727,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 23c24373ce756f7418684a9576a882fc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_86 originalName: @@ -1315,7 +1747,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: eb9627f38fb12ff4da771f79308f070a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_87 originalName: @@ -1330,7 +1767,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0a453cb23b591ed489b2093b41372e7c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_88 originalName: @@ -1345,7 +1787,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 41cbe3985464291428c5d6a3f7475796 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_89 originalName: @@ -1360,7 +1807,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4100e107264e3864bab2b6083cf20dad - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_90 originalName: @@ -1405,7 +1857,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: da293cfcaac2cd346aa4a54d21226724 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_93 originalName: @@ -1420,7 +1877,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 871fea1e6e0c86f4ba88c31d1f7dbb29 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_94 originalName: @@ -1435,7 +1897,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 745ab6476b2c5da4288e611870d6cf37 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_95 originalName: @@ -1450,7 +1917,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9eb154481b47a7047a04c36f781d8133 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_96 originalName: @@ -1465,7 +1937,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cdebe68b50b69b24c82ec7b9c2af3d4d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_97 originalName: @@ -1480,7 +1957,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6904e7e40771a2c45b0b4b873bb680d8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_98 originalName: @@ -1495,7 +1977,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 44bd931ab2327d044a97fac593e1de44 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_99 originalName: @@ -1510,7 +1997,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1a19554c2ffc08145903869dcfd3e192 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_100 originalName: @@ -1525,7 +2017,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: acc1a3f7f0e5aab4488ec79e0476f29b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_101 originalName: @@ -1540,7 +2037,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e3cdb9b9cf670294393a1868b8113fcb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_102 originalName: @@ -1555,7 +2057,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 90da95fc1b6c1604680d4f4491e4f781 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_103 originalName: @@ -1570,7 +2077,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 26eb7a805fdbea84c8dd196655a64ee7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_104 originalName: @@ -1585,7 +2097,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c383e55f5559b174c82263cd10aa43bc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_105 originalName: @@ -1600,7 +2117,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cd3a074ca1943c64bbb0677a21abe0b4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_106 originalName: @@ -1615,7 +2137,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 32831d5b3bebd9c48905ca291222b240 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_107 originalName: @@ -1630,7 +2157,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3bb8b08d147ba0349bc721c7da731d1f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_108 originalName: @@ -1645,7 +2177,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 54f5108afcf942242ac236e1998be37c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_109 originalName: @@ -1660,7 +2197,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bbc89f69835e36e4b983886d41da7577 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_110 originalName: @@ -1675,7 +2217,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 70d821dc79e8fc74481e3c380b611289 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_111 originalName: @@ -1690,7 +2237,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ffa6718799f6bb140a3641a82186ba71 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_112 originalName: @@ -1705,7 +2257,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 35faec727f893f242aeb586807ac8c70 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_113 originalName: @@ -1720,7 +2277,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 46aff2728c594ef46892bbd70b93a389 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_114 originalName: @@ -1735,7 +2297,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 393fc477763804246a7d12570ebbc2ca - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_115 originalName: @@ -1750,7 +2317,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9f14d49514db35b45b18428a9b6af1c4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_116 originalName: @@ -1765,7 +2337,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ee198f90a4760484b950cba118a7c7a0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_117 originalName: @@ -1780,7 +2357,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8819194e69e7eba4da4a9d024cc67ebb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_118 originalName: @@ -1795,7 +2377,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 80d00cadb3f11f941ba1f4c49ae91c0a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_119 originalName: @@ -1810,7 +2397,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b1f11178b4de2f34ab44c5988e44192c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_120 originalName: @@ -1825,7 +2417,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3bb92ff11be49d04aab292805e5e1cba - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_121 originalName: @@ -1840,7 +2437,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3849dccc931735445aecff83b483c545 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_122 originalName: @@ -1855,7 +2457,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6c3989e588633274daee41ddc0039ce2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_123 originalName: @@ -1870,7 +2477,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a9a46b577d051c04dac518fe50c5bcda - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_124 originalName: @@ -1885,7 +2497,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 71f9fca51599cd547908aee25a592e41 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_125 originalName: @@ -1900,7 +2517,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c5293615e02df184f8c1490d6f17fe7c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_126 originalName: @@ -1915,7 +2537,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 485af0f5ed5afa741bb1cafa9689e535 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_127 originalName: @@ -1930,7 +2557,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7ec110eddbcb0e54aa74b7953cd349a0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_128 originalName: @@ -1945,7 +2577,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3c8f0610a2366094595ac1f9c9ce4eca - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_129 originalName: @@ -1960,7 +2597,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c9d9c014cfb72bb4884cf411c5776a53 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_130 originalName: @@ -1975,7 +2617,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ec5e6b504c491724180cb44d3bd58a71 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_131 originalName: @@ -1990,7 +2637,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3b4dc989a44aca14883a3519dea2d396 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_132 originalName: @@ -2005,7 +2657,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cdb593d229f0a084caa6ef688317b2e9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_133 originalName: @@ -2020,7 +2677,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8ebcdcb358411a14c9dbd9313d15d801 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_134 originalName: @@ -2035,7 +2697,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c4021348a9cd5de47aa8b41730281af3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_135 originalName: @@ -2050,7 +2717,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b8d8de8ad22612f40ab4f6e50578541c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_136 originalName: @@ -2065,7 +2737,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f0f77331fe603e04bba491f8fe5ddb6c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_137 originalName: @@ -2080,7 +2757,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 27ed630b69d166b468395d09d4e8ce35 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_138 originalName: @@ -2095,7 +2777,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b3f7268bbf5d9e84c9eada7aab60c2ed - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_139 originalName: @@ -2110,7 +2797,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2decc2eac0a7c1a47ab420baa85da872 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_140 originalName: @@ -2125,7 +2817,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 41e34cbc51dbefc4cbd7141b15353b36 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_141 originalName: @@ -2140,7 +2837,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ba6815250811483438ca9e6bc6c42ba0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_142 originalName: @@ -2155,7 +2857,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 70ddb125225e2ee4f88be9d644e9dcb2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_143 originalName: @@ -2170,7 +2877,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f7967a36b78b28343a3e08ae0ff1229c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_144 originalName: @@ -2185,7 +2897,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 03e9ef005d5eb624685555e49548d4b2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_145 originalName: @@ -2200,7 +2917,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 79bd7ed4648365044907e62f690554d9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_146 originalName: @@ -2215,7 +2937,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b40731600ae1bce439caf549fa189338 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_147 originalName: @@ -2230,7 +2957,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 633b9f7adb520614abc1c72770cc4a64 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_148 originalName: @@ -2245,7 +2977,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 02de949a30d37ac48af7c354e9694b57 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_149 originalName: @@ -2260,7 +2997,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b0bc3a4d8f1d5d04e8987d51aa19e719 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_150 originalName: @@ -2275,7 +3017,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 75f7604ef9c6cd0449f9e7123210b027 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_151 originalName: @@ -2290,7 +3037,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b33a2860bc968864895f90e0cb0c5b0b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_152 originalName: @@ -2305,7 +3057,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 19663826833a91f4398035745dcc0258 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_153 originalName: @@ -2320,7 +3077,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fb705fdf079a35b42b0b4a07dc19c00e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_154 originalName: @@ -2335,7 +3097,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c67e37bf4198190449a70d442159c7ff - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_155 originalName: @@ -2350,7 +3117,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3c34f4b0c65490b4a8021f1677524d8f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_156 originalName: @@ -2365,7 +3137,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 72203890fb2c07744ad143adc1ffef4e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_157 originalName: @@ -2380,7 +3157,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cb0b097555ec4fb48a458d20728e57b3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_158 originalName: @@ -2395,7 +3177,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 802bc9b3963880749842ffbc3b858901 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_159 originalName: @@ -2410,7 +3197,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 01be046e58ea8b74e8047a4de808d6a7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_160 originalName: @@ -2425,7 +3217,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 24db9d6fada941d4c90ddd1ca33ec92e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_161 originalName: @@ -2440,7 +3237,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a6b3e810064912a469cee3610f744fe8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_162 originalName: @@ -2455,7 +3257,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: caf3d980b734fef4cb7e634ce61912f0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_163 originalName: @@ -2470,7 +3277,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 231aaa2f9ead69e4eb9e2239fd433723 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_164 originalName: @@ -2485,7 +3297,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a96d97d3a1b56e745b66a2fc5930d3b7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_165 originalName: @@ -2500,7 +3317,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b26e4e2eeb955554198d4ed4cd211ec9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_166 originalName: @@ -2515,7 +3337,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 93bccb4e5183b5a40867e2ee538f4780 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_167 originalName: @@ -2530,7 +3357,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 490e751fa1ec7514681a784e66cf4d08 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_168 originalName: @@ -2545,7 +3377,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 88a5f405e3c97394798c6a3f8baaad17 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_169 originalName: @@ -2560,7 +3397,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 80618065776a3af4b99983590d8ef4ba - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_170 originalName: @@ -2575,7 +3417,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2237339a35131e74eadcd1443c7104af - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_171 originalName: @@ -2590,7 +3437,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8097b36ed47d149458aaed38f4919f06 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_172 originalName: @@ -2605,7 +3457,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a8e52c959ed352e4aafbf923ed5138cf - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_173 originalName: @@ -2620,7 +3477,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2c34873d23f28f544bab4014f01b643c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_174 originalName: @@ -2635,7 +3497,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 736e5a0deb44ccf43a251f501aaa2435 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_175 originalName: @@ -2650,7 +3517,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 74ff65289433f9f47bd52c6280df7e7d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_176 originalName: @@ -2665,7 +3537,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ad6f0ea2c0d56fd41b9d3440585b159e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_177 originalName: @@ -2680,7 +3557,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 266854ecfe4a14743854e6266683a5fa - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_178 originalName: @@ -2695,7 +3577,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 31d44c69f83ef0c4b88834ec0dd49d7d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_179 originalName: @@ -2710,7 +3597,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a74cf3b7a9e94e54fb83f26f45726072 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_180 originalName: @@ -2725,7 +3617,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c3ea05176674b664ea04bf722f793cb1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_181 originalName: @@ -2740,7 +3637,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b70f7edeee7da1e49a9cc701f20b4ac3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_182 originalName: @@ -2755,7 +3657,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 80b664564c846f84ea65902a1e8e9b2c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_183 originalName: @@ -2770,7 +3677,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e1ebbca88ba8b824a911e1efbbc1cf1d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_184 originalName: @@ -2785,7 +3697,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 345a9a38e09e24245aea69482f970ae2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_185 originalName: @@ -2800,7 +3717,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d794874279a414748ab6a81ef20cd3de - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_186 originalName: @@ -2815,7 +3737,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b7975ebf54a909848858c1625c85c724 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_187 originalName: @@ -2830,7 +3757,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 894121e0a1d6d8a4584890f364fb6f18 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_188 originalName: @@ -2845,7 +3777,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c9d8fcfc1a392e64cacbb15318be37ce - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_189 originalName: @@ -2860,7 +3797,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4fa051fcf9afd1d4b9597add1584806d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_190 originalName: @@ -2875,7 +3817,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2ca5a24fdbfe25343b0175a0dd25fb07 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_191 originalName: @@ -2890,7 +3837,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 37bc38e24ce956e40a4d8ed5dde3d809 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_192 originalName: @@ -2905,7 +3857,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 240385a17ce23924ba73e9013ada03e0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_193 originalName: @@ -2920,7 +3877,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3ba6a300f48410a4ea3fb5b25bb4879b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_194 originalName: @@ -2935,7 +3897,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b41815b2ec67a124cb8ac25fcb335b8f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_195 originalName: @@ -2950,7 +3917,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e1607f44c6f805944969922c016bf9c1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_196 originalName: @@ -2965,7 +3937,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 22be2499e26c27a4997ccc3da8adfe49 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_197 originalName: @@ -2980,7 +3957,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 44b22203a6bdda14993aa2d1565e189f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_198 originalName: @@ -2995,7 +3977,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6b8bf2e10f607804ea4629c182b24280 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_199 originalName: @@ -3010,7 +3997,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: baa9fe052cab4d446ae9f1495e2d57e3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_200 originalName: @@ -3025,7 +4017,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b1790c46549bd864192d8436a68aa5e4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_201 originalName: @@ -3040,7 +4037,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 44a9228d1fa38664fbe73e00ea9878cb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_202 originalName: @@ -3055,7 +4057,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8e11cdf930388564e81a309f303f0324 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_203 originalName: @@ -3070,7 +4077,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2a6a8e23555b4534585feae987b8e731 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_204 originalName: @@ -3085,7 +4097,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8d1919fcef8792a40a0efd49cc076ec0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_205 originalName: @@ -3100,7 +4117,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cefa54e68d3341247a2ea13392918496 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_206 originalName: @@ -3115,7 +4137,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ca36e1ac26bb7434885047f3719b601f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_207 originalName: @@ -3130,7 +4157,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: eb75ab260b7b55e4894e7273cca130f0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_208 originalName: @@ -3145,7 +4177,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5bd4b1e8e6557a04790c5735522680e1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_209 originalName: @@ -3160,7 +4197,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9ca1ba915f5e12744b109cf0b22cc299 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_210 originalName: @@ -3175,7 +4217,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 559e46a0fc4455c47be1ff4ecf583b67 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_211 originalName: @@ -3190,7 +4237,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 761c3ef4859677b44ab0dda546e6cbc9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_212 originalName: @@ -3205,7 +4257,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a35cd0c63b1056d4bacd0d2921f75cef - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_213 originalName: @@ -3220,7 +4277,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c5e793f4992f0af4896ecb251c1a2dd9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_214 originalName: @@ -3235,7 +4297,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 00b0d9d63b8bafe40ac04d9e6e6f8273 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_215 originalName: @@ -3250,7 +4317,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: dc913b8a0efd8324181074a5158330d9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_216 originalName: @@ -3265,7 +4337,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 38634fe430a81ba4eb6421645d1808f8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_217 originalName: @@ -3280,7 +4357,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a4bbacda845e76542be0f0d997337beb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_218 originalName: @@ -3295,7 +4377,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 68b414c3c9fe6854486224db07205eec - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_219 originalName: @@ -3310,7 +4397,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 13927dcf56b5ce84897baea643be98d0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_220 originalName: @@ -3325,7 +4417,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0f7dc14adca55b744af67ade8c0b42f5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_221 originalName: @@ -3340,7 +4437,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: de0aef6a03db7734e8b57b5e0c5a9688 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_222 originalName: @@ -3355,7 +4457,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e74f35ce8cdb7e04699446decf23b55f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_223 originalName: @@ -3370,7 +4477,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9a34c3ef60422c941a7b1d9a34d8b92f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_224 originalName: @@ -3385,7 +4497,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b2b0ee88a39121d469f17f3f0af71559 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_225 originalName: @@ -3400,7 +4517,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: aafbf893e386efd49bfdfe2f65b5dae7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_226 originalName: @@ -3415,7 +4537,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: dcbfd1e9fed5e7342818980cde60ef6f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_227 originalName: @@ -3430,7 +4557,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1a9c6ec305c4ae1468fe57ce181d7f29 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_228 originalName: @@ -3445,7 +4577,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4462ed53600777d4bb311eca1e1036ec - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_229 originalName: @@ -3460,7 +4597,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 81cd36b7d28c8a243a0b2474088c4b9f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_230 originalName: @@ -3475,7 +4617,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 47b02d2756b1ecf478c502f97a8d95df - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_231 originalName: @@ -3490,7 +4637,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a80eda384e94fd64fb7989d9082e4386 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_232 originalName: @@ -3505,7 +4657,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: da9ea55b1f44d4d4bb465bfc7e1ce7ce - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_233 originalName: @@ -3520,7 +4677,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 04ab5f39272828247b90739dce8534d5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_234 originalName: @@ -3535,7 +4697,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2539b477ee9c4bb4398abee8e309112c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_235 originalName: @@ -3550,7 +4717,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2b640db6454d3a84d8fa768e549e5f69 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_236 originalName: @@ -3565,7 +4737,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e6e842b484e9ac140909cc60a54f96c7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_237 originalName: @@ -3580,7 +4757,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8b1484937d4c35c48b3c0265cfa89d07 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_238 originalName: @@ -3595,7 +4777,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7388a98f53c1e784c88bbefc522087fb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_239 originalName: @@ -3610,7 +4797,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bf6c5db82b05b8e49a5ef1291ec52804 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_240 originalName: @@ -3625,7 +4817,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b617982b0aaa95748a16731ebbcf5a8b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_241 originalName: @@ -3640,7 +4837,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4d9426b3092434443a54b1b2ea66e4b5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_242 originalName: @@ -3655,7 +4857,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 98a2291fc62f3ec409eed775dc64d9da - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_243 originalName: @@ -3670,7 +4877,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: be61afefc4af818468a7e16bbee93b7f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_244 originalName: @@ -3685,7 +4897,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8d116a8ef79ff8b449c62284eb1c2d21 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_245 originalName: @@ -3700,7 +4917,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2b03ceed69198ee41bdc7712091bba32 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_246 originalName: @@ -3715,7 +4937,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fb1c4abee2eca1248853ea389c43ae17 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_247 originalName: @@ -3730,7 +4957,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9caa201c3ccbe784c8a20282303cb893 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_248 originalName: @@ -3745,7 +4977,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1067b5907dbf15d489bc292c49a78bd9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_249 originalName: @@ -3760,7 +4997,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3ece51093a58c7e489b8433cc422950e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_250 originalName: @@ -3775,7 +5017,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 67fc35c05ba9bf0409fe886ebbfebcc6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_251 originalName: @@ -3790,7 +5037,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 27c4e1eebeead604d9f76f1f1035a9b3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_252 originalName: @@ -3805,7 +5057,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: dfd5625fa59d0d341aeabf2a11cd31d8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_253 originalName: @@ -3820,7 +5077,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4ed6cf9f85721cd4f8d7ab06fbdfaf2c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_254 originalName: @@ -3835,7 +5097,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ace1504be0fbd754ebab1253d668ef2d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_255 originalName: @@ -3850,7 +5117,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6c659b58b0e487048bf85e545cb837b4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_256 originalName: @@ -3865,7 +5137,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 721045a3442a57c468302233679def89 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_257 originalName: @@ -3880,7 +5157,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7817bb1c9c3cc054caa7da071f0feccd - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_258 originalName: @@ -3895,7 +5177,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7ea1ec9c69a0ce54bb8f7ee991c192d9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_259 originalName: @@ -3910,7 +5197,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e97fa51b81dce254f99a5c18a2729a6d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_260 originalName: @@ -3925,7 +5217,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ec83ca4d94e1ad54c8e7402e5892d56a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_261 originalName: @@ -3940,7 +5237,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fb336aed56dcd844e92b0ee853134718 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_262 originalName: @@ -3955,7 +5257,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 18c65b5edbbccdf4c889ece8304cac29 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_263 originalName: @@ -3970,7 +5277,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 562d97a97f597fc4a91cfd83cab32c30 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_264 originalName: @@ -3985,7 +5297,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7eaadcf8471b23646857dd924a23130f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_265 originalName: @@ -4000,7 +5317,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b4f299a9d30911141bda63311abe86a5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_266 originalName: @@ -4015,7 +5337,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8889ce33a38576c4eb1a4b769ae4f92d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_267 originalName: @@ -4030,7 +5357,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a3aad166155db1840a34743962e2807e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_268 originalName: @@ -4045,7 +5377,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: dd6809ea933293d4e9bd7fcd32b24cbf - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_269 originalName: @@ -4060,7 +5397,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8fbe30ade533c684fa222f4ba028d574 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_270 originalName: @@ -4075,7 +5417,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8a8fa36734ca2c24f893359f2b09d9fe - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_271 originalName: @@ -4090,7 +5437,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7c156c6ac7c31224ca4ccac5c3184fa0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_272 originalName: @@ -4105,7 +5457,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7f3c9a66fff19fa46acfed4e29164af1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_273 originalName: @@ -4120,7 +5477,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cabd5a578bf6a8c43ab0b8bcc864d95a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_274 originalName: @@ -4135,7 +5497,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ef4d0b3cfaeccf347b41902883a1c8ea - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_275 originalName: @@ -4150,7 +5517,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d426b037eb7e92440938bdc12a96a966 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_276 originalName: @@ -4165,7 +5537,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a31a56e225f07b544805c8495aead2d0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_277 originalName: @@ -4180,7 +5557,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9e3751dc646669f4eb62f229de546ba8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_278 originalName: @@ -4195,7 +5577,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2c79700a10162d14ca9e15dc0a0ab991 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_front_by_Kronbits_279 originalName: @@ -4210,7 +5597,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8388a1b26ea30064daaa1f45477d99bd - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 _secondaryTextures: [] _artifacts: {fileID: -2988177865379244337, guid: 566acb5424d924248aac272ce07221c7, type: 3} diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_3_Mosaic/Atlas_AutoLayers_3_Mosaic.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_3_Mosaic/Atlas_AutoLayers_3_Mosaic.spriteatlas index 1bb89f6ca..ac3387502 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_3_Mosaic/Atlas_AutoLayers_3_Mosaic.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_3_Mosaic/Atlas_AutoLayers_3_Mosaic.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_3_Mosaic/Inca_extended_front_by_Kronbits.ldtkt.meta b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_3_Mosaic/Inca_extended_front_by_Kronbits.ldtkt.meta index 6c91cef91..fa20febe2 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_3_Mosaic/Inca_extended_front_by_Kronbits.ldtkt.meta +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_3_Mosaic/Inca_extended_front_by_Kronbits.ldtkt.meta @@ -25,7 +25,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 93ab2685d7e9f624684b26664b5b77da - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_1 originalName: @@ -40,7 +45,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fc597a1197ed46845800c892f0d2d740 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_2 originalName: @@ -55,7 +65,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c8cb1f8116569dd4290b0848608d4280 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_3 originalName: @@ -70,7 +85,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9781725e38ba0474a89a4b5fcbac02f6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_4 originalName: @@ -85,7 +105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 22e66585b6b366343a8c42af87e3b04c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_5 originalName: @@ -100,7 +125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ebbcb9c525756cc45b734c7f1e0b2191 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_6 originalName: @@ -115,7 +145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ace793857ee050d428fecf9dc3398657 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_7 originalName: @@ -130,7 +165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ca052ee6087e8ff449d9c2374ae39369 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_8 originalName: @@ -145,7 +185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 25aae0f1e5e857542b0205b39b0665f4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_9 originalName: @@ -160,7 +205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 87441044cf119a345a297291f8176417 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_10 originalName: @@ -175,7 +225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a243eeca7d31e7a40af0da765ebde0bf - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_11 originalName: @@ -190,7 +245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2abb67e0105fc0640af330b7848d8f8f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_12 originalName: @@ -205,7 +265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 234ab175bfb04e94dadde7f5035846cb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_13 originalName: @@ -220,7 +285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 353b19c09cd959a43b9a70da9107db4b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_14 originalName: @@ -235,7 +305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 22584a503eb417546afaebeaeea5d57d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_15 originalName: @@ -250,7 +325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5de0382d6d8f6e54c89ced1485fc30b9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_16 originalName: @@ -265,7 +345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 45a6062907f96f74a9cf899431607d22 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_17 originalName: @@ -280,7 +365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bd302d511d7c24b429d2ebeea7c38afc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_18 originalName: @@ -295,7 +385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ff1e6c49dbac1064c97f4f0676fc2c0d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_19 originalName: @@ -310,7 +405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a65fd3b7d3ead0b468306e850bdcf3a8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_20 originalName: @@ -325,7 +425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 78280436f082fca4fb34d4a0041c0469 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_21 originalName: @@ -340,7 +445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 539d2de9f0939a54095b73c1d00d55a9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_22 originalName: @@ -355,7 +465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1524eac4cd07cd74fb4bb344e0304ae8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_23 originalName: @@ -370,7 +485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 943a83d4e3a653c4c813574a2b5be569 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_24 originalName: @@ -385,7 +505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9db841f6d46db3b4990614c932c4105a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_25 originalName: @@ -400,7 +525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8b4abb4a73fb74c49b22a8a1ae00b10b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_26 originalName: @@ -415,7 +545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: adebeba10578f274f97cca2fcd16e421 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_27 originalName: @@ -430,7 +565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a89522f10f53b164d9b305b172823673 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_28 originalName: @@ -445,7 +585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 85acf8c59e95cc642aaa076995ccd843 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_29 originalName: @@ -460,7 +605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f1a5d432f89793e499fe44b3e69106fd - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_30 originalName: @@ -475,7 +625,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 03da34df71dc71c448a51567e3f0862a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_31 originalName: @@ -490,7 +645,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 24807e1f466a4524ea2958223b7b1090 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_32 originalName: @@ -505,7 +665,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b49ec424f69661c4c872df03f4a1d6e9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_33 originalName: @@ -520,7 +685,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 903f484a9c4f82948a0671684166aa3c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_34 originalName: @@ -535,7 +705,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cb4e172ee863c4c49a97829bb06461af - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_35 originalName: @@ -550,7 +725,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d928cfe1a69259e4fbd31a844dbaae55 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_36 originalName: @@ -565,7 +745,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c6622db7d712d6c48962def809e90325 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_37 originalName: @@ -580,7 +765,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5d8b8ac6abdc10d44a503250922d6652 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_38 originalName: @@ -595,7 +785,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 53632c7cfa89c8842801b07c31368a3b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_39 originalName: @@ -610,7 +805,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f0748e6af316a3b41ae8522b9eb710ca - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_40 originalName: @@ -625,7 +825,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ea7c749de04568645b16806abea2bbd9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_41 originalName: @@ -640,7 +845,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 68a78eb61540469499fa1181a7fb7ed5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_42 originalName: @@ -655,7 +865,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5b9821af25ac96243b19f8ed06fcbfe3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_43 originalName: @@ -670,7 +885,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c40013a693139c74aaa5b30878c31a46 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_44 originalName: @@ -685,7 +905,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fdda90ac8e6d8044aa5b8e30560fa921 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_45 originalName: @@ -700,7 +925,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cd70f17800106204bb3af4077183a96a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_46 originalName: @@ -715,7 +945,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 95705dd8f23e9b84387a4eaf54436bbc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_47 originalName: @@ -730,7 +965,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 228893088d28b5c4a97d9cd4feacf7f8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_48 originalName: @@ -745,7 +985,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e03cf4c701b116044853345c16b9559f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_49 originalName: @@ -760,7 +1005,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4b786aef563c7ef469855dbc78d0dfbb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_50 originalName: @@ -775,7 +1025,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 735eb02df3636194b9e3d56245e60d25 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_51 originalName: @@ -790,7 +1045,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8ba6971e23205eb4c8cbecda89e4c449 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_52 originalName: @@ -805,7 +1065,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1f010f0895da71144804d1dfbe92f1d9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_53 originalName: @@ -820,7 +1085,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4b6c9e4b2dda768478d1be33ef8ec169 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_54 originalName: @@ -835,7 +1105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 431636071825d754d9265e78fbb38c13 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_55 originalName: @@ -850,7 +1125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 188ca52d12f401946b27b16595544356 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_56 originalName: @@ -865,7 +1145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5f91ca46f750d1349bdf214a712307ae - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_57 originalName: @@ -880,7 +1165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6bc5daf43ae4222429cda44d89d23983 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_58 originalName: @@ -895,7 +1185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2131de0fe8233e64aa123bd633a90b51 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_59 originalName: @@ -910,7 +1205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9acd2f7eda0245d4699553e347d954ef - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_60 originalName: @@ -925,7 +1225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3c70f92d5a2454b468fc27858ef70f8f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_61 originalName: @@ -940,7 +1245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 015d417e5d47ddc4cad439091d901da6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_62 originalName: @@ -955,7 +1265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ad27b436e77003f479784a73899826a4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_63 originalName: @@ -970,7 +1285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: af340d4eaf80c2c4998cdb6eedcb70bb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_64 originalName: @@ -985,7 +1305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f278be2da78fc354992181019965d263 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_65 originalName: @@ -1000,7 +1325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f989c47c4a75ed54f96cdffda02f37c9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_66 originalName: @@ -1015,7 +1345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 61efb6c85487e824d966b50a3a73bee9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_67 originalName: @@ -1030,7 +1365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 063f761b3801f404baa7ae61de808a7c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_68 originalName: @@ -1045,7 +1385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0926a5db2c5baf246b9157c647010ad4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_69 originalName: @@ -1060,7 +1405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 65ce8a18cbff1eb4eb02c305b94a2548 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_70 originalName: @@ -1075,7 +1425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5933a3c2bf792864da5d784e6bc2e39d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_71 originalName: @@ -1090,7 +1445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cfa636a683dbf6b409af669ced52fac2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_72 originalName: @@ -1105,7 +1465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: eb8be3dab228fb546a8e7a372966c971 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_73 originalName: @@ -1120,7 +1485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b3c8ed1a51f6dff41b428d0e30a2fb72 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_74 originalName: @@ -1135,7 +1505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 20ce5d46e96880b4ca5e368717cedec4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_75 originalName: @@ -1150,7 +1525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ccafa979f32669e47895a531e579d75a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_76 originalName: @@ -1165,7 +1545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 75dfac9e8b0905b49a97efe00651c51f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_77 originalName: @@ -1180,7 +1565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e47dc40a3f964ef489e128485249f3c1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_78 originalName: @@ -1195,7 +1585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 24980dc00973cb043a4cf2cfb8e165d7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_79 originalName: @@ -1210,7 +1605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 92c8c456a82674c47926ac952f2d56bf - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_80 originalName: @@ -1225,7 +1625,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8f1a15e2438ba1f4f92515dff76181ca - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_81 originalName: @@ -1240,7 +1645,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 61fbbcb2eec03874e8fcb8e78a35dd07 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_82 originalName: @@ -1255,7 +1665,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 100c86ed264942c4a8691484c15b3c09 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_83 originalName: @@ -1270,7 +1685,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 51f879fa77de5e842ad066828021a34a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_84 originalName: @@ -1285,7 +1705,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9c543918135df964cb6f1797c3007076 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_85 originalName: @@ -1300,7 +1725,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 901f51a55b2db0e45b31b43053e3dc59 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_86 originalName: @@ -1315,7 +1745,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d96d8a5e386b5ee4bb9b0b1c0452a72f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_87 originalName: @@ -1330,7 +1765,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bab8de67287fea44485875ce1169fe17 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_88 originalName: @@ -1345,7 +1785,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d88843426e39a4b44801a78e2090eaa5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_89 originalName: @@ -1360,7 +1805,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4cba8a119a21664429657044a7bdc7e9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_90 originalName: @@ -1375,7 +1825,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f22e7bc0d3e9e4745a49dc57b78f0620 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_91 originalName: @@ -1390,7 +1845,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 71b18d3e6ccfaee448a6953c7a46cf76 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_92 originalName: @@ -1405,7 +1865,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bb9f642514edbc041be50fdc68b2a40a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_93 originalName: @@ -1420,7 +1885,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 25a09936dc6e64a4191850d069cf6fb6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_94 originalName: @@ -1435,7 +1905,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fbd4d48036ed8944fa29b0f3c304f4fe - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_95 originalName: @@ -1450,7 +1925,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b442b85270e2f7147809ec55d0de6170 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_96 originalName: @@ -1465,7 +1945,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 13f7df1891372a0418fb62472149eef0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_97 originalName: @@ -1480,7 +1965,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 08a5939764130d8458575e5c331ac9bf - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_98 originalName: @@ -1495,7 +1985,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1246db8a34da29945941ef2c5d888a2c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_99 originalName: @@ -1510,7 +2005,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ce0124d1543257f47bebffbaf01e9f21 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_100 originalName: @@ -1525,7 +2025,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 198caeb9c422c834c822275d12d50afa - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_101 originalName: @@ -1540,7 +2045,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 134a5be38659b4844af67a49afd6798e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_102 originalName: @@ -1555,7 +2065,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6d7469d15bfad5c49b6f0330ef788b6b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_103 originalName: @@ -1570,7 +2085,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5dd7c2a2595b16e49a5e3925b378bf35 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_104 originalName: @@ -1585,7 +2105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f8fbe95fd5c629b46b933156050f26d0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_105 originalName: @@ -1600,7 +2125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cdf983db6c1c441498f40068ef420ac5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_106 originalName: @@ -1615,7 +2145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 31c666cbb4804834b842fa90ea51fabd - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_107 originalName: @@ -1630,7 +2165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 572168538ad677741984bcafacc58644 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_108 originalName: @@ -1645,7 +2185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4dfa6721680cd984a94d6776b1331f35 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_109 originalName: @@ -1660,7 +2205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9e51898f9a3c1b143b6b74607a690bd8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_110 originalName: @@ -1675,7 +2225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6694622d9cbf73d468b8c27a895b7fae - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_111 originalName: @@ -1690,7 +2245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 95a534cb074352a4e8380bbe131f0208 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_112 originalName: @@ -1705,7 +2265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: eac8a95afd80161438e8dad1e9e53b85 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_113 originalName: @@ -1720,7 +2285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c110ede5a32d5a84897080d802082600 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_114 originalName: @@ -1735,7 +2305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 66a1e5dedaa220b4a9648a976f0227c3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_115 originalName: @@ -1750,7 +2325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7691d6506eee5e649adb9538ce2978c0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_116 originalName: @@ -1765,7 +2345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cd55c67e8a7c74c45b0cbfe091db2fc4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_117 originalName: @@ -1780,7 +2365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7badf2264aade3245993fec1dc57bc1e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_118 originalName: @@ -1795,7 +2385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 22c87e2099610374d8c0a1e3106ce5f2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_119 originalName: @@ -1810,7 +2405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7445f381225101642bd79398e7a248e5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_120 originalName: @@ -1825,7 +2425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 65d83617db8795542ae1a4e35d70711b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_121 originalName: @@ -1840,7 +2445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6f3aeee95b526ea45a52263f50413a36 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_122 originalName: @@ -1855,7 +2465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d21533603bddf574d96409368a46d0de - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_123 originalName: @@ -1870,7 +2485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 487299c2a396bdd4094d904f68419b1b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_124 originalName: @@ -1885,7 +2505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 19f3f4df026fe4c4190e34dcbae282ec - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_125 originalName: @@ -1900,7 +2525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1d51909cb33a3b94194c07edcf2e1266 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_126 originalName: @@ -1915,7 +2545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 98b8e244697d5bb43ae52ae279e6aca0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_127 originalName: @@ -1930,7 +2565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4cf148a8dd1bfba4a8b24ff8d9254f4e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_128 originalName: @@ -1945,7 +2585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2d69678c9a4f26942bea69fc916d2214 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_129 originalName: @@ -1960,7 +2605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1a7baaf6f41f62249bb295139f71e41a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_130 originalName: @@ -1975,7 +2625,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fcd7d64ee7956e74890fe8d9f3719005 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_131 originalName: @@ -1990,7 +2645,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3188f994d1ca73d438ba5c1a571baf21 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_132 originalName: @@ -2005,7 +2665,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c1a8fc4fec80cbf4495c5908fe1e55d2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_133 originalName: @@ -2020,7 +2685,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2a67600e073d7ef4dafde445281a8c75 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_134 originalName: @@ -2035,7 +2705,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8de1ec395ed7d944b86985b5f5d73d3e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_135 originalName: @@ -2050,7 +2725,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ef99ec294052d42499c1076ddb274691 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_136 originalName: @@ -2065,7 +2745,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cdf2816b9e91c5c4895e6a66c6bd2848 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_137 originalName: @@ -2080,7 +2765,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b3f49b4116888464fb93fcc9ae9a9b08 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_138 originalName: @@ -2095,7 +2785,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7fdc1cc353df6d140afc798e0a1e5fb6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_139 originalName: @@ -2110,7 +2805,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e33bb2221b617de48aa22d462b8af880 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_140 originalName: @@ -2125,7 +2825,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e2081a7a28f760e46821221a7a1db700 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_141 originalName: @@ -2140,7 +2845,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 04c6dd8c5cd495f46b34bdad2f978350 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_142 originalName: @@ -2155,7 +2865,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e3afa17dbd8912048849f3029ef25a22 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_143 originalName: @@ -2170,7 +2885,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cafe6513f8694d4458ccb63bf87d897a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_144 originalName: @@ -2185,7 +2905,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4e5a8bcdfa2ce9e479d8cfa6e170780b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_145 originalName: @@ -2200,7 +2925,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2039243578a5d4b45b49f3978871bb79 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_146 originalName: @@ -2215,7 +2945,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e7f6aa5c9fe34f74fa1b5d7a85de7fa4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_147 originalName: @@ -2230,7 +2965,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a8e2ebb5767107344afad87891577adc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_148 originalName: @@ -2245,7 +2985,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d28fbbe02f77cdd44ab1e85b9d32bd12 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_149 originalName: @@ -2260,7 +3005,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 92494cc528062e14a826ee5656f3a9c1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_150 originalName: @@ -2275,7 +3025,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6250bc722b7c2bf4cb6c3a5716e8ee4d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_151 originalName: @@ -2290,7 +3045,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: edc984b614735614fae33845940a47ae - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_152 originalName: @@ -2305,7 +3065,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ffe3cfca1d7751d46957c9556642f27e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_153 originalName: @@ -2320,7 +3085,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e34f2f48b216df843972bbfed702b95d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_154 originalName: @@ -2335,7 +3105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 220a1ce70b0c85048b34847e2a5f4301 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_155 originalName: @@ -2350,7 +3125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: dd0a6d1798678464fa4a94617270e150 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_156 originalName: @@ -2365,7 +3145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 732d210b417ec5342a81d1364302e4e1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_157 originalName: @@ -2380,7 +3165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 178eda1cf44e76a4fb1027a6d6288454 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_158 originalName: @@ -2395,7 +3185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d7f0321d94f9272498bbc13e58b5ecb1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_159 originalName: @@ -2410,7 +3205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 36fb6410d174ec642ad779c55283f4ee - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_160 originalName: @@ -2425,7 +3225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a48d7ccd42142f34a9ba3f2fe5272603 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_161 originalName: @@ -2440,7 +3245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e3c6cc2d62a86fa46b9e85f18310ad55 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_162 originalName: @@ -2455,7 +3265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 718a21bcf9fce4b4fb46a83e83985f47 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_163 originalName: @@ -2470,7 +3285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c4e2fa697e1cd7a49a250699cccb8397 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_164 originalName: @@ -2485,7 +3305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 01ed91dce1868854d9346c586df7fdc3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_165 originalName: @@ -2500,7 +3325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8a0be43bf250cc641ba78484350b1075 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_166 originalName: @@ -2515,7 +3345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 241e2f4fd9b56f04a9db4875a51a1467 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_167 originalName: @@ -2530,7 +3365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: eca04e44148420b43b82c675333498ab - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_168 originalName: @@ -2545,7 +3385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2a0c142271d4a374db846d37d7f33858 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_169 originalName: @@ -2560,7 +3405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: aa4fa107f575f91418ca7837eba62fcc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_170 originalName: @@ -2575,7 +3425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e4e814d172de9a34a9366bc21b36a868 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_171 originalName: @@ -2590,7 +3445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 258c7fb5a3a1c5640ba6421d9ab81988 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_172 originalName: @@ -2605,7 +3465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: aee3a6ef9650f1043976f220aabe6dc9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_173 originalName: @@ -2620,7 +3485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 913419b020d4d38449fed474338a363d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_174 originalName: @@ -2635,7 +3505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9957f2872282c4746bc6d4d1b458a9c4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_175 originalName: @@ -2650,7 +3525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9424b95dc451e734a91bc85db8359216 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_176 originalName: @@ -2665,7 +3545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1e2312a9b9da1364b8ed2ebf866f1805 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_177 originalName: @@ -2680,7 +3565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: dc6a7bbc5b151c84c9d32b06a5a5455a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_178 originalName: @@ -2695,7 +3585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1b188b3b7a98cac46b69e938082841fe - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_179 originalName: @@ -2710,7 +3605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4982fec46d920b74597c61fec9609255 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_180 originalName: @@ -2725,7 +3625,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 025e9a555b9c24546a78d3b1d6442d74 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_181 originalName: @@ -2740,7 +3645,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4de195bc4e9470045a120d16b6cc8eb9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_182 originalName: @@ -2755,7 +3665,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2a2581d1ee7052b45b530842cc56a5c4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_183 originalName: @@ -2770,7 +3685,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a759731c22f469c48b1ac4513ce4f73b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_184 originalName: @@ -2785,7 +3705,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 086653ccd3274664195c8683dabf25fd - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_185 originalName: @@ -2800,7 +3725,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1ae73d6488d9d9549b1f515fe6de4da3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_186 originalName: @@ -2815,7 +3745,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: adbb2b630aedc6f40ab45e137a33bdab - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_187 originalName: @@ -2830,7 +3765,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a4fefc33ac56b0641b113448a7014f4c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_188 originalName: @@ -2845,7 +3785,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 09a9c3fd1b055214b90df78470b01829 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_189 originalName: @@ -2860,7 +3805,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 674cd3b43a108964a98dda67ef826133 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_190 originalName: @@ -2875,7 +3825,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1cc2782c8c5469944bd661f9c442159e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_191 originalName: @@ -2890,7 +3845,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3e3e51398256e064bb272b286e0039d0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_192 originalName: @@ -2905,7 +3865,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 01106b3c28db0114b82d93cc56a299b1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_193 originalName: @@ -2920,7 +3885,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e6f4a40b477f42f4ea2f380d445834dc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_194 originalName: @@ -2935,7 +3905,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: df810a17eeac8f1479159ff5349fb3a3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_195 originalName: @@ -2950,7 +3925,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6f882551e6bf1654bafe292de29755db - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_196 originalName: @@ -2965,7 +3945,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2ee4959a8b8770548aa42e4ba4a77eed - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_197 originalName: @@ -2980,7 +3965,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 47cf73a78e8b9dd46b346115e6314928 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_198 originalName: @@ -2995,7 +3985,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b42d19e8f71369047bb0eff03cb36590 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_199 originalName: @@ -3010,7 +4005,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d15eec085bdabea418e19faee44d88cf - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_200 originalName: @@ -3025,7 +4025,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b2dac491a0ff75f408e16ca507204507 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_201 originalName: @@ -3040,7 +4045,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: aa73bede59279a64bb3f6c0b8268daa3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_202 originalName: @@ -3055,7 +4065,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3cddcca795325b8409371d73622f9b5d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_203 originalName: @@ -3070,7 +4085,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c0d23c41e21368f45b69ba07d36de051 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_204 originalName: @@ -3085,7 +4105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 53a9cedbd7399e04999dcf057ba583f8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_205 originalName: @@ -3100,7 +4125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 58f2a317c3ec2c14c86821cbc86e0448 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_206 originalName: @@ -3115,7 +4145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d759723974e898542849f314c31bda5c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_207 originalName: @@ -3130,7 +4165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e4b4a583d3be43049a739ddb3ed11033 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_208 originalName: @@ -3145,7 +4185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fbf15536964e64143a4b96c4ef32af67 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_209 originalName: @@ -3160,7 +4205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: deaca50c678b3df49b3c736597807f0c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_210 originalName: @@ -3175,7 +4225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 38e300cb68e863d4d8093899d38933de - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_211 originalName: @@ -3190,7 +4245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2482052d2558b844996ca6ee677e2adb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_212 originalName: @@ -3205,7 +4265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5333349a5395fcf43a50d6fcfc714128 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_213 originalName: @@ -3220,7 +4285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e241a4bec459e824ead9898ac03307f1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_214 originalName: @@ -3235,7 +4305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3fbb31e497d6d3e45b8fdd66bd5116b7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_215 originalName: @@ -3250,7 +4325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 193cb19cf38ed29488bba0530eb35b75 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_216 originalName: @@ -3265,7 +4345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a7453c5f9073df348bec4509fcce5680 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_217 originalName: @@ -3280,7 +4365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a99276fcc1f749046be70da251e6d20d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_218 originalName: @@ -3295,7 +4385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f037faab1c7deda42a9df2a6a5bf9442 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_219 originalName: @@ -3310,7 +4405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b363d7136f8ec9449b938e76ecaf3a47 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_220 originalName: @@ -3325,7 +4425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c74f285b4aa725d4cbfc041c456feda7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_221 originalName: @@ -3340,7 +4445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 86d353859473b204dbc438e3c9b39db8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_222 originalName: @@ -3355,7 +4465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0e66f59a63b5ce0498f5ae694a269b5c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_223 originalName: @@ -3370,7 +4485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e776cc3c1fc7fe641889be9806db2f49 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_224 originalName: @@ -3385,7 +4505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f3d3395f5ee66fb4a8a3ff05b6e27659 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_225 originalName: @@ -3400,7 +4525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e2aa5ed5e83147448a3a7d8be6c5724b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_226 originalName: @@ -3415,7 +4545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8d866d4f96111fd4b9fae14eb381d4d4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_227 originalName: @@ -3430,7 +4565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8c926956bfcb0c24e89be7eca1810e92 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_228 originalName: @@ -3445,7 +4585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a9ae98b5f6ea87a408fb13d06167fd37 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_229 originalName: @@ -3460,7 +4605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ba7f28d6e12a0a044bc55694437d64fc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_230 originalName: @@ -3475,7 +4625,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3559b84e73aac3a4f80026cf9b7bdbac - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_231 originalName: @@ -3490,7 +4645,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5f80b83114d34584d9c9d71c2077e30b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_232 originalName: @@ -3505,7 +4665,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 46a362e25f0872d40ab2bdfbc1c25bb4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_233 originalName: @@ -3520,7 +4685,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8a46af36d1708b148970b1359ccabbed - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_234 originalName: @@ -3535,7 +4705,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b0c7416490ddb814e837e4548a58d717 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_235 originalName: @@ -3550,7 +4725,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 892d7094b2cecf940afb5fe07a0560ce - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_236 originalName: @@ -3565,7 +4745,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2f7f4a82dbdbd634ba4c4afa89f0ed8c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_237 originalName: @@ -3580,7 +4765,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7d8f37d0f1a7a5d478986588fed7d860 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_238 originalName: @@ -3595,7 +4785,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f4e8fbb3f7aa8fd438ae88f379dba31b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_239 originalName: @@ -3610,7 +4805,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e49c861949734bf4babe149fd23be9cf - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_240 originalName: @@ -3625,7 +4825,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 56b04c44bb6fe6b4c9aee7b863505323 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_241 originalName: @@ -3640,7 +4845,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0a3f76cb86f3c6f4e88cdeb7000060dd - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_242 originalName: @@ -3655,7 +4865,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: acc2d93d0edb09d4dae20f0c53ad0ad4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_243 originalName: @@ -3670,7 +4885,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: eb929ca41034d634893be83ee8a88a49 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_244 originalName: @@ -3685,7 +4905,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 566866c1af371da45a373a06a57cad43 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_245 originalName: @@ -3700,7 +4925,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bd896770e5ab1ed4a863c8aaddf6de28 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_246 originalName: @@ -3715,7 +4945,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1501c7d757086b64480b8c8fec48c768 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_247 originalName: @@ -3730,7 +4965,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4da36ff46e129f544b24a0157c7b90fb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_248 originalName: @@ -3745,7 +4985,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d7e7a46a3960dfc4d81d69be0f902ffd - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_249 originalName: @@ -3760,7 +5005,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 163686e347c33b241af464970702f4b3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_250 originalName: @@ -3775,7 +5025,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3f41afb3ab92dda489bf79ff6811752d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_251 originalName: @@ -3790,7 +5045,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 746f3c7d4404e99408da5a98beb0d1fb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_252 originalName: @@ -3805,7 +5065,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0d696d1175bbfef4694d767e4cd9b07c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_253 originalName: @@ -3820,7 +5085,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1008ef0241210ec4e91471951fbf8fd5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_254 originalName: @@ -3835,7 +5105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fd43e3802e009774da295737c890b4a9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_255 originalName: @@ -3850,7 +5125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8cb3f6b525d26f841a939b400e1f69ee - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_256 originalName: @@ -3865,7 +5145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9be599e9f4ed96d4eb9f9eb288189132 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_257 originalName: @@ -3880,7 +5165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d5cd4df6f06264f4e82f2342023012fc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_258 originalName: @@ -3895,7 +5185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 25c4f95f9fb994d45a3ae56e7d8e4e71 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_259 originalName: @@ -3910,7 +5205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 231b343b0744a0e419a60ec67ad6825e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_260 originalName: @@ -3925,7 +5225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1eb4e7177f58e414080bd0f48968d7f6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_261 originalName: @@ -3940,7 +5245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a6a4fbaf9e8edad42a8b4c93880afdcf - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_262 originalName: @@ -3955,7 +5265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 25ffcc00300591644bb5e04f7fb5b283 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_263 originalName: @@ -3970,7 +5285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 16f4e265d0d3de64f8ed4237c40824e1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_264 originalName: @@ -3985,7 +5305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 49f3aee7fdb5d8b42b34328aa5322b11 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_265 originalName: @@ -4000,7 +5325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 36e9c4e92b67a95409df1c077021a0f9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_266 originalName: @@ -4015,7 +5345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e955c46c4d8611c43b1ce2a0ff987812 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_267 originalName: @@ -4030,7 +5365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: dd759bc46c6898d4eab0cfb3f0870ff8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_268 originalName: @@ -4045,7 +5385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cfea5bc1b224837489b853478fb29fe2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_269 originalName: @@ -4060,7 +5405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a18e418042d744540b10a1e7fd155b35 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_270 originalName: @@ -4075,7 +5425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 79716a6704f50f24693c8dfd42763844 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_271 originalName: @@ -4090,7 +5445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 28a7634da91f1d742855f14314e4e98f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_272 originalName: @@ -4105,7 +5465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cddd3bd0b6517c54b93772059dfa0ca4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_273 originalName: @@ -4120,7 +5485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 765d68973c1c93342977c51bb52260f3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_274 originalName: @@ -4135,7 +5505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 33ab22e1fb235e44c966f393ffe2f2d0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_275 originalName: @@ -4150,7 +5525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5b2a03cef9ed06e4ea5044544fdb9a27 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_276 originalName: @@ -4165,7 +5545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 63845083d04db104693563281e985764 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_277 originalName: @@ -4180,7 +5565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c0cee3cfdf461314aa022092c6042617 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_278 originalName: @@ -4195,7 +5585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 41f13c77896ffb24aa4d3a9febdfba18 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_279 originalName: @@ -4210,7 +5605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8568d83385891c24d997d4fbbfc8a18f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 _secondaryTextures: [] _artifacts: {fileID: -2988177865379244337, guid: 73a5ed3f78c93734e86c8c29bc45c043, type: 3} diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/Atlas_AutoLayers_4_Assistant.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/Atlas_AutoLayers_4_Assistant.spriteatlas index 777c7fb55..6cd8ee127 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/Atlas_AutoLayers_4_Assistant.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/Atlas_AutoLayers_4_Assistant.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/AutoLayers_4_Assistant.unity b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/AutoLayers_4_Assistant.unity index 752a56325..1a790ae1d 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/AutoLayers_4_Assistant.unity +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/AutoLayers_4_Assistant.unity @@ -42,7 +42,8 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 12 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 m_GISettings: serializedVersion: 2 m_BounceScale: 1 @@ -135,568 +136,1496 @@ PrefabInstance: value: 1 objectReference: {fileID: 0} - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1417021117} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size - value: 4 + value: 8 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 1417021117} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + objectReference: {fileID: 1417021118} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size value: 4 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 4 + value: 54 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size - value: 22 + value: 4 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.size value: 4 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.size + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 20.999971 + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 20.999971 + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y value: 14 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 4 + value: 10 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 10.00003 + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 1 + value: 4 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 10.00003 + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 1.0000294 + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 13 + value: 6 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 4 + value: 8 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 12.99997 + value: 6.000029 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 7.0000296 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x + value: 5.0000296 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x value: 10 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y + value: 10.00003 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 19.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].y - value: 2.0000293 + value: 8 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x - value: 4 + value: 19.999971 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y - value: 2.0000293 + value: 9 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x - value: 4.0000296 + value: 17 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y - value: 6 + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x - value: 8 + value: 17.000029 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y - value: 6.000029 + value: 8 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x - value: 7.9999704 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y - value: 7 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].y + value: 6 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x - value: 4 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y - value: 7.0000296 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].y + value: 9 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x - value: 4.0000296 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].x + value: 15 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y - value: 8 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].y + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x - value: 9 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].x + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].y - value: 7.9999704 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].y + value: 6 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].x - value: 9.00003 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[0].x + value: 3 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[0].y + value: 6.0000296 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[1].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[1].y + value: 6.0000296 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[2].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[2].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[3].x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[3].y + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[0].x + value: 17.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[0].y value: 6 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].x - value: 10 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[1].x + value: 17.999971 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].y - value: 6.000029 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[1].y + value: 7 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[2].x + value: 17 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[2].y + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[3].x + value: 17.000029 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[3].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[0].x value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[0].y value: 5 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[1].x value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[1].y value: 7 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[2].x value: 12 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[2].y value: 6.9999704 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[3].x value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[3].y value: 5 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[0].x + value: 19.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[0].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[1].x + value: 20.000029 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[1].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[2].x + value: 21 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[2].y + value: 5.000029 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[3].x + value: 20.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[3].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[4].x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[4].y + value: 6.0000296 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[5].x + value: 19.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[5].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[6].x + value: 19 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[6].y + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[7].x + value: 18.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[7].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[8].x + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[8].y + value: 5.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[9].x + value: 18.000029 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[9].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].x + value: 3.9999704 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].y + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].x + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].y value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].x + value: 3.9999704 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].y + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].y + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[20].x + value: 2.9999707 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[20].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[21].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[21].y + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[22].x + value: 1.9999708 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[22].y + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[23].x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[23].y + value: 9.00003 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[24].x + value: 1.0000294 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[24].y value: 10 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].x - value: 6 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[25].x + value: 2 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[25].y value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].x - value: 6.0000296 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[26].x + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[26].y value: 12 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[27].x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[27].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[28].x + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[28].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[29].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[29].y + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[30].x + value: 6.000029 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[30].y value: 12 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[31].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[31].y value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[32].x + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[32].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[33].x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[33].y + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[34].x + value: 10.00003 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[34].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[35].x + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[35].y + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[36].x value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[36].y value: 8 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[37].x value: 14 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[37].y value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[38].x value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[38].y value: 10 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].x - value: 19 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[39].x + value: 22 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[39].y value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[18].x - value: 18.999971 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[40].x + value: 21.999971 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[18].y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[40].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[41].x + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[41].y + value: 2.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[42].x + value: 17.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[42].y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[43].x + value: 17 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[43].y + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[44].x + value: 16.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[44].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[45].x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[45].y + value: 2.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[46].x + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[46].y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[47].x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[47].y + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[48].x + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[48].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[49].x + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[49].y + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[50].x + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[50].y value: 4 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[19].x + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[51].x value: 6 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[19].y - value: 3.999971 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[51].y + value: 3.999971 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[52].x + value: 6.000029 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[52].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[53].x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[53].y + value: 2.9999707 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[10].x + value: 19 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[10].y + value: 4.9999704 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[11].x + value: 19.000029 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[11].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size + value: 54 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.size + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].X + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].X + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[0].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[0].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[1].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[1].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[2].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[2].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[3].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[3].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[0].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[0].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[1].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[1].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[2].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[2].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[3].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[3].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[0].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[0].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[1].X + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[1].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[2].X + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[2].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[3].X + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[20].x - value: 6.000029 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[3].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[20].y - value: 3 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[4].X + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[21].x - value: 10 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[4].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[21].y - value: 2.9999707 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[5].X + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 4 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[5].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 4 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[6].X + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 4 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[6].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 22 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[7].X + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.size - value: 4 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[7].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 210000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[8].X + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 140000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[8].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 140000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[9].X + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 210000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[9].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 10000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 100000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 10000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 130000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 130000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 100000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 40000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 20000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].X value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 60000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 80000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 60000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 80000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 70000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 40000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 70000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 40000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[20].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[20].Y value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[21].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[21].Y value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y - value: 80000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[22].X + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[22].Y value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y - value: 60000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[23].X + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[23].Y value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y - value: 60000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[24].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[24].Y value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y - value: 100000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[25].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].X - value: 140000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[25].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].Y - value: 70000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[26].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[26].Y value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].Y - value: 70000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[27].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[27].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[28].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[28].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[29].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[29].Y value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].Y - value: 50000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[30].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].X - value: 140000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[30].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].Y - value: 50000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[31].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X - value: 60000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[31].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[32].X value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].X - value: 60000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[32].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[33].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[33].Y value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[34].X value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[34].Y value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[35].X value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[35].Y value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[36].X value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[36].Y value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[37].X value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[37].Y value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].X - value: 190000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[38].X + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[38].Y value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].X - value: 190000000 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[39].X + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[39].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[40].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[40].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[41].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[41].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[42].X + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[42].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[43].X + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[43].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[44].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[44].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[45].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[45].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[46].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[46].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[47].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[47].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[48].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[48].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[49].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[49].Y value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[18].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[50].X value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[18].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[50].Y value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[19].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[51].X value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[19].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[51].Y value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[20].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[52].X value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[20].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[52].Y value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[21].X + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[53].X value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6298971287398522849, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[21].Y + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[53].Y value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 2649956224849124804, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} - propertyPath: m_RootOrder - value: 1 + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[10].X + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[10].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[11].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[11].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[12].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[12].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[13].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[13].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[14].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[14].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[15].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -1407819518782551452, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[15].Y + value: 40000000 objectReference: {fileID: 0} - target: {fileID: 2649956224849124804, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} propertyPath: m_LocalPosition.x @@ -748,6 +1677,11 @@ TilemapCollider2D: m_CorrespondingSourceObject: {fileID: 5030050548257392831, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} m_PrefabInstance: {fileID: 1417021116} m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1417021118 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 6259912086784828101, guid: 42e4ea7a446802f4a8168f700a79d326, type: 3} + m_PrefabInstance: {fileID: 1417021116} + m_PrefabAsset: {fileID: 0} --- !u!1001 &5595051104968945217 PrefabInstance: m_ObjectHideFlags: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/Inca_extended_front_by_Kronbits.ldtkt.meta b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/Inca_extended_front_by_Kronbits.ldtkt.meta index 850ecfd51..a3b6eb426 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/Inca_extended_front_by_Kronbits.ldtkt.meta +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_4_Assistant/Inca_extended_front_by_Kronbits.ldtkt.meta @@ -25,7 +25,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7e89a93f59f5a9f4680c3b60d7546de8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_1 originalName: @@ -40,7 +45,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 178f951266ea7d448a529248635bfb9d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_2 originalName: @@ -55,7 +65,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 72f8818e21c151f4a967052784e933f6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_3 originalName: @@ -70,7 +85,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a66bd2841797e6e478ef7a241e165bb3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_4 originalName: @@ -85,7 +105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a2aa9167d4e141845aaf08e3bd167c18 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_5 originalName: @@ -100,7 +125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9e56964b5c8aae24d90593350a29d7de - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_6 originalName: @@ -115,7 +145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 39cde2dcf59a061488fedc381d1965e5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_7 originalName: @@ -130,7 +165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5796178388168294e990c329015feb57 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_8 originalName: @@ -145,7 +185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0066bb846d384e545a63bbacc9b99138 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_9 originalName: @@ -160,7 +205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 12890e40556cc1a4db9025c7d87b0d31 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_10 originalName: @@ -175,7 +225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e016d44982651ca42b3457f426efc3b8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_11 originalName: @@ -190,7 +245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ae10acfe24f912143840eb388fe4191f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_12 originalName: @@ -205,7 +265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6d2ae6d63af10da46a128805df537864 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_13 originalName: @@ -220,7 +285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f1811488a2c30c64cafdb57072522f31 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_14 originalName: @@ -235,7 +305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 373c5022565954049aa116bb4c5e0a6f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_15 originalName: @@ -250,7 +325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f226542c54b2a5742a3757f9987d3775 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_16 originalName: @@ -265,7 +345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e4cc1a2a5b9b5bf4eb735785c38390ed - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_17 originalName: @@ -280,7 +365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 764b6c9093c652e47b9118dc873af76d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_18 originalName: @@ -295,7 +385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1bf1360cb5f0e8640981758e740a42ea - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_19 originalName: @@ -310,7 +405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 606876cfaac017c4986a921eff661fa1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_20 originalName: @@ -325,7 +425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 69b6ad81d562aff4ba37f8ffa844e524 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_21 originalName: @@ -340,7 +445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4521df5b639ddf54396ede045cf38209 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_22 originalName: @@ -355,7 +465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: db4b9cc83bf812d47bc3225887e2245d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_23 originalName: @@ -370,7 +485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8e5ea2a15c816b942bd63e5e8bc489b8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_24 originalName: @@ -385,7 +505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 197961c1e852c7041aebc0682cd30164 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_25 originalName: @@ -400,7 +525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c3c5dafdc9a94fb47b0b489ae16fdf3e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_26 originalName: @@ -415,7 +545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2e84c51537befea439d5fcf8817d4e7d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_27 originalName: @@ -430,7 +565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ad8023ca12052514ab163897c7856f55 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_28 originalName: @@ -445,7 +585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7f3484146975d684d84cf6818141f233 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_29 originalName: @@ -460,7 +605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 63faaee77fbead442bcaccb949e49b18 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_30 originalName: @@ -475,7 +625,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 86183bf9c08617e4c94c1826974e2707 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_31 originalName: @@ -490,7 +645,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3b4ed362a7b44714f82e6a868dc53dfc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_32 originalName: @@ -505,7 +665,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ca099abe6e5f0314ba770dbbd9a33986 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_33 originalName: @@ -520,7 +685,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6082a1e7cb130104cb48ae3bb216a4c8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_34 originalName: @@ -535,7 +705,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1245a038ad1ab9943a3d701c32c360e7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_35 originalName: @@ -550,7 +725,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4c44319a614ab6942b27f4db0343a8e6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_36 originalName: @@ -565,7 +745,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 836cd68b32c85d743a30a39c3e60f6ea - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_37 originalName: @@ -580,7 +765,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 31bf63853387bf04a9bfcfedd9daf8c1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_38 originalName: @@ -595,7 +785,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6ad9025892abfe140a4ca91c5e75880f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_39 originalName: @@ -610,7 +805,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 95f86be2b55a7a74188487069b91cc0d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_40 originalName: @@ -625,7 +825,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 212ef59561ca68948afacf4b335598a2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_41 originalName: @@ -640,7 +845,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3690f83ff0d5b61428395b716d80d22a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_42 originalName: @@ -655,7 +865,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: beee17a6db6ed724b818925214960e94 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_43 originalName: @@ -670,7 +885,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6a9d733988194d749a1171d7ba43ff2f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_44 originalName: @@ -685,7 +905,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8e208f59e76e846458dab310b2951c01 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_45 originalName: @@ -700,7 +925,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b7643c9163c632146b876eda02d2f473 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_46 originalName: @@ -715,7 +945,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0ff964a3504641e479da3d1db96db2b3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_47 originalName: @@ -730,7 +965,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2f2740e05faef58449e183a816f7e841 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_48 originalName: @@ -745,7 +985,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0f84123c3f40043428843a5854934d84 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_49 originalName: @@ -760,7 +1005,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a6262f95dfe19c44fb0b5fd132c85a54 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_50 originalName: @@ -775,7 +1025,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c0b2d5239d3945e41ab1febb0885f874 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_51 originalName: @@ -790,7 +1045,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ba52dff987611f942b39eced3f97a961 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_52 originalName: @@ -805,7 +1065,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 29ac08ae259751b4f8e63496a1ec9db7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_53 originalName: @@ -820,7 +1085,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3be1cd64d8b46874a8c65a164e9b1e11 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_54 originalName: @@ -835,7 +1105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d4adbe23e663b224fbbe41993235c87a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_55 originalName: @@ -850,7 +1125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ac36c1794c02a03478862da305ed77b6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_56 originalName: @@ -865,7 +1145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 228a53e099b9e91449b27441bb902c46 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_57 originalName: @@ -880,7 +1165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d7363c29c3b9e4145911b257c95f2db1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_58 originalName: @@ -895,7 +1185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f56ed9090e9704e438691382c5c8d13b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_59 originalName: @@ -910,7 +1205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fc1713a6ccd623a4bb3d4acd1b344752 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_60 originalName: @@ -925,7 +1225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 21f62888ab17d474a885f0a7030e05e8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_61 originalName: @@ -940,7 +1245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d048f9abcffa6a84eb2de69e5d483c50 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_62 originalName: @@ -955,7 +1265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 24b772bc4e75a1744bd0b136d6803142 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_63 originalName: @@ -970,7 +1285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 90779cf702dc9474e8a75d65636ec349 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_64 originalName: @@ -985,7 +1305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: eb67d06dae13ab841be2ef7e025437e4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_65 originalName: @@ -1000,7 +1325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3dcca90afef12c448bc8ebbbc5f0e92e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_66 originalName: @@ -1015,7 +1345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3a3d35e8c8425d44480403eeb3ec7b15 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_67 originalName: @@ -1030,7 +1365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6807e1cd61ed61442841093e5f8ca4f6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_68 originalName: @@ -1045,7 +1385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f08e0537ec9da0447ada3282544d4ed8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_69 originalName: @@ -1060,7 +1405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e617b6f5450e03e458a302ea296e62f4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_70 originalName: @@ -1075,7 +1425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a1d703e9475c37e4487321f38f068c53 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_71 originalName: @@ -1090,7 +1445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0f1037b0fe149fe4794ed8bd7d367a0e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_72 originalName: @@ -1105,7 +1465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f8cf1c3c856bc6248a84163ef3179f60 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_73 originalName: @@ -1120,7 +1485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4996f0209ea98ff4fb076b666d492407 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_74 originalName: @@ -1135,7 +1505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3a559dcf195331a43a839bcc133df2af - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_75 originalName: @@ -1150,7 +1525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1b8d581003067a34a950f1903dacff08 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_76 originalName: @@ -1165,7 +1545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 01a02aeb842496a4b92f196dd26da761 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_77 originalName: @@ -1180,7 +1565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4ec789e9733ae4544b6e0d28d926f871 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_78 originalName: @@ -1195,7 +1585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 08d462d67405d164f9b991b9a653d8ff - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_79 originalName: @@ -1210,7 +1605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3f9066b48a800304ca387e2700bb9f12 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_80 originalName: @@ -1225,7 +1625,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f5520d08692868446806056fb0effa6b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_81 originalName: @@ -1240,7 +1645,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 605362626645be742a7ad5f5d5626b37 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_82 originalName: @@ -1255,7 +1665,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 182135f190e59764c9ea28ff63f639ee - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_83 originalName: @@ -1270,7 +1685,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7f5fd4d174269a943aeb2f9eab9c5c89 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_84 originalName: @@ -1285,7 +1705,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 715b9b5e93b979b4894cc2a3493d30a1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_85 originalName: @@ -1300,7 +1725,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b8e5c27c86bac9842b84b9dfe6e05825 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_86 originalName: @@ -1315,7 +1745,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cb82acddaf57b014891082a101520e3e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_87 originalName: @@ -1330,7 +1765,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f0712a1fb1440af45b025fa9e8180778 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_88 originalName: @@ -1345,7 +1785,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4c4355551e5a68449bc2484211fa36e1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_89 originalName: @@ -1360,7 +1805,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5b0f71575b501c54caca568626e14668 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_90 originalName: @@ -1375,7 +1825,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 446c27bc5da3a9849a89b1c6d17346e6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_91 originalName: @@ -1390,7 +1845,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6ee4589c12493f64d9e15b6245be39df - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_92 originalName: @@ -1405,7 +1865,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5add64b708f8a35489cd8a2a3563806d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_93 originalName: @@ -1420,7 +1885,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 74e3a526cf2bf7a44beabc04b7797c48 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_94 originalName: @@ -1435,7 +1905,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fa6dd3642c602bd4b83984dd8fc881c0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_95 originalName: @@ -1450,7 +1925,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ad8757a76c205294b9ff92a4fa4737da - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_96 originalName: @@ -1465,7 +1945,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 88a46d72e9ba03e4c92abc25467ddb68 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_97 originalName: @@ -1480,7 +1965,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d0463c8b45b58cb4aab1a4d9e72581c5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_98 originalName: @@ -1495,7 +1985,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b1f41461bb737664f8755bdad7213a49 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_99 originalName: @@ -1510,7 +2005,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 49f82a992553fb840bfd50816f80892f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_100 originalName: @@ -1525,7 +2025,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8be176794ff961f45a19f7b1169d9613 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_101 originalName: @@ -1540,7 +2045,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b779a3b0f51ac8c448a32da1b6cd5f6c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_102 originalName: @@ -1555,7 +2065,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5520cb41f6eb2764ab32479dd37ce5eb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_103 originalName: @@ -1570,7 +2085,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1903e53481dcc214b9329668a76ce559 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_104 originalName: @@ -1585,7 +2105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b1b0aaa9ab3ad4d4686f66b630548484 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_105 originalName: @@ -1600,7 +2125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bafe5b4d9a7e602438d80f706634478e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_106 originalName: @@ -1615,7 +2145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5c4b2229df4126c4eb3a7a814fb0e2e0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_107 originalName: @@ -1630,7 +2165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f7ba802b7b3256549bcf20365f54d0a0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_108 originalName: @@ -1645,7 +2185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 74d80ca14a9ff234792d6b0043237594 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_109 originalName: @@ -1660,7 +2205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: be40f9316bf462f4696b114c8cd91fe5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_110 originalName: @@ -1675,7 +2225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: dc9b878ac2923944f9c38d020cffbf4b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_111 originalName: @@ -1690,7 +2245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d932abff7665b8f4890188144f785330 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_112 originalName: @@ -1705,7 +2265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 740dd07c30f5a7a498a4cc9383b22adb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_113 originalName: @@ -1720,7 +2285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 49b98cb3c929e114591da5dbe220dc65 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_114 originalName: @@ -1735,7 +2305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f9b5bd53a8c538f44a89aa2c913a8f5a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_115 originalName: @@ -1750,7 +2325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c6d04c5c2115d6148b8139bc05203264 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_116 originalName: @@ -1765,7 +2345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4f08d2a0022cacd45a8ed762d0e9fadb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_117 originalName: @@ -1780,7 +2365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4d95586bad07bf940b03f7d5c2ccd210 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_118 originalName: @@ -1795,7 +2385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 91391296e6f0dad49b2fb0188ecb9d8a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_119 originalName: @@ -1810,7 +2405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 47e2fdf9778bd5a4c84a59e8b4a85d32 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_120 originalName: @@ -1825,7 +2425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5888dfef2f15a6040a1d9605fb1af3fb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_121 originalName: @@ -1840,7 +2445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5b5e124f0fb4fce43bc563aef8c748fa - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_122 originalName: @@ -1855,7 +2465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e3f5331af4025ae4390a3ec7f25bb863 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_123 originalName: @@ -1870,7 +2485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 08ae9a162490c8b438601385a387d0c2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_124 originalName: @@ -1885,7 +2505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 761cdf57d0e574a4a8f5a75a7cbac76e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_125 originalName: @@ -1900,7 +2525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 734ab3a40162bd64aaf5386409944eba - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_126 originalName: @@ -1915,7 +2545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bd972224d1ecbfe478cf250709e29458 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_127 originalName: @@ -1930,7 +2565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c7dc43b1b64fa644e8b4a55527ffbafc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_128 originalName: @@ -1945,7 +2585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 56547792ccf63044a84903220db20967 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_129 originalName: @@ -1960,7 +2605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9b268903d81d5574cb4c17d94211d2d7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_130 originalName: @@ -1975,7 +2625,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a8e60b2b65fec20428585e98fdcae76e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_131 originalName: @@ -1990,7 +2645,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d07e92918c663c543862c54745088857 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_132 originalName: @@ -2005,7 +2665,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: cc3b804057cd54f40905c3e478e6528c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_133 originalName: @@ -2020,7 +2685,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bdbbfc9487103a849ba700426d33f9d4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_134 originalName: @@ -2035,7 +2705,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7f171dbe740c3264e812d98bd50f9a3e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_135 originalName: @@ -2050,7 +2725,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f654b24bae986b743ae9500073a989eb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_136 originalName: @@ -2065,7 +2745,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 571c374578ef0024eae0b64a30dc9c3b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_137 originalName: @@ -2080,7 +2765,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 714eaba6725684f4784a60c2b3d76780 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_138 originalName: @@ -2095,7 +2785,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4c67bd6e0e53af643bcab3898cc85a76 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_139 originalName: @@ -2110,7 +2805,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 84bd0457f31e44a4abc7f9238758fe0e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_140 originalName: @@ -2125,7 +2825,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 16c5a399b78f69c4f91d1c36f892fe36 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_141 originalName: @@ -2140,7 +2845,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: acd70df7b9e41204f86e2613864de51a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_142 originalName: @@ -2155,7 +2865,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 03ff81b6fdb82b448bdcac632c335038 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_143 originalName: @@ -2170,7 +2885,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a8474d43cba69ff4b97d4e1eb71d4410 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_144 originalName: @@ -2185,7 +2905,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d6e22ad54091ea543b0adecb73bf9c15 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_145 originalName: @@ -2200,7 +2925,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6f4818376c728bb4483c2a6780cd8f06 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_146 originalName: @@ -2215,7 +2945,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b49ffd5f1adf1824cb96eaa1a236c59b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_147 originalName: @@ -2230,7 +2965,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6975aa79ddc786c44a0557e68b2f4a33 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_148 originalName: @@ -2245,7 +2985,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: af89125e0cfaea54b921c1eb1516435d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_149 originalName: @@ -2260,7 +3005,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 955412d8fd20d0442aebc3c4804273a7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_150 originalName: @@ -2275,7 +3025,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c655b81c1fcbe4e4c82aa6d0fc9140a9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_151 originalName: @@ -2290,7 +3045,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4b71e36fe4da1ae4ba66bee631f20fe7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_152 originalName: @@ -2305,7 +3065,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e365578d168b8094bb4cc2fc66127947 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_153 originalName: @@ -2320,7 +3085,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0e54e2bbcddb8204db25132923f4d046 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_154 originalName: @@ -2335,7 +3105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 893a0376f79bf4d438625082700076e6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_155 originalName: @@ -2350,7 +3125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4bb4d50584e135d43918305560a63284 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_156 originalName: @@ -2365,7 +3145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ace15ee5b35db8345b8bc77d1564fef5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_157 originalName: @@ -2380,7 +3165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1c8fd4004d0067049a42b92c94519361 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_158 originalName: @@ -2395,7 +3185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 05b6ef2c9d491c641ab03c2a9a5714f8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_159 originalName: @@ -2410,7 +3205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 84c3773ea6d345b4a8ec5abfa676b1b3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_160 originalName: @@ -2425,7 +3225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 00f28675917198047907b4ffba05d992 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_161 originalName: @@ -2440,7 +3245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: af5f2c0ef59b3f049aa1e43189e11b39 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_162 originalName: @@ -2455,7 +3265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8989d3759b6b67541868ed13eb2cc18d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_163 originalName: @@ -2470,7 +3285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bd68b501f21b5334881f54494da0145e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_164 originalName: @@ -2485,7 +3305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2e5b4c95e9ffecf46bcab201c292237d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_165 originalName: @@ -2500,7 +3325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f3fb7b33cbe3ea4489947bd8de30c584 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_166 originalName: @@ -2515,7 +3345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f7debbaab2189e64eb5755b5c2146527 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_167 originalName: @@ -2530,7 +3365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f28a229a30852474b8df57b1f4dbc4df - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_168 originalName: @@ -2545,7 +3385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5713a111ecfa3704fad68242ce0d9dad - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_169 originalName: @@ -2560,7 +3405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e35367333f4c1604ca849ea71ae99320 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_170 originalName: @@ -2575,7 +3425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 46b256629df528340afb2646a2b2994d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_171 originalName: @@ -2590,7 +3445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e07b1d3cd16c25947bc167ecb170584f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_172 originalName: @@ -2605,7 +3465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 03f5a960c23aea8459600263d0f73739 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_173 originalName: @@ -2620,7 +3485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 962b2fd8c35a6f14eb5c422a2e6fa234 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_174 originalName: @@ -2635,7 +3505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: caf10c023d919884e9dd4da427447ea6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_175 originalName: @@ -2650,7 +3525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1960c1424b9f4214c8976aa2e8c7a1b8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_176 originalName: @@ -2665,7 +3545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f730502d029b9c64e9da94e0a9099a00 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_177 originalName: @@ -2680,7 +3565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: abb81d794d52a63449b33e4f7eb982fc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_178 originalName: @@ -2695,7 +3585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 838c1149b4a176e44a64da41fede2799 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_179 originalName: @@ -2710,7 +3605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5d4a8a4bc90dea64d8c41a640d9a50be - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_180 originalName: @@ -2725,7 +3625,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8fe16350ed0973440a1f5f7084dd6a40 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_181 originalName: @@ -2740,7 +3645,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5daf6418c1371014c931bd34eaf046b0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_182 originalName: @@ -2755,7 +3665,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7e9ea064d6d7a6d4c933ba6c6d59ce9a - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_183 originalName: @@ -2770,7 +3685,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6368ee35c7c8fb44bb41c7066792f779 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_184 originalName: @@ -2785,7 +3705,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0676b9481d3dcb941a4956983a6a73e6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_185 originalName: @@ -2800,7 +3725,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0fda70ab199ce674eb383f257817cccb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_186 originalName: @@ -2815,7 +3745,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: eec9e5c483fc38442b7a24b1bd02d670 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_187 originalName: @@ -2830,7 +3765,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ec5750093dc1cac4990385969c984bf0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_188 originalName: @@ -2845,7 +3785,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 32881bfd0b6b71d4d987da77340f86b8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_189 originalName: @@ -2860,7 +3805,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 98c23497ceba64646859b400485a807d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_190 originalName: @@ -2875,7 +3825,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2bcf821f539bc0e4eb73b88d0e83d7df - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_191 originalName: @@ -2890,7 +3845,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a9a801224a32ac34887a11f1965d747e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_192 originalName: @@ -2905,7 +3865,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ade5a7916ee4ea04e9819e0f4749f63c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_193 originalName: @@ -2920,7 +3885,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 529899d84fa7f4a4f9cfb8ee6fb159df - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_194 originalName: @@ -2935,7 +3905,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d43088589fcea594c86befa7863fa241 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_195 originalName: @@ -2950,7 +3925,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: df90ba9199c24b84b8fb887da3b88a2b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_196 originalName: @@ -2965,7 +3945,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 673427c81f57d844883ec16a10a7eaae - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_197 originalName: @@ -2980,7 +3965,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 5b9521f970ddc904da6f5e91c16e1a72 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_198 originalName: @@ -2995,7 +3985,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fefd8f2b498c7fd4f9878c7bba96a3e8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_199 originalName: @@ -3010,7 +4005,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8a90f6dc091e1024f9b2787a29583b41 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_200 originalName: @@ -3025,7 +4025,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2827d4302a65c4945abc2161d281718e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_201 originalName: @@ -3040,7 +4045,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 00768ab9936f29d41a8f7d45ea438c51 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_202 originalName: @@ -3055,7 +4065,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c1c8b84069ca12744ac195953fab00cb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_203 originalName: @@ -3070,7 +4085,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3627d7de4da7cb344b8b18b47e0fe090 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_204 originalName: @@ -3085,7 +4105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e8095fdbb06293b4ba95b129f0f02ce7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_205 originalName: @@ -3100,7 +4125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 148df251d5ae2644cbefd38d02a4e1c8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_206 originalName: @@ -3115,7 +4145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b492f5663f3527849bb53b9399099289 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_207 originalName: @@ -3130,7 +4165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7f81ce53fba798d478337e0115905dfa - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_208 originalName: @@ -3145,7 +4185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 484f86994ac36c045a17343d6d776a52 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_209 originalName: @@ -3160,7 +4205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4fbced5e48ddd1f439a06a7f2d3a270f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_210 originalName: @@ -3175,7 +4225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0cfcc072ef18a164eb046704136e55bc - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_211 originalName: @@ -3190,7 +4245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f0e959cbd03e0654f814db072cc44690 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_212 originalName: @@ -3205,7 +4265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e00ba055e2d45a642b439aadae501481 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_213 originalName: @@ -3220,7 +4285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 79c33d140f0452c4985bf74ae98a0675 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_214 originalName: @@ -3235,7 +4305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 43af969514c399a4d9fc2ad2dde0e973 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_215 originalName: @@ -3250,7 +4325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0e949574ff91f4748921b28063947d30 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_216 originalName: @@ -3265,7 +4345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8f00b58f22e9c20459417929c75b6eed - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_217 originalName: @@ -3280,7 +4365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b432993f5bf11da409334624a2447ec5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_218 originalName: @@ -3295,7 +4385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 360e8558c53300e4cbde6a007a72a0a4 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_219 originalName: @@ -3310,7 +4405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a7fc8267d15435842bfb8457c12d41eb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_220 originalName: @@ -3325,7 +4425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 72ef81610435d684e8eef73a67070035 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_221 originalName: @@ -3340,7 +4445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9bbb391206fb20646b5d50c27581b87c - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_222 originalName: @@ -3355,7 +4465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4dd73abe83cef174bb1aea36799b5aff - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_223 originalName: @@ -3370,7 +4485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: e8259b39977089a4cab7d9c51c503987 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_224 originalName: @@ -3385,7 +4505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: dfb9da76259aaad4a975b7614f337433 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_225 originalName: @@ -3400,7 +4525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4082a66aa1a129142aab02e1d730e707 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_226 originalName: @@ -3415,7 +4545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 4871d95ee48cf3e47b6acdac282dc91b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_227 originalName: @@ -3430,7 +4565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ab4b62970c8a55040854f412b15a07d3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_228 originalName: @@ -3445,7 +4585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 6877734c7fc48b142bc1071c5c9d83da - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_229 originalName: @@ -3460,7 +4605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 43c8909a63e9ac74b90bc835d7fe7a2f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_230 originalName: @@ -3475,7 +4625,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0e248823e3dc6d4498226996d4561673 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_231 originalName: @@ -3490,7 +4645,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d4893f2dc8b73934297bfc49c109b56e - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_232 originalName: @@ -3505,7 +4665,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 307d1d8e62e852a4cb3a8d914cfa833f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_233 originalName: @@ -3520,7 +4685,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: b6e1e5c62de0ba549a4aa1060c4c64c8 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_234 originalName: @@ -3535,7 +4705,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 371f617ce3e8cd544905e104cdcf11e6 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_235 originalName: @@ -3550,7 +4725,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7ea1c88a3d72c5c45a9c18d29159869f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_236 originalName: @@ -3565,7 +4745,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a8166b2ba88d92843bb029a105c60de0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_237 originalName: @@ -3580,7 +4765,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: ab08898df06fbe0468ad880dee5404f7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_238 originalName: @@ -3595,7 +4785,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9315be34572e2d94faecd781bfe0e374 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_239 originalName: @@ -3610,7 +4805,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c570c5eca18f23b4bb1988bfe110c557 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_240 originalName: @@ -3625,7 +4825,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7194e826e5d4d494e91b65ad400c4786 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_241 originalName: @@ -3640,7 +4845,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a879e23020bd9e64b8043170f59ed9aa - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_242 originalName: @@ -3655,7 +4865,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9fda5049fde2eac4f831e4067bf34b46 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_243 originalName: @@ -3670,7 +4885,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: a22ab405ff94ae54298d7e8e1b27b955 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_244 originalName: @@ -3685,7 +4905,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f1e51aefcce510f4da5a6f8ee9d46bb3 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_245 originalName: @@ -3700,7 +4925,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d9b5ddb5868bd6b40ab528370dffc8fb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_246 originalName: @@ -3715,7 +4945,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 1c98dcae06b55fc4c8c5966ea1dfef24 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_247 originalName: @@ -3730,7 +4965,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 090be51fda97b5843adda6b90e3e8fb1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_248 originalName: @@ -3745,7 +4985,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 8b6b5a4040ceb2f43adc45d124ebb3bb - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_249 originalName: @@ -3760,7 +5005,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bddf7c336d05c6042bea2a3362fbaac0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_250 originalName: @@ -3775,7 +5025,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d5221943a8f0bb34ea958591266d902f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_251 originalName: @@ -3790,7 +5045,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d62e95e7b36496b4cb48015f08df2f56 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_252 originalName: @@ -3805,7 +5065,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: aa866c7179b470b4f8af9c3e8b3dae2b - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_253 originalName: @@ -3820,7 +5085,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d1e10cf5ba3d95d49ae4062dd3569a2f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_254 originalName: @@ -3835,7 +5105,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: bfbbe0eb2a41f6f47b45a14810d20ee7 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_255 originalName: @@ -3850,7 +5125,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0f00ca9a667b8ec4983423fa0039b1a1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_256 originalName: @@ -3865,7 +5145,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0e9da8aa6cfbc0f47a7664a148dd1f51 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_257 originalName: @@ -3880,7 +5165,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f7f592bd87d197d48bd4dace83d0eaa1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_258 originalName: @@ -3895,7 +5185,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2ab4f715f9b8cbb45937788a51712a95 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_259 originalName: @@ -3910,7 +5205,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 32ff6150eddd51842bf4276cadd979ae - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_260 originalName: @@ -3925,7 +5225,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 37aee76924b2be047843c15bbba1d910 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_261 originalName: @@ -3940,7 +5245,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 292d1bfc29c4f664b973386dc4780aac - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_262 originalName: @@ -3955,7 +5265,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 757bf43dbf65a4c4ba58b92b411aeed9 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_263 originalName: @@ -3970,7 +5285,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: c7a426ec6596348459a914ac21c14226 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_264 originalName: @@ -3985,7 +5305,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: d3bcc2a19b4f62643b9cc6d22acd9e0f - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_265 originalName: @@ -4000,7 +5325,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 3de622427ddd93849999fe8ea6014872 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_266 originalName: @@ -4015,7 +5345,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fa230167fd4f7ff4a8d01814124111e0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_267 originalName: @@ -4030,7 +5365,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 31e0ec6f7ff53f24cb36314a05aee086 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_268 originalName: @@ -4045,7 +5385,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 59c6ac45e767e334aa263a77121c2584 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_269 originalName: @@ -4060,7 +5405,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 03bc9e4cefad00443bd4431902df2fbd - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_270 originalName: @@ -4075,7 +5425,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 58cea7bab508f9646a81654cc3c8e1b1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_271 originalName: @@ -4090,7 +5445,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 7956bfcd65ea24148a6af30a8c4cf675 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_272 originalName: @@ -4105,7 +5465,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 320520f6e0a4468418a1e7f0f80324a5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_273 originalName: @@ -4120,7 +5485,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 2fe27a5a353329347b67ba1c683227f5 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_274 originalName: @@ -4135,7 +5505,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: f63ca223e51917d41b17a1df2e20bd8d - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_275 originalName: @@ -4150,7 +5525,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9da876830be148f40980a4e811a53477 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_276 originalName: @@ -4165,7 +5545,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 358609a0e1d073f45860061be87cb6c1 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_277 originalName: @@ -4180,7 +5565,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 0ffeabf375a1e9545906f974904407a0 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_278 originalName: @@ -4195,7 +5585,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: fd358f9497814e940b065d6a6ad20346 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 - name: Inca_extended_front_by_Kronbits_279 originalName: @@ -4210,7 +5605,12 @@ ScriptedImporter: width: 16 height: 16 spriteID: 9b41772dd45d0ea47ae60a3b706e33d2 - spriteOutline: [] + spriteOutline: + - shape: + - {x: 8, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} tessellationDetail: 0 _secondaryTextures: [] _artifacts: {fileID: -2988177865379244337, guid: 36cbcb5afc48407419dc6b710ef4eced, type: 3} diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced.ldtk.meta b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced.ldtk.meta index e14847d4b..aaf809f36 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced.ldtk.meta +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced.ldtk.meta @@ -20,7 +20,7 @@ ScriptedImporter: _useParallax: 1 _intGridValues: - _key: IntGrid_layer_1 - _asset: {instanceID: 0} + _asset: {fileID: 11400000, guid: 85c839224be7398449b593cedc9d81ca, type: 2} - _key: IntGrid_layer_2 _asset: {instanceID: 0} - _key: IntGrid_layer_3 diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced/Atlas_AutoLayers_5_Advanced.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced/Atlas_AutoLayers_5_Advanced.spriteatlas index 062aa82c9..4e9c1b457 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced/Atlas_AutoLayers_5_Advanced.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced/Atlas_AutoLayers_5_Advanced.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced/AutoLayers_5_Advanced.unity b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced/AutoLayers_5_Advanced.unity index fdc901d6a..fc0ec32b3 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced/AutoLayers_5_Advanced.unity +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_5_Advanced/AutoLayers_5_Advanced.unity @@ -42,7 +42,8 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 12 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 m_GISettings: serializedVersion: 2 m_BounceScale: 1 @@ -126,59 +127,3174 @@ PrefabInstance: serializedVersion: 3 m_TransformParent: {fileID: 0} m_Modifications: - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_RootOrder + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_LocalPosition.x - value: 0 + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 5 objectReference: {fileID: 0} - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_LocalPosition.y - value: 0 + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1783034934} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 72 objectReference: {fileID: 0} - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_LocalPosition.z - value: 0 + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 12 objectReference: {fileID: 0} - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_LocalRotation.w + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.size + value: 86 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.size + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 13.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y + value: 9.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 13.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 10.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 10.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 14.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 11.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 14.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 11.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 14.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 16.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 11.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 16.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 11.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 16.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 1.9999708 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 10.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 11.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 11.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x + value: 2.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 13.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 2.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 13.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 2.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 15.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y + value: 15.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x + value: 1.4999707 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y + value: 11.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x value: 1 objectReference: {fileID: 0} - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_LocalRotation.x - value: 0 + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y + value: 11.49997 objectReference: {fileID: 0} - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_LocalRotation.y - value: 0 + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x + value: 1.0000293 objectReference: {fileID: 0} - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_LocalRotation.z - value: 0 + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y + value: 11 objectReference: {fileID: 0} - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 15 objectReference: {fileID: 0} - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].y + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: -4928180775425244018, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 14.5 objectReference: {fileID: 0} - - target: {fileID: -144663663432654763, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} - propertyPath: m_Name - value: AutoLayers_4_Advanced + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x + value: 14.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x + value: 15.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x + value: 15.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y + value: 12.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].x + value: 18.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].x + value: 18.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].y + value: 10.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].x + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].y + value: 10.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].x + value: 17.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[4].x + value: 17 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[4].y + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[5].x + value: 16.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[5].y + value: 9.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[6].x + value: 14.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[6].y + value: 9.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[7].x + value: 14.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[7].y + value: 8.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[8].x + value: 7.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[8].y + value: 8.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[9].x + value: 7.4999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[9].y + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[0].x + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[0].y + value: 4.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[1].x + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[1].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[2].x + value: 11.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[2].y + value: 5.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[3].x + value: 11.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[3].y + value: 5.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[4].x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[4].y + value: 5.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[5].x + value: 12.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[5].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[6].x + value: 11.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[6].y + value: 6.0000296 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[7].x + value: 11.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[7].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[8].x + value: 10.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[8].y + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[9].x + value: 10.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[9].y + value: 6.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 17 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 12.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 16.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 16.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 16.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 15.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 15.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 15.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 14.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x + value: 13.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 14.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 13.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y + value: 13.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y + value: 13.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x + value: 12.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y + value: 11.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y + value: 11.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y + value: 10.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x + value: 9.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y + value: 10.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x + value: 9.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y + value: 11.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y + value: 11.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x + value: 10.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y + value: 13.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y + value: 13.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].y + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].x + value: 5.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].y + value: 13.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].y + value: 13.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].x + value: 5.0000296 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[40].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[40].y + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[41].x + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[41].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[42].x + value: 9.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[42].y + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[43].x + value: 9.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[43].y + value: 14.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[44].x + value: 10.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[44].y + value: 14.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[45].x + value: 10.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[45].y + value: 15.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[46].x + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[46].y + value: 15.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[47].x + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[47].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[48].x + value: 10.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[48].y + value: 16.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[49].x + value: 10.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[49].y + value: 16.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[50].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[50].y + value: 16.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[51].x + value: 4.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[51].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[52].x + value: 4.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[52].y + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[53].x + value: 4.4999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[53].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[54].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[54].y + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[55].x + value: 3.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[55].y + value: 13.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[56].x + value: 3.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[56].y + value: 13.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[57].x + value: 3.5000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[57].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[58].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[58].y + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[59].x + value: 4.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[59].y + value: 11.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[60].x + value: 4.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[60].y + value: 11.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[61].x + value: 4.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[61].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[62].x + value: 5.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[62].y + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[63].x + value: 5.5000296 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[63].y + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[64].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[64].y + value: 12.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[65].x + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[65].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[66].x + value: 8.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[66].y + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[67].x + value: 8.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[67].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[68].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[68].y + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[69].x + value: 9.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[69].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[70].x + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[70].y + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[71].x + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[71].y + value: 9.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 1.5000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 10.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[10].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[10].y + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[11].x + value: 5.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[11].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[12].x + value: 5.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[12].y + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[13].x + value: 5.4999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[13].y + value: 7.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[14].x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[14].y + value: 7.5000296 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[15].x + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[15].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[16].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[16].y + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[17].x + value: 4.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[17].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[18].x + value: 4.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[18].y + value: 4.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[19].x + value: 4.5000296 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[19].y + value: 4.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[20].x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[20].y + value: 4.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[21].x + value: 5.0000296 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[21].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[22].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[22].y + value: 5.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[23].x + value: 6.0000296 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[23].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[24].x + value: 6.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[24].y + value: 5.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[25].x + value: 6.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[25].y + value: 5.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[26].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[26].y + value: 5.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[27].x + value: 7.0000296 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[27].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[28].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[28].y + value: 6.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[29].x + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[29].y + value: 6.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[30].x + value: 8.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[30].y + value: 6.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[31].x + value: 8.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[31].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[32].x + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[32].y + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[33].x + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[33].y + value: 7.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[34].x + value: 14.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[34].y + value: 7.4999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[35].x + value: 14.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[35].y + value: 6.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[36].x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[36].y + value: 6.4999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[37].x + value: 15.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[37].y + value: 5.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[38].x + value: 15.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[38].y + value: 5.4999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[39].x + value: 15.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[39].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[40].x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[40].y + value: 4.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[41].x + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[41].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[42].x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[42].y + value: 3.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[43].x + value: 15.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[43].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[44].x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[44].y + value: 2.9999707 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[45].x + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[45].y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[46].x + value: 13.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[46].y + value: 1.0000294 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[47].x + value: 13.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[47].y + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[48].x + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[48].y + value: 1.5000294 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[49].x + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[49].y + value: 2.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[50].x + value: 13.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[50].y + value: 2.5000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[51].x + value: 13.500029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[51].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[52].x + value: 14.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[52].y + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[53].x + value: 14.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[53].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[54].x + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[54].y + value: 4.0000296 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[55].x + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[55].y + value: 5.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[56].x + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[56].y + value: 5.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[57].x + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[57].y + value: 3.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[58].x + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[58].y + value: 3.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[59].x + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[59].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[60].x + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[60].y + value: 2.9999707 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[61].x + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[61].y + value: 2.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[62].x + value: 11.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[62].y + value: 2.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[63].x + value: 11.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[63].y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[64].x + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[64].y + value: 1.9999708 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[65].x + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[65].y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[66].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[66].y + value: 1.0000294 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[67].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[67].y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[68].x + value: 2.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[68].y + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[69].x + value: 2.5000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[69].y + value: 3.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[70].x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[70].y + value: 3.5000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[71].x + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[71].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[72].x + value: 3.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[72].y + value: 4.000029 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[73].x + value: 3.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[73].y + value: 8.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[74].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[74].y + value: 8.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[75].x + value: 1.9999708 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[75].y + value: 9.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[76].x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[76].y + value: 9.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[77].x + value: 1.0000293 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[77].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[78].x + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[78].y + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[79].x + value: 1.4999707 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[79].y + value: 6.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[80].x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[80].y + value: 6.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[81].x + value: 0.9999706 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[81].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[82].x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[82].y + value: 5.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[83].x + value: 0.49997061 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[83].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[84].y + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[85].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[10].x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[10].y + value: 6.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[11].x + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[11].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[12].x + value: 9.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[12].y + value: 5.999971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[13].x + value: 9.49997 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[13].y + value: 5.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[14].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[14].y + value: 5.499971 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[15].x + value: 9.00003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[15].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[16].x + value: 9.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[16].y + value: 4.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[17].x + value: 9.50003 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[17].y + value: 4.5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 72 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.size + value: 86 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.size + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 165000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 165000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 125000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 125000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + value: 25000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + value: 25000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y + value: 155000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + value: 15000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + value: 155000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + value: 15000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X + value: 15000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X + value: 155000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X + value: 155000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y + value: 125000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y + value: 125000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].X + value: 185000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].Y + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].Y + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].X + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[4].X + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[4].Y + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[5].X + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[5].Y + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[6].X + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[6].Y + value: 85000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[7].X + value: 75000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[7].Y + value: 85000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[8].X + value: 75000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[8].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[9].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[9].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[0].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[0].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[1].X + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[1].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[2].X + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[2].Y + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[3].X + value: 125000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[3].Y + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[4].X + value: 125000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[4].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[5].X + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[5].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[6].X + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[6].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[7].X + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[7].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[8].X + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[8].Y + value: 65000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[9].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[9].Y + value: 65000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 165000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 165000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y + value: 155000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y + value: 155000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X + value: 125000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X + value: 125000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].Y + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].Y + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].Y + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].Y + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[38].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[38].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[40].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[40].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[41].X + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[41].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[42].X + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[42].Y + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[43].X + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[43].Y + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[44].X + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[44].Y + value: 155000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[45].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[45].Y + value: 155000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[46].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[46].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[47].X + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[47].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[48].X + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[48].Y + value: 165000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[49].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[49].Y + value: 165000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[50].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[50].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[51].X + value: 45000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[51].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[52].X + value: 45000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[52].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[53].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[53].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[54].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[54].Y + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[55].X + value: 35000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[55].Y + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[56].X + value: 35000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[56].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[57].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[57].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[58].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[58].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[59].X + value: 45000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[59].Y + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[60].X + value: 45000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[60].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[61].X + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[61].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[62].X + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[62].Y + value: 125000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[63].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[63].Y + value: 125000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[64].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[64].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[65].X + value: 85000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[65].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[66].X + value: 85000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[66].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[67].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[67].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[68].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[68].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[69].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[69].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[70].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[70].Y + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[71].X + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[71].Y + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 15000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 105000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[10].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[10].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[11].X + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[11].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[12].X + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[12].Y + value: 75000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[13].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[13].Y + value: 75000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[14].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[14].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[15].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[15].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[16].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[16].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[17].X + value: 45000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[17].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[18].X + value: 45000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[18].Y + value: 45000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[19].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[19].Y + value: 45000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[20].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[20].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[21].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[21].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[22].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[22].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[23].X + value: 65000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[23].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[24].X + value: 65000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[24].Y + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[25].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[25].Y + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[26].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[26].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[27].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[27].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[28].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[28].Y + value: 65000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[29].X + value: 85000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[29].Y + value: 65000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[30].X + value: 85000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[30].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[31].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[31].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[32].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[32].Y + value: 75000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[33].X + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[33].Y + value: 75000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[34].X + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[34].Y + value: 65000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[35].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[35].Y + value: 65000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[36].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[36].Y + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[37].X + value: 155000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[37].Y + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[38].X + value: 155000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[38].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[39].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[39].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[40].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[40].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[41].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[41].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[42].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[42].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[43].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[43].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[44].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[44].Y + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[45].X + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[45].Y + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[46].X + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[46].Y + value: 15000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[47].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[47].Y + value: 15000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[48].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[48].Y + value: 25000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[49].X + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[49].Y + value: 25000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[50].X + value: 135000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[50].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[51].X + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[51].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[52].X + value: 145000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[52].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[53].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[53].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[54].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[54].Y + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[55].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[55].Y + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[56].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[56].Y + value: 35000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[57].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[57].Y + value: 35000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[58].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[58].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[59].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[59].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[60].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[60].Y + value: 25000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[61].X + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[61].Y + value: 25000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[62].X + value: 115000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[62].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[63].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[63].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[64].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[64].Y + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[65].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[65].Y + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[66].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[66].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[67].X + value: 25000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[67].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[68].X + value: 25000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[68].Y + value: 35000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[69].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[69].Y + value: 35000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[70].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[70].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[71].X + value: 35000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[71].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[72].X + value: 35000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[72].Y + value: 85000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[73].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[73].Y + value: 85000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[74].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[74].Y + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[75].X + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[75].Y + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[76].X + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[76].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[77].X + value: 15000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[77].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[78].X + value: 15000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[78].Y + value: 65000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[79].X + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[79].Y + value: 65000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[80].X + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[80].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[81].X + value: 5000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[81].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[82].X + value: 5000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[82].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[83].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[85].X + value: 185000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[10].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[10].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[11].X + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[11].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[12].X + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[12].Y + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[13].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[13].Y + value: 55000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[14].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[14].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[15].X + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[15].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[16].X + value: 95000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[16].Y + value: 45000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[17].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7144356831497719248, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[17].Y + value: 45000000 + objectReference: {fileID: 0} + - target: {fileID: -1479890773007265112, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -1479890773007265112, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1783034936} + - target: {fileID: -675725071889135938, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} + - target: {fileID: -675725071889135938, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1783034933} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: -5765183769023986340, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} +--- !u!19719996 &1783034933 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 994968107745430946, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + m_PrefabInstance: {fileID: 1783034932} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1783034934 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3254856683424379972, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + m_PrefabInstance: {fileID: 1783034932} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1783034936 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3086344802356894102, guid: d1cd7e68262e84240954a9e14e11a2d0, type: 3} + m_PrefabInstance: {fileID: 1783034932} + m_PrefabAsset: {fileID: 0} --- !u!1001 &5595051104968945217 PrefabInstance: m_ObjectHideFlags: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_6_OptionalRules.ldtk.meta b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_6_OptionalRules.ldtk.meta index 7052acd7e..3330c55a4 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_6_OptionalRules.ldtk.meta +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_6_OptionalRules.ldtk.meta @@ -20,7 +20,7 @@ ScriptedImporter: _useParallax: 1 _intGridValues: - _key: IntGrid_1 - _asset: {instanceID: 0} + _asset: {fileID: 11400000, guid: 85c839224be7398449b593cedc9d81ca, type: 2} - _key: IntGrid_2 _asset: {instanceID: 0} _entities: [] diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_6_OptionalRules/Atlas_AutoLayers_6_OptionalRules.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_6_OptionalRules/Atlas_AutoLayers_6_OptionalRules.spriteatlas index 437585dc9..cc2293b16 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_6_OptionalRules/Atlas_AutoLayers_6_OptionalRules.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_6_OptionalRules/Atlas_AutoLayers_6_OptionalRules.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_7_Biomes.ldtk.meta b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_7_Biomes.ldtk.meta index 5c1bd8f5a..0663f9237 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_7_Biomes.ldtk.meta +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_7_Biomes.ldtk.meta @@ -20,7 +20,7 @@ ScriptedImporter: _useParallax: 1 _intGridValues: - _key: IntGrid_1 - _asset: {instanceID: 0} + _asset: {fileID: 11400000, guid: 85c839224be7398449b593cedc9d81ca, type: 2} - _key: IntGrid_2 _asset: {instanceID: 0} _entities: [] diff --git a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_7_Biomes/Atlas_AutoLayers_7_Biomes.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_7_Biomes/Atlas_AutoLayers_7_Biomes.spriteatlas index c7595f87c..b5b2f658b 100644 --- a/Assets/LDtkUnity/Samples~/Samples/AutoLayers_7_Biomes/Atlas_AutoLayers_7_Biomes.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/AutoLayers_7_Biomes/Atlas_AutoLayers_7_Biomes.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/Entities/Atlas_Entities.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/Entities/Atlas_Entities.spriteatlas index e5f931d72..07682c94f 100644 --- a/Assets/LDtkUnity/Samples~/Samples/Entities/Atlas_Entities.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/Entities/Atlas_Entities.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles.ldtk.meta b/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles.ldtk.meta index a4a759507..45956f78b 100644 --- a/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles.ldtk.meta +++ b/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles.ldtk.meta @@ -20,7 +20,7 @@ ScriptedImporter: _useParallax: 1 _intGridValues: - _key: IntGrid_1 - _asset: {instanceID: 0} + _asset: {fileID: 11400000, guid: 85c839224be7398449b593cedc9d81ca, type: 2} _entities: [] _enumGenerate: 0 _enumPath: diff --git a/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles/SeparateLevelFiles.unity b/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles/SeparateLevelFiles.unity index 8b6bb8722..fdf4901e8 100644 --- a/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles/SeparateLevelFiles.unity +++ b/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles/SeparateLevelFiles.unity @@ -42,7 +42,8 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 12 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 m_GISettings: serializedVersion: 2 m_BounceScale: 1 @@ -138,10 +139,6 @@ PrefabInstance: propertyPath: m_Name value: World_Level_2 objectReference: {fileID: 0} - - target: {fileID: -3104023372312138364, guid: 3217e579c73a50f4487cf2e0dc11663b, type: 3} - propertyPath: k__BackingField - value: - objectReference: {fileID: 1442460739} - target: {fileID: 7564719637734073638, guid: 3217e579c73a50f4487cf2e0dc11663b, type: 3} propertyPath: m_LocalPosition.x value: 36 @@ -260,18 +257,294 @@ PrefabInstance: propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 2 + objectReference: {fileID: 0} - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: objectReference: {fileID: 498069735} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 6.000029 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 5.999971 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 6.0000296 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x + value: 9.00003 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 4.000029 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x + value: 5.999971 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 5.000029 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -2777232616503624701, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 40000000 + objectReference: {fileID: 0} - target: {fileID: -2347750537554319130, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} propertyPath: m_Name value: World_Level_0 objectReference: {fileID: 0} - - target: {fileID: 241495910497654944, guid: d4ae25d8a2fe86f4cba6dc8a09558e70, type: 3} - propertyPath: k__BackingField - value: - objectReference: {fileID: 1442460739} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] @@ -306,10 +579,6 @@ PrefabInstance: serializedVersion: 3 m_TransformParent: {fileID: 1442460740} m_Modifications: - - target: {fileID: -7996495354863090219, guid: 80a3cafb2cb429c448af6e81acfeb124, type: 3} - propertyPath: k__BackingField - value: - objectReference: {fileID: 1442460739} - target: {fileID: -3714246105981959234, guid: 80a3cafb2cb429c448af6e81acfeb124, type: 3} propertyPath: m_LocalPosition.x value: 18 @@ -470,17 +739,6 @@ PrefabInstance: addedObject: {fileID: 124797146} m_AddedComponents: [] m_SourcePrefab: {fileID: -5765183769023986340, guid: 5004ec4131da3c742a8244733177bdd6, type: 3} ---- !u!114 &1442460739 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 8176408636749006107, guid: 5004ec4131da3c742a8244733177bdd6, type: 3} - m_PrefabInstance: {fileID: 1442460738} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fd8000a2945d406e823c496c3f7371fb, type: 3} - m_Name: - m_EditorClassIdentifier: --- !u!4 &1442460740 stripped Transform: m_CorrespondingSourceObject: {fileID: -6311630983770651652, guid: 5004ec4131da3c742a8244733177bdd6, type: 3} diff --git a/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles/SeparateLevelFiles_Config.ldtkc b/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles/SeparateLevelFiles_Config.ldtkc new file mode 100644 index 000000000..3836910ef --- /dev/null +++ b/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles/SeparateLevelFiles_Config.ldtkc @@ -0,0 +1,21 @@ +{ + "PixelsPerUnit": 16, + "CustomLevelPrefab": { + "instanceID": 0 + }, + "IntGridValueColorsVisible": true, + "UseCompositeCollider": true, + "GeometryType": 0, + "CreateBackgroundColor": true, + "CreateLevelBoundsTrigger": false, + "UseParallax": true, + "IntGridValues": [ + { + "_key": "IntGrid_1", + "_asset": { + "instanceID": 22226 + } + } + ], + "Entities": [] +} \ No newline at end of file diff --git a/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles/SeparateLevelFiles_Config.ldtkc.meta b/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles/SeparateLevelFiles_Config.ldtkc.meta new file mode 100644 index 000000000..9ef0903a1 --- /dev/null +++ b/Assets/LDtkUnity/Samples~/Samples/SeparateLevelFiles/SeparateLevelFiles_Config.ldtkc.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f2c9341434075824f9272b2c60353b71 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: e306d4530b9e4685b6ed80f056cbdfa5, type: 3} diff --git a/Assets/LDtkUnity/Samples~/Samples/Test_file_for_API_showing_all_features.ldtk.meta b/Assets/LDtkUnity/Samples~/Samples/Test_file_for_API_showing_all_features.ldtk.meta index 41c63ff57..de3fe989d 100644 --- a/Assets/LDtkUnity/Samples~/Samples/Test_file_for_API_showing_all_features.ldtk.meta +++ b/Assets/LDtkUnity/Samples~/Samples/Test_file_for_API_showing_all_features.ldtk.meta @@ -20,7 +20,7 @@ ScriptedImporter: _useParallax: 1 _intGridValues: - _key: IntGrid_8px_grid_1 - _asset: {instanceID: 0} + _asset: {fileID: 11400000, guid: 85c839224be7398449b593cedc9d81ca, type: 2} - _key: IntGrid_without_rules_1 _asset: {instanceID: 0} - _key: IntGrid_without_rules_2 @@ -28,7 +28,7 @@ ScriptedImporter: - _key: IntGrid_without_rules_3 _asset: {instanceID: 0} - _key: IntGrid_with_rules_1 - _asset: {instanceID: 0} + _asset: {fileID: 11400000, guid: 85c839224be7398449b593cedc9d81ca, type: 2} _entities: - _key: EntityFieldsTest _asset: {fileID: 8271057754295682963, guid: 8edc4af9ae4379948ac2d95a7603e233, type: 3} diff --git a/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example.ldtk.meta b/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example.ldtk.meta index 345052245..857e6b002 100644 --- a/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example.ldtk.meta +++ b/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example.ldtk.meta @@ -20,9 +20,9 @@ ScriptedImporter: _useParallax: 1 _intGridValues: - _key: Collisions_1 - _asset: {instanceID: 0} + _asset: {fileID: 11400000, guid: 85c839224be7398449b593cedc9d81ca, type: 2} - _key: Collisions_3 - _asset: {instanceID: 0} + _asset: {fileID: 11400000, guid: 85c839224be7398449b593cedc9d81ca, type: 2} - _key: Collisions_2 _asset: {instanceID: 0} _entities: diff --git a/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example/Atlas_Typical_2D_platformer_example.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example/Atlas_Typical_2D_platformer_example.spriteatlas index 1d990d5e8..a272b7e35 100644 --- a/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example/Atlas_Typical_2D_platformer_example.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example/Atlas_Typical_2D_platformer_example.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example/Typical_2D_platformer_example.unity b/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example/Typical_2D_platformer_example.unity index 43deaaddc..248a61b78 100644 --- a/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example/Typical_2D_platformer_example.unity +++ b/Assets/LDtkUnity/Samples~/Samples/Typical_2D_platformer_example/Typical_2D_platformer_example.unity @@ -42,7 +42,8 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 12 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 m_GISettings: serializedVersion: 2 m_BounceScale: 1 @@ -126,59 +127,2939 @@ PrefabInstance: serializedVersion: 3 m_TransformParent: {fileID: 0} m_Modifications: + - target: {fileID: -8167084231605579800, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8167084231605579800, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245818} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245828} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 28 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size + value: 28 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 52.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 52.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 21 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 45 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 20.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 45.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 46 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 17.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 46.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 52 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 52.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 16.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 14.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x + value: 18.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 16.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 20.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x + value: 23 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y + value: 17.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x + value: 23.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y + value: 17 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x + value: 24 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y + value: 16.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x + value: 24.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 52.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 52.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x + value: 51 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x + value: 50.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x + value: 50 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x + value: 49.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x + value: 49 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x + value: 48.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].x + value: 46 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].y + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].x + value: 45.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].x + value: 24.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].x + value: 24.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].x + value: 19 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].y + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].x + value: 19.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[4].x + value: 22 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[4].y + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[5].x + value: 22.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[5].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[6].x + value: 23 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[6].y + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[7].x + value: 23.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[7].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[0].x + value: 19.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[1].x + value: 19.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[1].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[2].x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[2].y + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[3].x + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[3].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[4].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[4].y + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[5].x + value: 7.0000296 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[5].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[6].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[6].y + value: 4.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[7].x + value: 9.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 28 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 16.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 28.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 17 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x + value: 29 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y + value: 17.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x + value: 29.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].x + value: 31 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y + value: 18.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x + value: 31.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].y + value: 19 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].x + value: 33 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].y + value: 18.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].x + value: 33.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].x + value: 34 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].y + value: 17.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].x + value: 34.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[20].x + value: 39 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[20].y + value: 16.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[21].x + value: 39.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[21].y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[22].x + value: 44 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[22].y + value: 18.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[23].x + value: 43.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[23].y + value: 21 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[24].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[24].y + value: 20.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[25].x + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[25].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[26].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[26].y + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[27].x + value: 7.0000296 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[27].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].x + value: 45 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].x + value: 44.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].x + value: 44 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].y + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].x + value: 43.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].x + value: 39 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].x + value: 38.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].x + value: 34 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].y + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].x + value: 33.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[18].x + value: 26 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[18].y + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[19].x + value: 26.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[19].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[20].x + value: 27 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[20].y + value: 5.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[21].x + value: 27.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[21].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[22].x + value: 29 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[22].y + value: 5.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[23].x + value: 29.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[23].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[24].x + value: 33 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[24].y + value: 5.9999704 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[25].x + value: 32.999973 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[25].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[26].x + value: 21 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[26].y + value: 2.999971 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[27].x + value: 21.000029 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size + value: 28 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size + value: 28 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 530000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 450000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 450000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 460000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 460000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 520000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 520000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 530000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X + value: 280000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + value: 530000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X + value: 510000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X + value: 510000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X + value: 500000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X + value: 500000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X + value: 490000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X + value: 490000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X + value: 460000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X + value: 460000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X + value: 450000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].X + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[4].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[4].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[5].X + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[5].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[6].X + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[6].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[7].X + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[7].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[0].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[0].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[1].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[1].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[2].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[2].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[3].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[3].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[4].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[4].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[5].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[5].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[6].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[7].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 280000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 290000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X + value: 290000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X + value: 310000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X + value: 310000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].Y + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X + value: 330000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].Y + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].X + value: 330000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].X + value: 340000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].X + value: 340000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].X + value: 390000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[20].X + value: 390000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[20].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[21].X + value: 440000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[21].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[22].X + value: 440000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[22].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[23].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[23].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[24].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[24].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[25].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[25].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[26].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[26].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[27].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[27].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X + value: 450000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].X + value: 440000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].X + value: 440000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].X + value: 390000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].X + value: 390000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].X + value: 340000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].X + value: 340000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].X + value: 260000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[18].X + value: 260000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[18].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[19].X + value: 270000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[19].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[20].X + value: 270000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[20].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[21].X + value: 290000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[21].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[22].X + value: 290000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[22].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[23].X + value: 330000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[23].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[24].X + value: 330000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[24].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[25].X + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[25].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[26].X + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -7499469021695345669, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[27].X + value: 530000000 + objectReference: {fileID: 0} + - target: {fileID: -6646099139168852393, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -6646099139168852393, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245827} - target: {fileID: -5816399898072796501, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} propertyPath: m_Name value: Typical_2D_platformer_example objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_RootOrder + - target: {fileID: -5479500987316388364, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5479500987316388364, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245826} + - target: {fileID: -4823085377903866443, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4823085377903866443, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245823} + - target: {fileID: -4203810962231744858, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4203810962231744858, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245833} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245820} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 28.999971 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 28.999971 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 16.000029 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 19.999971 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 11 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 5.0000296 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 290000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -3250228079371228577, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 290000000 + objectReference: {fileID: 0} + - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 913947171070993033, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 913947171070993033, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245830} + - target: {fileID: 1812341862887956464, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1812341862887956464, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245822} + - target: {fileID: 3909791191095592392, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3909791191095592392, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245832} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245824} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 38 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 21.999971 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 21.999971 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 21 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 1.0000294 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 21.000029 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 5.000029 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 24.999971 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 22 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 7.0000296 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 21.999971 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 7.0000296 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 15.000029 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x + value: 19 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + value: 17.999971 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x + value: 19.000029 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x + value: 22 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x + value: 22.000029 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x + value: 29 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x + value: 28.999971 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x + value: 26 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x + value: 26.000029 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x + value: 28 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y + value: 4.9999704 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x + value: 27.999971 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x + value: 23 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y + value: 0.99997073 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x + value: 23.000029 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x + value: 42 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x + value: 41.999973 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y + value: 22 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].y + value: 21.999971 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 38 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X + value: 290000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X + value: 290000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X + value: 260000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X + value: 260000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X + value: 280000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X + value: 280000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X + value: 420000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X + value: 420000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: 6373647325817879318, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_LocalPosition.x - value: 0 + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_LocalPosition.y - value: 0 + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245831} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 40 objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_LocalPosition.z - value: 0 + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 18.999971 objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_LocalRotation.w + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 18.999971 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 19.999971 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x value: 1 objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_LocalRotation.x - value: 0 + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_LocalRotation.y - value: 0 + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 1.0000294 objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_LocalRotation.z - value: 0 + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 13 objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 2 objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: -1226373076892276685, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 14.000029 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 6.000029 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 7.0000296 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 10.00003 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 14.000029 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 15.000029 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + value: 16.000029 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x + value: 7.0000296 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y + value: 18.000029 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x + value: 10.00003 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y + value: 19 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x + value: 13 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y + value: 18.999971 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y + value: 17.999971 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x + value: 13 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].y + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].x + value: 5.9999704 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].y + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 6576769892536687214, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 6898370419743146014, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6898370419743146014, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245825} + - target: {fileID: 7853222645007157210, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7853222645007157210, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245829} + - target: {fileID: 7972024595684009250, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7972024595684009250, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245821} + - target: {fileID: 8775967143189201531, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} + - target: {fileID: 8775967143189201531, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 502245819} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: -5765183769023986340, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} +--- !u!19719996 &502245818 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 8032728223770738309, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245819 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -5753498634847141919, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245820 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -5618046272364293936, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245821 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 175185957191840369, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245822 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 8740292937237121668, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245823 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3782046910067678957, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245824 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3176225363975031013, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245825 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -48682853631007636, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245826 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -5136943218578573930, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245827 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 1226644919783937566, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245828 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 7038390337028252059, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245829 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -4700207037605326354, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245830 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 3646685743185839649, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245831 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -6149874045862133759, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245832 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 3602849566387077588, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &502245833 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 7523280174149595343, guid: c5833b8a8be9ac94790c0787d5dc82dd, type: 3} + m_PrefabInstance: {fileID: 502245817} + m_PrefabAsset: {fileID: 0} --- !u!1001 &5595051104968945217 PrefabInstance: m_ObjectHideFlags: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example.ldtk.meta b/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example.ldtk.meta index 348e2c4f2..2a9ab7a74 100644 --- a/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example.ldtk.meta +++ b/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example.ldtk.meta @@ -20,7 +20,7 @@ ScriptedImporter: _useParallax: 1 _intGridValues: - _key: Collisions_1 - _asset: {instanceID: 0} + _asset: {fileID: 11400000, guid: 85c839224be7398449b593cedc9d81ca, type: 2} _entities: - _key: Player _asset: {fileID: 6519480702134864100, guid: cf2bf638a70f4274f8210e27c4912a19, type: 3} diff --git a/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example/Atlas_Typical_TopDown_example.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example/Atlas_Typical_TopDown_example.spriteatlas index 0f8210450..0a72bba64 100644 --- a/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example/Atlas_Typical_TopDown_example.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example/Atlas_Typical_TopDown_example.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example/Typical_TopDown_example.unity b/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example/Typical_TopDown_example.unity index 5fb8f31d8..ba81f8dc5 100644 --- a/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example/Typical_TopDown_example.unity +++ b/Assets/LDtkUnity/Samples~/Samples/Typical_TopDown_example/Typical_TopDown_example.unity @@ -42,7 +42,8 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 12 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 m_GISettings: serializedVersion: 2 m_BounceScale: 1 @@ -155,11 +156,11 @@ PrefabInstance: objectReference: {fileID: 1383354092} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 36 + value: 46 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 16 + value: 14 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x @@ -245,6 +246,10 @@ PrefabInstance: propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x value: 31.999971 objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 3 + objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x value: 31.999971 @@ -395,130 +400,210 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y - value: 16 + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x + value: 15 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y - value: 15.999971 + value: 14.999971 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x - value: 0.000029300001 + value: 14.999971 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y value: 7 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x value: 9 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y value: 7.0000296 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x value: 9.00003 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y value: 8 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x value: 10 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y value: 8.00003 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x value: 9.99997 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y value: 9 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x value: 9 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y value: 9.00003 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y value: 9.00003 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y value: 13 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].x + value: 9.00003 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].x value: 15 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].y value: 12.99997 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].x value: 14.999971 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].y value: 9 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[40].x value: 12 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[40].y value: 8.99997 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[41].x value: 12.00003 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[41].y value: 8 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[42].x value: 13 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[42].y value: 7.9999704 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[43].x value: 13.00003 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[43].y value: 7 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[44].x value: 14 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[44].y value: 6.9999704 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[45].x value: 14.000029 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[45].y value: 6 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} @@ -537,29 +622,17 @@ PrefabInstance: propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y value: 4 objectReference: {fileID: 0} - - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x - value: 7 - objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y - value: 4.0000296 + value: 3.999971 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x - value: 6.9999704 + value: 0.000029300001 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y - value: 5 - objectReference: {fileID: 0} - - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y - value: 4.999971 - objectReference: {fileID: 0} - - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x - value: 0.000029300001 + value: 3 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size @@ -567,11 +640,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 36 + value: 46 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 16 + value: 14 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X @@ -803,183 +876,263 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y - value: 160000000 + value: 150000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y - value: 160000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X + value: 150000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y - value: 70000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 150000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X - value: 90000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X + value: 150000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y - value: 70000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y + value: 140000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X - value: 90000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y + value: 140000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y - value: 80000000 + value: 70000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X - value: 100000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y - value: 80000000 + value: 70000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X - value: 100000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y - value: 90000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X - value: 90000000 + value: 100000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y - value: 90000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X - value: 90000000 + value: 100000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y - value: 130000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X - value: 150000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y - value: 130000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X - value: 150000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y - value: 90000000 + value: 100000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X - value: 120000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y - value: 90000000 + value: 100000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X - value: 120000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y - value: 80000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X - value: 130000000 + value: 20000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y - value: 80000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X - value: 130000000 + value: 20000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].Y - value: 70000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X - value: 140000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].Y - value: 70000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X - value: 140000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y - value: 60000000 + value: 120000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].X - value: 150000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y - value: 60000000 + value: 120000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 140000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].X + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 40000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].Y + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 70000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].X + value: 150000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 40000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].Y + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X - value: 70000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[38].X + value: 150000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y - value: 50000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[38].Y + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y - value: 50000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].X + value: 120000000 objectReference: {fileID: 0} - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X - value: 320000000 + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[40].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size - value: 4 + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[40].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[41].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[41].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[42].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[42].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[43].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[43].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[44].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[44].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[45].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[45].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: -8105001040995232608, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -5713657943697050344, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5713657943697050344, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140747} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: objectReference: {fileID: 817625624} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 30 + value: 40 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size @@ -995,79 +1148,83 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 15.999971 + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y + value: 1 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 15.999971 + value: 14.000029 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 4 + value: 3 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 11 + value: 16 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 4.0000296 + value: 3.0000293 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 10.99997 + value: 15.999971 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 9 + value: 4 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 10 + value: 14 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 8.99997 + value: 4.0000296 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 9.99997 + value: 13.999971 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 4 + value: 5 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 9 + value: 11 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 3.999971 + value: 5.0000296 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 9.00003 + value: 10.99997 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 3 + value: 9 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 12 + value: 10 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 2.9999707 + value: 8.99997 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 11.99997 + value: 9.99997 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 1 + value: 4 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x @@ -1167,15 +1324,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 7 + value: 9 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 1.0000294 + value: 3.999971 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 7.0000296 + value: 9.00003 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y @@ -1183,7 +1340,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 8 + value: 11 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y @@ -1191,7 +1348,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 7.9999704 + value: 11.00003 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y @@ -1199,35 +1356,35 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 3 + value: 13 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 4.0000296 + value: 3.9999704 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 3.0000293 + value: 12.99997 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 13 + value: 2 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x - value: 5 + value: 7 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 13.00003 + value: 2.0000293 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x - value: 5.0000296 + value: 7.0000296 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 14 + value: 3 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x @@ -1235,99 +1392,183 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y - value: 13.999971 + value: 3.0000293 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x - value: 8.00003 + value: 7.9999704 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y - value: 13 + value: 4 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x - value: 10 + value: 3 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y - value: 12.99997 + value: 4.0000296 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x - value: 10.00003 + value: 3.0000293 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y - value: 10 + value: 13 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x - value: 13 + value: 5 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y - value: 9.99997 + value: 13.00003 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x - value: 13.00003 + value: 5.0000296 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y - value: 7 + value: 14 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x - value: 16 + value: 8 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y - value: 7.0000296 + value: 13.999971 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x - value: 15.999971 + value: 8.00003 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y - value: 16 + value: 13 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x - value: 2 + value: 10 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y - value: 15.999971 + value: 12.99997 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x - value: 2.0000293 + value: 10.00003 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y - value: 3 + value: 10 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x - value: 6 + value: 13 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y - value: 2.9999707 + value: 9.99997 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y + value: 7.0000296 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y + value: 14.000029 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x + value: 3.9999704 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].y + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].y + value: 2.9999707 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].x value: 6.000029 objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].y + value: 1 + objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size value: 4 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 30 + value: 40 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size @@ -1343,83 +1584,83 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 160000000 + value: 140000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 40000000 + value: 30000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 110000000 + value: 160000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 40000000 + value: 30000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 110000000 + value: 160000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 90000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 100000000 + value: 140000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 90000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 100000000 + value: 140000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 40000000 + value: 50000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 90000000 + value: 110000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 40000000 + value: 50000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 90000000 + value: 110000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 30000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 120000000 + value: 100000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 30000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 120000000 + value: 100000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 10000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 70000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 10000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X @@ -1519,7 +1760,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 70000000 + value: 90000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y @@ -1527,7 +1768,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 80000000 + value: 110000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y @@ -1535,7 +1776,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 80000000 + value: 110000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y @@ -1543,7 +1784,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 30000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y @@ -1551,27 +1792,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 30000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 130000000 + value: 20000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 50000000 + value: 70000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 130000000 + value: 20000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X - value: 50000000 + value: 70000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 140000000 + value: 30000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X @@ -1579,7 +1820,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 140000000 + value: 30000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X @@ -1587,88 +1828,208 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y - value: 130000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X - value: 100000000 + value: 30000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y - value: 130000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X - value: 100000000 + value: 30000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y - value: 100000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X - value: 130000000 + value: 50000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y - value: 100000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X - value: 130000000 + value: 50000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y - value: 70000000 + value: 140000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X - value: 160000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y - value: 70000000 + value: 140000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X - value: 160000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y - value: 160000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X - value: 20000000 + value: 100000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y - value: 160000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X - value: 20000000 + value: 100000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y - value: 30000000 + value: 100000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X - value: 60000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y - value: 30000000 + value: 100000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X - value: 60000000 + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y + value: 70000000 objectReference: {fileID: 0} - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X value: 160000000 objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].Y + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[38].X + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[38].Y + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: -5347159080000713301, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].Y + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: -3808636697432427265, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -3808636697432427265, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140753} + - target: {fileID: -2687716353068658324, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -2687716353068658324, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140750} + - target: {fileID: -1728076258586097360, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -1728076258586097360, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140751} + - target: {fileID: 76380582683928941, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 76380582683928941, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140749} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 @@ -1683,7 +2044,7 @@ PrefabInstance: objectReference: {fileID: 633277314} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 26 + value: 22 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size @@ -1691,75 +2052,79 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 15.999971 + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y + value: 3 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 15.999971 + value: 12.99997 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 1 + value: 13 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 12 + value: 4 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 1.0000294 + value: 13.00003 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 12.00003 + value: 3.999971 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 3 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 13 + value: 15 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 3.0000293 + value: 14.999971 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 12.99997 + value: 0.000029300001 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 13 + value: 8 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 2 + value: 4 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 13.00003 + value: 8.00003 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 1.9999708 + value: 4.0000296 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 16 + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 7 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 15.999971 + value: 11.99997 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 0.000029300001 + value: 7.0000296 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 8 + value: 11 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x @@ -1843,15 +2208,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 4 + value: 8 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 8.00003 + value: 11.00003 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 4.0000296 + value: 8.00003 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y @@ -1859,7 +2224,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 7 + value: 12 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y @@ -1867,27 +2232,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 7.0000296 + value: 11.99997 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 11 + value: 8 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 8 + value: 11 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 11.00003 + value: 7.9999704 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 8.00003 + value: 11.00003 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 12 + value: 7 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x @@ -1895,7 +2260,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 11.99997 + value: 6.9999704 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x @@ -1903,63 +2268,35 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 8 + value: 4 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x - value: 11 + value: 4 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y - value: 7.9999704 + value: 4.0000296 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x - value: 11.00003 + value: 3.999971 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y - value: 7 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x - value: 12 + value: 6 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y - value: 6.9999704 + value: 5.999971 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x - value: 11.99997 + value: 0.000029300001 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y - value: 4.0000296 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x - value: 3.999971 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y - value: 5.999971 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x - value: 0.000029300001 + value: 3 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x @@ -1983,7 +2320,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 26 + value: 22 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size @@ -1991,75 +2328,75 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 160000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 10000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 120000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 10000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 120000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 130000000 + value: 150000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 130000000 + value: 150000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 130000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 20000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 130000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 20000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 160000000 + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 70000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 160000000 + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 70000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 80000000 + value: 110000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 40000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 80000000 + value: 110000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X @@ -2143,7 +2480,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 40000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y @@ -2151,7 +2488,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 70000000 + value: 120000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y @@ -2159,27 +2496,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 70000000 + value: 120000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 110000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 80000000 + value: 110000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 110000000 + value: 80000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 80000000 + value: 110000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 120000000 + value: 70000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X @@ -2187,7 +2524,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 120000000 + value: 70000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X @@ -2195,63 +2532,39 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 80000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X - value: 110000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 80000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X - value: 110000000 + value: 40000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X - value: 120000000 + value: 60000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X - value: 120000000 + value: 60000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y - value: 40000000 + value: 30000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X - value: 40000000 + value: 130000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X - value: 160000000 + value: 30000000 objectReference: {fileID: 0} - target: {fileID: 317029194810862860, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X @@ -2269,14 +2582,50 @@ PrefabInstance: propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y value: 60000000 objectReference: {fileID: 0} + - target: {fileID: 966035241565918552, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 966035241565918552, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140754} + - target: {fileID: 1158612478180149940, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1158612478180149940, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140748} + - target: {fileID: 3657538276182276762, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3657538276182276762, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140756} + - target: {fileID: 6050435504725686296, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6050435504725686296, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140755} + - target: {fileID: 6197668999864966399, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6197668999864966399, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140752} - target: {fileID: 6894882359807794914, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_Name value: Typical_TopDown_example objectReference: {fileID: 0} - - target: {fileID: 7855760403726017893, guid: b2366d5d5a599794788610eb07392d70, type: 3} - propertyPath: m_RootOrder - value: 1 - objectReference: {fileID: 0} - target: {fileID: 7855760403726017893, guid: b2366d5d5a599794788610eb07392d70, type: 3} propertyPath: m_LocalPosition.x value: 0 @@ -2317,11 +2666,87 @@ PrefabInstance: propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} + - target: {fileID: 8762159334923735049, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8762159334923735049, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140757} + - target: {fileID: 9036805234952213306, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9036805234952213306, guid: b2366d5d5a599794788610eb07392d70, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1873140758} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: -5765183769023986340, guid: b2366d5d5a599794788610eb07392d70, type: 3} +--- !u!19719996 &1873140747 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 1662451249463815902, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140748 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 359533679477157304, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140749 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 2806402838966894556, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140750 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 9071605621607879983, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140751 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 1783095035644624881, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140752 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3824772336030672801, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140753 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -7085281093027495012, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140754 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -47546602669985099, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140755 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3114542923556159529, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140756 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 4034050947874727760, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140757 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 3627094345000542817, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1873140758 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -5331111559562334650, guid: b2366d5d5a599794788610eb07392d70, type: 3} + m_PrefabInstance: {fileID: 1873140746} + m_PrefabAsset: {fileID: 0} --- !u!1001 &5595051104968945217 PrefabInstance: m_ObjectHideFlags: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/WorldMap_Free_layout.ldtk.meta b/Assets/LDtkUnity/Samples~/Samples/WorldMap_Free_layout.ldtk.meta index e1d9a3b81..636d02e11 100644 --- a/Assets/LDtkUnity/Samples~/Samples/WorldMap_Free_layout.ldtk.meta +++ b/Assets/LDtkUnity/Samples~/Samples/WorldMap_Free_layout.ldtk.meta @@ -20,7 +20,7 @@ ScriptedImporter: _useParallax: 1 _intGridValues: - _key: Collisions_1 - _asset: {instanceID: 0} + _asset: {fileID: 11400000, guid: 85c839224be7398449b593cedc9d81ca, type: 2} - _key: Collisions_2 _asset: {instanceID: 0} _entities: diff --git a/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/Atlas_WorldMap_GridVania_layout.spriteatlas b/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/Atlas_WorldMap_GridVania_layout.spriteatlas index 8a309c4ab..37d766f01 100644 --- a/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/Atlas_WorldMap_GridVania_layout.spriteatlas +++ b/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/Atlas_WorldMap_GridVania_layout.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/GridVania_Ladder.prefab b/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/GridVania_Ladder.prefab index d0f4269af..fc476957b 100644 --- a/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/GridVania_Ladder.prefab +++ b/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/GridVania_Ladder.prefab @@ -26,7 +26,7 @@ Transform: m_GameObject: {fileID: 392067290705676212} serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0.5, y: -0.5, z: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] @@ -76,11 +76,11 @@ SpriteRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: a0ec3126b00c562449ef4e99a4da11fc, type: 3} + m_Sprite: {fileID: 21300000, guid: e53a6a46125489046aa60333dd75bf44, type: 3} m_Color: {r: 1, g: 1, b: 1, a: 1} m_FlipX: 0 m_FlipY: 0 - m_DrawMode: 0 + m_DrawMode: 2 m_Size: {x: 1, y: 1} m_AdaptiveModeThreshold: 0.5 m_SpriteTileMode: 0 @@ -97,6 +97,8 @@ GameObject: m_Component: - component: {fileID: 5922710633718950015} - component: {fileID: 2594250568553743851} + - component: {fileID: 4694737798454055876} + - component: {fileID: 8922856363199415460} m_Layer: 0 m_Name: GridVania_Ladder m_TagString: Untagged @@ -136,3 +138,63 @@ MonoBehaviour: _setSortingOrder: 1 _setOpacity: 1 _setEntityColor: 1 +--- !u!114 &4694737798454055876 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6381717676898315408} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b0571a2f3dca1a4692e7ec77ada60c9, type: 3} + m_Name: + m_EditorClassIdentifier: + _renderer: {fileID: 2400257763338206285} + _collider: {fileID: 8922856363199415460} +--- !u!61 &8922856363199415460 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6381717676898315408} + m_Enabled: 1 + serializedVersion: 3 + m_Density: 1 + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_ForceSendLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_ForceReceiveLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_ContactCaptureLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_CallbackLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_IsTrigger: 1 + m_UsedByEffector: 0 + m_CompositeOperation: 0 + m_CompositeOrder: 0 + m_Offset: {x: 0.5, y: -0.5} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0, y: 0} + oldSize: {x: 0, y: 0} + newSize: {x: 0, y: 0} + adaptiveTilingThreshold: 0 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + m_Size: {x: 1, y: 1} + m_EdgeRadius: 0 diff --git a/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/WorldMap_GridVania_layout.unity b/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/WorldMap_GridVania_layout.unity index 1dce02075..a3e49c77f 100644 --- a/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/WorldMap_GridVania_layout.unity +++ b/Assets/LDtkUnity/Samples~/Samples/WorldMap_GridVania_layout/WorldMap_GridVania_layout.unity @@ -42,7 +42,8 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 12 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 m_GISettings: serializedVersion: 2 m_BounceScale: 1 @@ -262,2802 +263,3002 @@ PrefabInstance: serializedVersion: 3 m_TransformParent: {fileID: 0} m_Modifications: - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: + objectReference: {fileID: 1897186345} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 3.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 3.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 10.00003 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 7.0000296 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 32 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 9.00003 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 26 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x + value: 26.000029 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 22.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 22.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x + value: 22 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y + value: 4.0000296 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x + value: 21.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x + value: 14 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y + value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x + value: 13.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].y + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].x + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 9 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].y + value: 4.0000296 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].x + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].y + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size value: 3 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 8 + value: 12 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 10 + value: 14 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 12 + value: 4 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 280000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 140000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 280000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 140000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 260000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 160000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 260000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 160000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 320000000 + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 320000000 + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 260000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 40000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 260000000 + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 60000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 10000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 40000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 10000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 40000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 90000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 60000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 90000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 60000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 100000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 40000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 100000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 40000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 230000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 230000000 + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 60000000 + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 160000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 230000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 140000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 230000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 160000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 80000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 150000000 + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 100000000 + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 150000000 + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X - value: 100000000 + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X - value: 80000000 + - target: {fileID: -8534495198751419896, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y - value: 40000000 + - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X - value: 100000000 + - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186307} + - target: {fileID: -7306328637116056953, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y - value: 40000000 + - target: {fileID: -7306328637116056953, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186302} + - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X - value: 100000000 + - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1345812739} + - target: {fileID: -6599235394952688522, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -8537335732548642141, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].X - value: 160000000 + - target: {fileID: -6599235394952688522, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186336} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size - value: 1 + value: 2 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186320} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 20 + value: 40 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 22 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 25.999971 + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 26.000029 + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 2 - objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 27 + value: 48 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 2.0000293 + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 26.999971 + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 3 + value: 45 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 5 + value: 14 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 3.0000293 + value: 44.999973 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 4.999971 + value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 5 + value: 43 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 1 + value: 12 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 5.0000296 + value: 42.999973 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 1.0000294 + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 8 + value: 42 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 5 + value: 13 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 8.00003 + value: 41.999973 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 5.0000296 + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 41 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x + value: 3.999971 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y + value: 10.00003 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y value: 11 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x + value: 4.0000296 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y + value: 20 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 29 + value: 14 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 10.99997 + value: 40.999973 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 28.999971 + value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 3 + value: 36 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 28 + value: 5 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 2.999971 + value: 35.999973 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 28.000029 + value: 5.000029 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 2 + value: 35 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 29 + value: 6 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 1.9999707 + value: 34.999973 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 29.000029 + value: 6.000029 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 34 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x - value: 32 + value: 13 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 0.000029300001 + value: 33.999973 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x - value: 31.999971 + value: 12.99997 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 16 + value: 26 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 12 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y - value: 15.999971 + value: 25.999971 objectReference: {fileID: 0} - - target: {fileID: -8394691682893176976, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x - value: 0.000029300001 + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 24 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x + value: 14 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 23.999971 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 38 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 4 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 16 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x + value: 8 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 200000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 290000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 200000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y + value: 15 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 290000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x + value: 9 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 160000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y + value: 14.999971 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 240000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 160000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y + value: 8 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 240000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x + value: 6 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 120000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y + value: 7.9999704 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 220000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x + value: 6.000029 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 120000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y + value: 7 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 220000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x + value: 10 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 110000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y + value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 240000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 110000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y + value: 8 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 240000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x + value: 14 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 60000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y + value: 7.9999704 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 40000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x + value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 60000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y + value: 5 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x + value: 12 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 370000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y + value: 4.999971 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 290000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x + value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 370000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y + value: 4 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 290000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x + value: 11 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 230000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y + value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x + value: 10.99997 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 230000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y + value: 3 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 40000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].x + value: 7 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 210000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].y + value: 2.999971 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 60000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].x + value: 6.9999704 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 210000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].y + value: 2 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 60000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].x + value: 6 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 190000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].y + value: 1.9999708 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 80000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].x + value: 6.000029 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 190000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 9 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 80000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 210000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 100000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 21 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 210000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x + value: 7 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X - value: 100000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y + value: 21.000029 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 190000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x + value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X - value: 120000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y + value: 29 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 190000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].x + value: 8 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X - value: 120000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y + value: 29.000029 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y - value: 210000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x + value: 7.9999704 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X - value: 140000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].y + value: 31 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y - value: 210000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].x + value: 3 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X - value: 140000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].y + value: 31.000029 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y - value: 190000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].x + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X - value: 160000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].y + value: 41 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y - value: 190000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].x + value: 10 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X - value: 160000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].y + value: 41.00003 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y - value: 210000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].x + value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X - value: 180000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].y + value: 43 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y - value: 210000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[20].y + value: 42.999973 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X - value: 180000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[21].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X - value: 200000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 2 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y - value: 210000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 40 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X - value: 220000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size + value: 22 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y - value: 210000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X - value: 220000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y - value: 190000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X - value: 240000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 450000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y - value: 190000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X - value: 240000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 450000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y - value: 230000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X - value: 280000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 430000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y - value: 230000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X - value: 280000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 430000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].Y - value: 380000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 420000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].Y - value: 380000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 420000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y - value: 480000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y - value: 480000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 410000000 objectReference: {fileID: 0} - - target: {fileID: -7485026488945658280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].X - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 410000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 18 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 260000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 260000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 240000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 290000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 240000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 290000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 40000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 40000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 130000000 - objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 130000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 70000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 140000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 40000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 140000000 + value: 360000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 40000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 190000000 + value: 360000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 200000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 190000000 + value: 350000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 200000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 240000000 + value: 350000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 230000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 240000000 + value: 340000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 230000000 + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 320000000 + value: 340000000 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -7470200376961209131, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 320000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size - value: 2 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 1345812739} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 22 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 4 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 31.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 31.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 48 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 6 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 47.999973 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 5.9999704 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 43 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 42.999973 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 0.000029300001 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 27 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 3 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 27.000029 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 3.0000293 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 37 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 27 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 36.999973 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 26.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 27 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 4.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 45 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 4.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 48 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 47.999973 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 0.000029300001 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 45 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 23 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 26.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 23.000029 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].Y + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 26 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 27 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].Y + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 25.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 26.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 13 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 10 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 13.00003 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 9.99997 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].Y + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 17 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x - value: 5 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].Y + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 17.000029 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[38].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x - value: 4.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 21 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x - value: 3 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y - value: 21.000029 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x - value: 2.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y - value: 24 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y - value: 23.999971 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x - value: 0.000029300001 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 22 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 4 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].Y + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 320000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 480000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].Y + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 60000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 480000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].Y + value: 410000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 60000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].X + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].Y + value: 410000000 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].Y value: 430000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].Y value: 430000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 270000000 + - target: {fileID: -6083166798415886198, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[21].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 30000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 270000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 2 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 30000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186316} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 14 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 370000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 16 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 270000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 370000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y + value: 13 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 270000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 270000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 32 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 230000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 270000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 50000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 27 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 480000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 1 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 480000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 27.000029 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 450000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 1.0000294 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 50000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 28 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 450000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 14 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 230000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 27.999971 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 260000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 270000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 27 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 260000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 15 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 270000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 130000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 14.999971 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 100000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 18 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 130000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 100000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 170000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 12 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 50000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 10 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 170000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X - value: 50000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x + value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 210000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 17 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X - value: 30000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 9 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 210000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 17.000029 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X - value: 30000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y - value: 240000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 23 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y - value: 240000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x + value: 6 objectReference: {fileID: 0} - - target: {fileID: -6739461564713728795, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X - value: 320000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x + value: 6.000029 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y + value: 22 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 3 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x + value: 7 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 8 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y + value: 21.999971 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 8 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x + value: 6.9999704 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 10 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y + value: 18 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 320000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 12 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 320000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 17.999971 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 130000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 320000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 17 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 130000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 11 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 190000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 16.999971 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 220000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 11.00003 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 190000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 13 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 220000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 3 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 120000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 300000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 2.999971 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 120000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 22 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 300000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x + value: 2 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y - value: 120000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y + value: 22.000029 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X - value: 100000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x + value: 1.9999708 objectReference: {fileID: 0} - - target: {fileID: -6541790628413046888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X - value: 320000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y + value: 23 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 3 + value: 2 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size value: 14 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 6 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 18 + value: 16 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 40000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 200000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 200000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 240000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 320000000 + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 240000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 320000000 + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 320000000 + value: 280000000 + objectReference: {fileID: 0} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 320000000 + value: 280000000 + objectReference: {fileID: 0} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 220000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 40000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 220000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 40000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 260000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 160000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 260000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 320000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 210000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 290000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 210000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 290000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 160000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 300000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 160000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 300000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 90000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 320000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 320000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 280000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 60000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 280000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 160000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 210000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 160000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 210000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 260000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 120000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X - value: 260000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y - value: 60000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 140000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y - value: 60000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X - value: 140000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y - value: 120000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X - value: 200000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 40000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 70000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X - value: 200000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y - value: 160000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].X - value: 120000000 + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].Y + - target: {fileID: -5178035134334948993, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].X - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].Y - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].Y - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: -5196362781721432798, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size - value: 2 + value: 8 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 955221602} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + objectReference: {fileID: 1897186329} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 32 + value: 4 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 10 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 9.99997 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 10.00003 + value: 8 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 1 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.size value: 12 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 1.0000293 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 11.99997 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 2 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 2 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 2.0000293 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 2.0000293 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 5 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.size + value: 12 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 5 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 5.000029 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 4.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.size + value: 14 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 7 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 3 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 7.0000296 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 48 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 3.0000293 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 12 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 15 + value: 30 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 15.000029 + value: 32.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 2 + value: 29 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 15.000029 + value: 32.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 2.0000293 + value: 29.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 17 + value: 37 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 8 + value: 32 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 17.000029 + value: 36.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 7.9999704 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 18 + value: 34 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 2 + value: 31 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 18.000029 + value: 33.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 2.0000293 + value: 30.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 21 + value: 33 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 13 + value: 30 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 20.999971 + value: 32.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 13.00003 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 28 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 18 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].y + value: 32.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 15 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 25 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 17.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + value: 32.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 8 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x + value: 25.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 11.99997 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y + value: 37 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 8.00003 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x + value: 28 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 11 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y + value: 36.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 12 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].x + value: 22 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 11.00003 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].y + value: 32.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 12.00003 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].x + value: 21 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 12 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].y + value: 32.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 15 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].x + value: 21.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 11.99997 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].y + value: 37 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 14.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].x + value: 22 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 9 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].y + value: 36.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x - value: 8 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[4].x + value: 22.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 8.99997 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[4].y + value: 35 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x - value: 8.00003 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[5].x + value: 23 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 7 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[5].y + value: 35.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x - value: 15 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[6].x + value: 23.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y - value: 6.9999704 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[6].y + value: 37 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x - value: 14.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[7].x + value: 24 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y - value: 2 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[7].y + value: 36.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x - value: 13 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[8].x + value: 23.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y - value: 1.9999708 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[8].y + value: 32 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x - value: 13.00003 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[9].x + value: 23 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x - value: 16 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[9].y + value: 32.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y - value: 0.000029300001 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[0].x + value: 20 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x - value: 15.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[0].y + value: 32.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y - value: 32 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[1].x + value: 17 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y - value: 31.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[1].y + value: 32.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x - value: 0.000029300001 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[2].x + value: 17.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y - value: 25 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[2].y + value: 33 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x - value: 8 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[3].x + value: 19 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y - value: 25.000029 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[3].y + value: 33.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x - value: 8.00003 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[4].x + value: 18.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y - value: 29 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[4].y + value: 34 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x - value: 13 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[5].x + value: 17 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y - value: 28.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[5].y + value: 34.00003 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x - value: 12.99997 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[6].x + value: 17.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y - value: 22 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[6].y + value: 37 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y - value: 21.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[7].x + value: 20 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x - value: 0.000029300001 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[7].y + value: 36.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[8].x + value: 19.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 32 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[8].y + value: 36 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 10 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[9].x + value: 18 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 100000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[9].y + value: 35.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 10000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[0].x + value: 30.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 120000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[0].y + value: 35 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 10000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[1].x + value: 30.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 120000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[1].y + value: 36 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 20000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[2].x + value: 30 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 20000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[2].y + value: 35.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 20000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[3].x + value: 30.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 20000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[5].Array.data[3].y + value: 35 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 50000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[0].x + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 50000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[0].y + value: 33 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 50000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[1].x + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 50000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[1].y + value: 35 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 70000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[2].x + value: 26 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 30000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[2].y + value: 34.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 70000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[3].x + value: 26.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 30000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[6].Array.data[3].y + value: 33 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 120000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[0].x + value: 31 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 80000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[0].y + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 120000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[1].x + value: 20 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 20000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[1].y + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 150000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[2].x + value: 19.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 20000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[2].y + value: 22 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 170000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[3].x + value: 17 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 80000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[3].y + value: 22.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 170000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[4].x + value: 17.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 80000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[4].y + value: 30 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 180000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[5].x + value: 31 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 20000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[5].y + value: 29.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 180000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[6].x + value: 30.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 20000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[6].y + value: 26 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 210000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[7].x + value: 20 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 130000000 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 130000000 - objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 180000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[7].y + value: 25.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 150000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[8].x + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 180000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[8].y + value: 25 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 150000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[9].x + value: 23 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 150000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[9].y + value: 24.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 80000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[10].x + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 110000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[10].y + value: 33 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 120000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[11].x + value: 22 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 110000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[11].y + value: 32.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 120000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[10].x + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 120000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[10].y + value: 35 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 150000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[11].x + value: 20 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 120000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[4].Array.data[11].y + value: 34.999973 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 150000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[10].x + value: 23.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 90000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[10].y + value: 23 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 80000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[11].x + value: 24 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 90000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[11].y + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X - value: 80000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[12].x + value: 24.000029 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 70000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[12].y + value: 22 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X - value: 150000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[13].x + value: 31 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 70000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[7].Array.data[13].y + value: 21.999971 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X - value: 150000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 8 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y - value: 20000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X - value: 130000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size + value: 8 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y - value: 20000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size + value: 12 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X - value: 130000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X - value: 160000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.size + value: 12 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X - value: 160000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y - value: 320000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y - value: 320000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.size + value: 14 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y - value: 250000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X - value: 80000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y - value: 250000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X - value: 80000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X value: 290000000 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X - value: 130000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X value: 290000000 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X - value: 130000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y - value: 220000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y - value: 220000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X - value: 100000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y + value: 340000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size - value: 2 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 1855172383} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 12 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y + value: 340000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 12 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 6.9999704 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + value: 330000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y - value: 14 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 7.0000296 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y + value: 330000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 17 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 11 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 17.000029 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 11.00003 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 22 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 16 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 22.000029 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 15.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 24 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 8 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y + value: 350000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 24.000029 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 8.00003 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y + value: 350000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 29 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 32 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 29.000029 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 31.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 32 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 31.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 31.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 27 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 28 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 26.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y + value: 330000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 27.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].X + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 24 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 24 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].X + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 23.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 24.000029 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].X + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 22 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 30 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].X + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 21.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 29.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[0].X + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 5 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[0].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 7 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[1].X + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 5.0000296 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[1].Y + value: 330000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 6.9999704 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[2].X + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 12 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[2].Y + value: 330000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 31.999971 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[3].X + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 0.000029300001 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[3].Y + value: 340000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 14 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[4].X + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y - value: 11.99997 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[4].Y + value: 340000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x - value: 0.000029300001 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[5].X + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[5].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 12 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[6].X + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 12 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[6].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 70000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[7].X + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 170000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[7].Y + value: 360000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 110000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[8].X + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 170000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[8].Y + value: 360000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 110000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[9].X + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 220000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[9].Y + value: 350000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 160000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[0].X + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 220000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[0].Y + value: 360000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 160000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[1].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 240000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[1].Y + value: 360000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 80000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[2].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 240000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[2].Y + value: 350000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 80000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[3].X + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 290000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[5].Array.data[3].Y + value: 350000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 320000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[0].X + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 290000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[0].Y + value: 350000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 320000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[1].X + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 320000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[1].Y + value: 350000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 320000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[2].X + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 320000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[2].Y + value: 330000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[3].X value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 280000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[6].Array.data[3].Y + value: 330000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 270000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[0].X + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 280000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[0].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 240000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[1].X + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 240000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[1].Y + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 240000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[2].X + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[2].Y value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[3].X + value: 170000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[3].Y value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 220000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[4].X + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[4].Y value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 50000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[5].X + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 70000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[5].Y + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 50000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[6].X + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 70000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[6].Y + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 120000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[7].X + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 120000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[7].Y + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 140000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[8].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 70000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[8].Y + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 140000000 + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[9].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[9].Y + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y + value: 330000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].Y + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[10].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[10].Y + value: 350000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[11].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[4].Array.data[11].Y value: 320000000 objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[10].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[10].Y + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[11].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[11].Y + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[12].X + value: 310000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[12].Y + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[13].X + value: 310000000 + objectReference: {fileID: 0} + - target: {fileID: -4875798707534332929, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[7].Array.data[13].Y + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4528943311866105895, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 955221602} + - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4408804936427685734, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1855172383} - target: {fileID: -4317871015455350796, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_IsActive value: 0 @@ -3067,7533 +3268,7477 @@ PrefabInstance: value: 1 objectReference: {fileID: 0} - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 346250060} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 346250060} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + objectReference: {fileID: 1897186337} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 14 + value: 38 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 31.999971 + value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 31.999971 + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 32 + value: 5 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 25 + value: 6 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 31.999971 + value: 4.9999704 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 25.000029 - objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 19 + value: 6.000029 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 28 + value: 23 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 18.999971 + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 27.999971 + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 4 + value: 12 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 8 + value: 15 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 4.0000296 + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 7.9999704 + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 6 + value: 17 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 4 + value: 18 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 6.0000296 + value: 16.999971 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 4.0000296 + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 19 - objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 22 + value: 15 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 19.000029 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 18 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 21.999971 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 32 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 15 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 31.999971 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 0.000029300001 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 14.999971 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 19 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x value: 14 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 280000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 190000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 280000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 20 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 40000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 8 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 80000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 40000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 80000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y + value: 22 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 60000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x + value: 18 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 40000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y + value: 21.999971 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 60000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 10 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 40000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].y + value: 6.0000296 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 190000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 3 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 220000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + value: 6.0000296 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 190000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 220000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y + value: 9 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x + value: 8 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y + value: 9.00003 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y + value: 19 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x + value: 10 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 250000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y + value: 18.999971 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 20 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 250000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: -4179118672771639307, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 190000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 24 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 25 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 3 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 24.000029 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 12 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 25.000029 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 4 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 25 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 8 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x + value: 26 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 50000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 25.000029 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 90000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 26.000029 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 20000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 27 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 90000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 29 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 20000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 140000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 28.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 110000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 21 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 140000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 24 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 110000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 20.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 90000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 24.000029 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 230000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 19 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 90000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x + value: 31 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 230000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 18.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 100000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 30.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 16 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 100000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x + value: 27 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 160000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x + value: 27.000029 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 160000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y + value: 15 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x + value: 28 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 70000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y + value: 14.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 260000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x + value: 27.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 70000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y + value: 12 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 260000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x + value: 27 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y + value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 230000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 60000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y + value: 11 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 140000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x + value: 26 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 60000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y + value: 10.99997 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 140000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x + value: 26.000029 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 20000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x + value: 32 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 80000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 20000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 80000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y + value: 32 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 50000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x + value: 29 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 50000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 230000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x + value: 28.999971 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 80000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y + value: 28 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 50000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x + value: 26 objectReference: {fileID: 0} - - target: {fileID: -3937839815819815278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 80000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y + value: 28.000029 objectReference: {fileID: 0} - - target: {fileID: -3641563407521130705, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_IsActive - value: 0 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x + value: 25.999971 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y + value: 32 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].y + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size value: 3 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 16 + value: 38 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 4 + value: 8 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 14 + value: 6 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 30000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 140000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 40000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 140000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 160000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 160000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 50000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 180000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 100000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 180000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 100000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 160000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 110000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 160000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 110000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 140000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 120000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 140000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 80000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 140000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 70000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 140000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 70000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 120000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 80000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 120000000 + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 160000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 110000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 130000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 110000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 130000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 100000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 120000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 100000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 120000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 90000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 120000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 130000000 + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 160000000 + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 130000000 + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 160000000 + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 320000000 + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 320000000 + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 130000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 30000000 + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 130000000 - objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X - value: 30000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y - value: 120000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].Y - value: 120000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: -3276004858055464926, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].X - value: 160000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 10 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 6 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 320000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X + value: 270000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 80000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 50000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 80000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 50000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 110000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 290000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X + value: 270000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X + value: 270000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 290000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 30000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 250000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 30000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 250000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 230000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 30000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 50000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 30000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].Y + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 50000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 50000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].Y + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 50000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -3183041814333075668, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 230000000 + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: -3854431587177089531, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -3641563407521130705, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_IsActive + value: 0 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: + objectReference: {fileID: 1897186313} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 16 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 32 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 25.000029 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 19 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 28 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 18.999971 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 27.999971 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 4.0000296 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 5.0000296 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 6.0000296 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 4.0000296 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 19 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 22 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 19.000029 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 21.999971 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 32 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 + value: 1 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 18 - objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size value: 16 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 160000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 260000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 30000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 260000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 30000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 300000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 70000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 300000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 70000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 270000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 60000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 270000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 60000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 260000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 100000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 260000000 - objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 160000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 120000000 + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 100000000 + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 120000000 + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 100000000 + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 180000000 + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 90000000 + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 180000000 + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 90000000 + - target: {fileID: -3331183853113207445, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 220000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 100000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 220000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186311} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 40 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 100000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 111.99998 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 230000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 111.99998 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 60000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 16 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 230000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 109 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 60000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 220000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 108.99998 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 70000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 10 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 220000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 105 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 100000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 270000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 104.99997 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 90000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 9 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 270000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 104 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 90000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 300000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 103.99997 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 130000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 5 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 300000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 93 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 130000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 4.999971 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 180000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 92.99997 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 110000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 4 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 180000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 88 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X - value: 110000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 130000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 87.99997 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X - value: 160000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 3 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 130000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 67 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 70000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 180000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 66.99997 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 30000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 7 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 180000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x + value: 43 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X - value: 30000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 6.9999704 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y - value: 230000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 42.999973 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y - value: 230000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 5 objectReference: {fileID: 0} - - target: {fileID: -2980424773251510301, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X - value: 160000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 9 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 4.999971 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 3 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 4 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 10 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 5 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 16 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 6 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 5.0000296 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 290000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 9 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 140000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x + value: 10 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 450000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 140000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 450000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 8 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 110000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x + value: 11 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 480000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + value: 7.9999704 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 110000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x + value: 11.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 480000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y + value: 7 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 160000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x + value: 40 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 100000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y + value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 160000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x + value: 40.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 100000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y + value: 8 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 140000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x + value: 41 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 140000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 140000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x + value: 41.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 140000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y + value: 12 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 110000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x + value: 66 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 290000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 110000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x + value: 66.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 380000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y + value: 13 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 40000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x + value: 67 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 360000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 40000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x + value: 67.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 360000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y + value: 14 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 60000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x + value: 89 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 20000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 20000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 20000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 480000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 450000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 450000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 410000000 - objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 40000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y + value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 410000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x + value: 89.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 480000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y + value: 13 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 20000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x + value: 105 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 120000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 60000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x + value: 105.00003 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 120000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y + value: 14 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X - value: 60000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].x + value: 106 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y - value: 160000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].y + value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y - value: 160000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].x + value: 105.99997 objectReference: {fileID: 0} - - target: {fileID: -2642022603300143461, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X - value: 380000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].y + value: 16 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].y + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 3 + value: 1 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 20 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 18 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 6 + value: 40 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 160000000 + value: 1120000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 480000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 1090000000 + objectReference: {fileID: 0} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 480000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 1090000000 + objectReference: {fileID: 0} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 450000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 140000000 + value: 1050000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 450000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 140000000 + value: 1050000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 360000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 50000000 + value: 1040000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 360000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 50000000 + value: 1040000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 340000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 130000000 + value: 930000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 340000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 130000000 + value: 930000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 260000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 110000000 + value: 880000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 260000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 50000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 880000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 20000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 670000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 20000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 670000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 100000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 60000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 430000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 100000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 60000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 430000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 110000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 110000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 200000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 200000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 210000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 70000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 210000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 160000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 50000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 140000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X + value: 400000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 50000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 140000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X + value: 400000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 30000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 70000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X + value: 410000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 160000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 70000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X + value: 410000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 150000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 90000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X + value: 660000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 150000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X - value: 90000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X + value: 660000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 80000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X - value: 50000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X + value: 670000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 80000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X - value: 50000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X + value: 670000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y - value: 70000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X - value: 160000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X + value: 890000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y - value: 70000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 70000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X + value: 890000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 290000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 90000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X + value: 1050000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 290000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X - value: 90000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X + value: 1050000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y - value: 310000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X - value: 30000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].X + value: 1060000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y - value: 310000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X - value: 30000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].X + value: 1060000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].Y - value: 420000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].Y - value: 420000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -1780147088321902035, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].X - value: 50000000 + - target: {fileID: -2967673220090574726, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].X + value: 1120000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size value: 2 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + objectReference: {fileID: 1897186333} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 18 + value: 28 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 16 + value: 4 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 15.999971 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y - value: 13 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 15.999971 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 32 + value: 48 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 31.999971 + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 0.000029300001 + value: 5.9999704 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 26 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 3 + value: 43 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 26.000029 + value: 42.999973 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 3.0000293 + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 30 + value: 27 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 7 + value: 2 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 29.999971 + value: 27.000029 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 6.9999704 + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 27 + value: 28 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 6 + value: 3 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 26.999971 + value: 28.000029 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 6.000029 + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 26 + value: 37 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 15.999971 + value: 4.999971 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 45 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 15.999971 + value: 4.999971 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 12 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 10 + value: 48 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 12.00003 + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 9.99997 + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 18 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 9 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 18.000029 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 9.00003 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 22 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 10 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 22.000029 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 9.99997 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 23 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 6 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 22.999971 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 6.000029 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 22 + value: 45 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 10 + value: 27 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 26.000029 + value: 36.999973 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 9.99997 + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y value: 27 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 9 + value: 24 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 27.000029 + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 9.00003 + value: 24.000029 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 30 + value: 26 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 13 + value: 27 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 29.999971 + value: 25.999971 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 12.99997 + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 18 + value: 13 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x - value: 11 + value: 10 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 17.999971 + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x - value: 11.00003 + value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 13 + value: 17 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x - value: 7 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 5 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y - value: 21.999971 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 17.000029 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x - value: 6.9999704 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 4.999971 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y - value: 18 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 20 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 20.000029 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 3.999971 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 21 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x value: 3 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y - value: 18.000029 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + value: 21.000029 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x value: 2.999971 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y value: 23 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y - value: 22.999971 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x + value: 2 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y + value: 23.000029 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x + value: 1.9999708 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y + value: 23.999971 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size value: 2 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 18 + value: 28 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 16 + value: 4 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 160000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 320000000 + value: 480000000 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 320000000 + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 260000000 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 30000000 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 430000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 260000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 30000000 + value: 430000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 300000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 70000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 300000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 70000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 270000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 60000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 270000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 60000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 260000000 + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 100000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 260000000 + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 160000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 100000000 + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 100000000 + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 180000000 + value: 450000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 90000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 180000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 220000000 + value: 450000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 100000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 90000000 + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 90000000 + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 300000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 130000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 300000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 130000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 180000000 + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 110000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 180000000 + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X - value: 110000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 130000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X - value: 160000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 130000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 70000000 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 180000000 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 180000000 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -1324162672209413124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X - value: 160000000 + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -2913845423589011658, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: + objectReference: {fileID: 1897186305} + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 12 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 - objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 16 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 22 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size + value: 14 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 160000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 2.999971 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 320000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y + value: 13 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 320000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 250000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 14 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 60000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 4 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 250000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 60000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 220000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 19 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 80000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 11 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 220000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 18.999971 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 80000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 11.00003 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 290000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 14 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 130000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 12 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 290000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 130000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 150000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 13 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 120000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 16 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 150000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 100000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 20000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 32 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 80000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 7.9999704 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 20000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 14 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 80000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 7.9999704 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 40000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 16 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 60000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 7 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 40000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 60000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x + value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 20000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 14 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 30000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 20000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 30000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + value: 11 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 80000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x + value: 14 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 60000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y + value: 10.99997 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 80000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x + value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 60000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y + value: 10 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 60000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x + value: 13 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 80000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y + value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 60000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x + value: 12.99997 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 120000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y + value: 9 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 120000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x + value: 9 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 140000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y + value: 9.00003 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 120000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 140000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].y + value: 10 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 20000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].x + value: 5 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 130000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].y + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 20000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].x + value: 4.999971 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 130000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].y + value: 11 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 160000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 80000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 120000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 13 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 100000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].x + value: 2 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 120000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].y + value: 11.00003 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X - value: 100000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].x + value: 1.9999708 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y - value: 150000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].y + value: 12 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X - value: 80000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].y + value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y - value: 150000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X - value: 80000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 3 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].Y - value: 200000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 12 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X - value: 60000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].Y - value: 200000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size + value: 14 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].X - value: 60000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].Y - value: 120000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].X - value: 20000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].Y - value: 120000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].X - value: 20000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].Y - value: 220000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].Y - value: 220000000 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -1142052424325698296, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[21].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size - value: 3 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 215313613} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 18 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 10 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size - value: 20 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 2.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y - value: 7 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 3.0000293 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 18 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 4 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 18.000029 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 4.0000296 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 19 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 20 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 19.000029 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 20.000029 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 25 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 32 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 25.000029 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 31.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 32 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 31.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 0.000029300001 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 25 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 31.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 9 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 31.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 21 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 27 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 20.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 27.000029 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 20 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 30 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 19.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 29.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 16 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 29 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 15.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 29.000029 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 15 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 30 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 14.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 30.000029 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 9 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x - value: 31.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x - value: 31.999971 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y - value: 6 + - target: {fileID: -2806923024202772677, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x - value: 28 + - target: {fileID: -2473043493074187180, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y - value: 6.0000296 + - target: {fileID: -2473043493074187180, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186338} + - target: {fileID: -2437625984973316679, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x - value: 27.999971 - objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y - value: 16 + - target: {fileID: -2437625984973316679, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186332} + - target: {fileID: -2392680182227207032, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x - value: 21 + - target: {fileID: -2392680182227207032, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186325} + - target: {fileID: -2272468259193624280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y - value: 15.999971 + - target: {fileID: -2272468259193624280, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186330} + - target: {fileID: -1756205636647693985, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x - value: 21.000029 + - target: {fileID: -1756205636647693985, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186319} + - target: {fileID: -1268655285818839038, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y - value: 12 + - target: {fileID: -1268655285818839038, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186344} + - target: {fileID: -1061094304074511189, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x - value: 26 + - target: {fileID: -1061094304074511189, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186309} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y - value: 11.99997 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 2 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x - value: 25.999971 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186347} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].y - value: 6 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 22 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].x - value: 14 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].y - value: 6.0000296 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].x - value: 14.000029 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 48 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].y - value: 12 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 4 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 25.000029 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 30 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 4.0000296 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 26 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 17 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 16 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 25.999971 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 17.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 15.999971 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 18 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 21 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x + value: 26 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 4 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 21.000029 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 26.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 3.999971 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 19 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 24 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 27 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 23.999971 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x - value: 0.000029300001 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 7 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y + value: 22 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].x - value: 20 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x + value: 19 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].y - value: 12.00003 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y + value: 22.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].x - value: 19.999971 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].y - value: 16 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y + value: 30 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].x - value: 12 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x + value: 23 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].y - value: 15.999971 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y + value: 30.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].x - value: 11.99997 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 23.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].y - value: 2 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 31 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].x - value: 7 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 24 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].y - value: 2.0000293 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 31.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].x - value: 6.9999704 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x + value: 23.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].y - value: 12 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y + value: 37 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].x - value: 5 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x + value: 21 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].y - value: 11.99997 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y + value: 37.00003 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].x - value: 4.9999704 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].x + value: 21.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].y - value: 4 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y + value: 42 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[18].y - value: 3.999971 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x + value: 30 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[19].x - value: 0.000029300001 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].y + value: 41.999973 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 3 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].x + value: 29.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 18 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].y + value: 37 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 10 - objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 20 - objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 180000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].x + value: 27 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 40000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].y + value: 36.999973 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 180000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].x + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 40000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].y + value: 27 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 190000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].x + value: 23 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 200000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].y + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 190000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[20].x + value: 23.000029 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 200000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[20].y + value: 25 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 250000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[21].x + value: 30 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 320000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[21].y + value: 24.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 250000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 2 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 320000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 4 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 320000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size + value: 22 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 320000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 250000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 40000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 250000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 320000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 210000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 270000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 210000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 270000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 200000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 300000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 200000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 300000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 160000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 290000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 160000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 290000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 150000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 300000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 150000000 + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 300000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 90000000 + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 320000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 60000000 + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 280000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 60000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 280000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 160000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X value: 210000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 160000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X value: 210000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 120000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y + value: 420000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 260000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 120000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].Y + value: 420000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X - value: 260000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y - value: 60000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 140000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].X + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y - value: 60000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].Y + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X - value: 140000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].X + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y - value: 120000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].Y + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X - value: 200000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y - value: 120000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].Y + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 40000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 260000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].Y + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 260000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[20].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 160000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[20].Y + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 210000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[21].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 40000000 + - target: {fileID: -797006201029571938, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[21].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 210000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 40000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 2 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 240000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186341} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 44 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 240000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 6 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 70000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X - value: 30000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 70000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 20 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X - value: 200000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 30 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y - value: 160000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 19.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].X - value: 120000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 29.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].Y - value: 160000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 19 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].X - value: 120000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 29 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].Y - value: 20000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 18.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].X - value: 70000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 28.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].Y - value: 20000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 16 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].X - value: 70000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 25 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].Y - value: 120000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].X - value: 50000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 24.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].Y - value: 120000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 15 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].X - value: 50000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 24 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].Y - value: 40000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 14.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].Y - value: 40000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 23.999971 objectReference: {fileID: 0} - - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[19].X - value: 320000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 12 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 23 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 18 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 40 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 4 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 29 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 320000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 39.999973 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 480000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x + value: 29.000029 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 60000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 24 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 480000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 30 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 60000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 23.999971 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 430000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 30.000029 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 430000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 23 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 270000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 23 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 30000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 270000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 23.000029 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 30000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 11 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 370000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 24 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 270000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 10.99997 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 370000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 23.999971 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 270000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 6 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 130000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x + value: 4 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 100000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 6.0000296 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 130000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 50000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 21 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 480000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 6 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 480000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 20.999971 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 450000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 6.000029 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 50000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 20 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 450000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 8 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 100000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 170000000 - objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 170000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 50000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 21 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 210000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x + value: 10 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 30000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 20.999971 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 210000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 30000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 20 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 240000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x + value: 12 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 240000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: -208430761354511457, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X - value: 320000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y + value: 21 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size - value: 4 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x + value: 14 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 1665231330} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 4 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y + value: 20.999971 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 6 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x + value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size - value: 10 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y + value: 20 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.size - value: 4 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x + value: 16 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 31.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y - value: 23 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x + value: 16.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 31.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y + value: 21 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 32 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x + value: 18 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 26 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y + value: 20.999971 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 31.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 26.000029 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y + value: 20 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 23 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x + value: 20 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 22.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 23 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 22.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y + value: 21 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 32 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x + value: 22 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 31.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y + value: 20.999971 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 0.000029300001 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x + value: 22.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 25 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y + value: 20 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 21 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x + value: 24 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 24.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 21.000029 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x + value: 24.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y value: 23 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x - value: 31.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].x + value: 27 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x - value: 31.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].y + value: 23.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y - value: 6 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].x + value: 27.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x - value: 28 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].y + value: 24 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y - value: 6.0000296 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].x + value: 28 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x - value: 27.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[38].y + value: 24.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y - value: 16 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].x + value: 28.000029 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x - value: 20 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[39].y + value: 41 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y - value: 16.000029 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[40].x + value: 32 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x - value: 19.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[40].y + value: 41.00003 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y - value: 19 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[41].x + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x - value: 18 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[41].y + value: 48 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y - value: 19.000029 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[42].y + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x - value: 17.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[43].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].y - value: 22 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 2 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].y - value: 21.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 44 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].x - value: 0.000029300001 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size + value: 6 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].x - value: 31.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[0].y - value: 9 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].x - value: 31.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[1].y - value: 20 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].x - value: 30 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[2].y - value: 19.999971 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].x - value: 30.000029 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[3].Array.data[3].y - value: 9 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 4 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 4 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 6 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 10 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.size - value: 4 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 320000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 320000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 260000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 320000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 260000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 230000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 230000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 320000000 + value: 400000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X + value: 290000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 320000000 + value: 400000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X + value: 290000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 250000000 + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 210000000 + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 250000000 + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 210000000 + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 230000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 320000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 280000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 280000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 160000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 200000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 160000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 200000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 190000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 180000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 190000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X - value: 180000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y - value: 220000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y - value: 220000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X - value: 320000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].X - value: 320000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].Y + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].X - value: 300000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].Y + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].X - value: 300000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].Y - value: 90000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].X - value: 320000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].Y - value: 90000000 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size - value: 2 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 1055606293} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 32 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 20 + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X + value: 180000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].X + value: 270000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].X + value: 270000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[36].Y + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].X + value: 280000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].Y + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[38].X + value: 280000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[38].Y + value: 410000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].X + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[39].Y + value: 410000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[40].X + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[40].Y + value: 480000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[41].Y + value: 480000000 + objectReference: {fileID: 0} + - target: {fileID: -796807507268291667, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[43].X + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -496884818497306656, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 215313613} + - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 21734786327923845, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1665231330} + - target: {fileID: 22123496049358899, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22123496049358899, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186312} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186303} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 48 + value: 7 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 47.999973 + value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 0.000029300001 + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 45 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 14 + value: 4 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 44.999973 + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 13.999971 + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 43 + value: 13 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x value: 12 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 42.999973 + value: 12.99997 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 41 + value: 11 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 14 + value: 13 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 40.999973 + value: 10.99997 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 13.999971 + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 36 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 4.999971 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 16 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 4.999971 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 3 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 2 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 16 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 3.0000293 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 2.0000293 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 10 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 7 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 6 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x + value: 1 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 10.00003 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 5.999971 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 1.0000294 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 11 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 8 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 4 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 2 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 11.00003 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 4.0000296 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 20 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 9 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 10 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 7 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 20.000029 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 9.99997 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 21 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 35.999973 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 5.000029 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 34 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 13 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 33.999973 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 12.99997 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 26 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 11 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 25.999971 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 11.00003 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 24 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x - value: 14 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 23.999971 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x - value: 13.999971 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 16 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x - value: 7 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y - value: 15.999971 + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y - value: 15 + value: 6 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x - value: 9 + value: 8 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y - value: 14.999971 + value: 5.9999704 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x - value: 8.99997 + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y - value: 8 + value: 5 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x - value: 5 + value: 12 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y - value: 7.9999704 + value: 4.9999704 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x - value: 5.000029 + value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y - value: 7 + value: 2 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x - value: 11 + value: 4 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y - value: 7.0000296 + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x - value: 11.00003 + value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y - value: 8 + value: 3 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x - value: 14 + value: 3 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y - value: 7.9999704 + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x - value: 13.999971 + value: 2.999971 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x - value: 11 + value: 4 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y - value: 4.999971 + value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x - value: 10.99997 + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y - value: 3 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x - value: 6 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 30 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y - value: 2.999971 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x - value: 6.000029 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x - value: 7 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y - value: 21.000029 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x - value: 7.0000296 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y - value: 29 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x - value: 9 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y - value: 29.000029 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x - value: 8.99997 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y - value: 31 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].x - value: 3 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y - value: 31.000029 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x - value: 3.0000293 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].y - value: 41 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].x - value: 11 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].y - value: 41.00003 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].x - value: 10.99997 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].y - value: 43 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].y - value: 42.999973 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].x - value: 0.000029300001 + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 32 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 20 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 480000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 480000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 450000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 450000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 430000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 430000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 410000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 410000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 360000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 360000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 20000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 20000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 50000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 340000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 130000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 340000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 130000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 260000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 110000000 + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 260000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 110000000 + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 240000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 140000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 240000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X - value: 140000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 160000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 160000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y - value: 150000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X - value: 90000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y - value: 150000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X - value: 90000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y - value: 80000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X - value: 50000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y - value: 80000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X - value: 50000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y - value: 70000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X - value: 110000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y - value: 70000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X - value: 110000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y - value: 80000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X - value: 140000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y - value: 80000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X - value: 140000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X - value: 110000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y - value: 30000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 120121901977415363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 290000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 290000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y - value: 310000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y - value: 310000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X - value: 30000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].Y - value: 410000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].Y - value: 410000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].X - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].Y - value: 430000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].Y - value: 430000000 - objectReference: {fileID: 0} - - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].X - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: 787752900565200454, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 787752900565200454, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_RootOrder - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size value: 3 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 413179185} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + objectReference: {fileID: 1897186339} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 16 + value: 22 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 12 + value: 8 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size - value: 8 + value: 28 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 31.999971 + value: 1.9999708 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 31.999971 + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 32 + value: 8 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 29 + value: 3 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 31.999971 + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 28.999971 + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 28 + value: 19 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 27 + value: 19 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 27.999971 + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 27.000029 + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 27 + value: 20 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 29 + value: 20 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 26.999971 + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 28.999971 + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 21 + value: 25 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 23 + value: 32 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 20.999971 + value: 25.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 23.000029 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 19 + value: 32 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 3.999971 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 4.0000296 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 8 + value: 21 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 8 + value: 28 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 8.00003 + value: 20.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 8.00003 + value: 28.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 22 + value: 20 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 18 + value: 30 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 21.999971 + value: 19.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 18.000029 + value: 30.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 14 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 20 + value: 31 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 14.000029 + value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 20.000029 + value: 31.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 24 - objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 26 - objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 24.000029 - objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 25.999971 - objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 32 + value: 9 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x - value: 22.999971 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x - value: 22.999971 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y - value: 12 + value: 6 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x - value: 16 + value: 28 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y - value: 12.00003 + value: 6.0000296 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x - value: 15.999971 + value: 27.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y - value: 20 + value: 16 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x - value: 10 + value: 21 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y - value: 19.999971 + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x - value: 9.99997 + value: 21.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y - value: 6 + value: 13 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x - value: 6 + value: 22 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y - value: 5.999971 + value: 12.99997 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x - value: 6.000029 + value: 22.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 31 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].y + value: 12 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].x + value: 26 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].y + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].x + value: 25.999971 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 18.999971 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 30.999971 + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 16 + value: 25 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 28 + value: 3 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 15.999971 + value: 25.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 27.999971 + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 12 + value: 26 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 26 + value: 16 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 11.99997 + value: 25.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 26.000029 + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y - value: 31.999971 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 21 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x - value: 0.000029300001 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 4 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 3 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 21.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 12 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 16 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 23 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 8 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 3 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 40000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 23.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 80000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 2.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 80000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 24 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 80000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 23.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 80000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 220000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 7 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 180000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].x + value: 14 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 220000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].y + value: 6.0000296 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 180000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].x + value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 140000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].y + value: 12 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 200000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].x + value: 19 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 140000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].y + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 200000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].x + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 240000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].y + value: 13 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 260000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].x + value: 20 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 240000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].y + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 260000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].x + value: 19.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 320000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].y + value: 15 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 320000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].x + value: 19 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 320000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].y + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 320000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].x + value: 18.999971 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 290000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].y + value: 16 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[18].x + value: 13 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[18].y + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[19].x + value: 12.99997 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[19].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[20].x + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[20].y + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[21].x + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[21].y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[22].x + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[22].y + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[23].x + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[23].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[24].x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[24].y + value: 10.99997 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[25].x + value: 4.9999704 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[25].y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[26].y + value: 3.999971 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[27].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 22 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size + value: 28 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X + value: 280000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 290000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 280000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 270000000 + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 280000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 270000000 + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 270000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 290000000 + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 270000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 290000000 + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 210000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 230000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 310000000 - objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 190000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 230000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 120000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 160000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 120000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 160000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 200000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 100000000 + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 200000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 100000000 + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 60000000 + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 60000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 60000000 + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X - value: 60000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 230000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 40000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 310000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 160000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 280000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 160000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X - value: 280000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y - value: 120000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 250000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y - value: 120000000 + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y + value: 210000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 30000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X + value: 140000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].Y + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].X + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].X + value: 190000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[18].X + value: 130000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[18].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[19].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[19].Y + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[20].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[20].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[21].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[21].Y + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[22].X + value: 70000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[22].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[23].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[23].Y + value: 110000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[24].X + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[24].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[25].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: 218232942130780310, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[27].X value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size - value: 3 + value: 1 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 1178283498} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + objectReference: {fileID: 1897186308} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 14 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size value: 16 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 28.999971 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y - value: 11 + value: 25.999971 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 29.000029 + value: 25.999971 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 14 + value: 3 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 45 + value: 5 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 13.999971 + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 45.00003 + value: 4.999971 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 11 + value: 5 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 48 + value: 1 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 11.00003 + value: 5.0000296 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 47.999973 + value: 1.0000294 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 16 + value: 8 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 10 + value: 4 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 15.999971 + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 10.00003 + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 14 + value: 9 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 13 + value: 5 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 14.000029 + value: 9.00003 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 13.00003 + value: 5.0000296 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 15 + value: 11 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 37.999973 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 29 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 37.999973 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 10.99997 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 4 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 29.000029 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 36 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 32 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 4.0000296 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 35.999973 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 6 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 16 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 23 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 5.999971 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 22.999971 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 3 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 2 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 3.0000293 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 2.0000293 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 11 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 6.000029 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 10.99997 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 8 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x - value: 47.999973 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x - value: 47.999973 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y - value: 8 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x - value: 45 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y - value: 7.9999704 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x - value: 44.999973 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x - value: 41 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y - value: 3.999971 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x - value: 41.00003 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 16 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 14.999971 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 15.999971 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 12 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 10 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 11.99997 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 10.00003 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 11 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x - value: 2 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y - value: 8.00003 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x - value: 2.0000293 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y - value: 12 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y - value: 12.00003 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x - value: 5.999971 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y - value: 16 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y - value: 15.999971 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 3 + value: 1 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 14 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size value: 16 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 290000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 140000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 450000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 140000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 450000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 110000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 480000000 + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 110000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 480000000 + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 160000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 100000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 160000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 100000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 140000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 130000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 140000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 130000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 150000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 160000000 + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 150000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 380000000 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 40000000 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 360000000 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 40000000 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 360000000 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 60000000 + - target: {fileID: 368043494773310739, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 230000000 + - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 60000000 + - target: {fileID: 424365603820297535, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1055606293} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 230000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.size + value: 3 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 30000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186326} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size + value: 16 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 20000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size + value: 12 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 30000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size + value: 18 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 20000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x + value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 60000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 110000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y + value: 1 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 60000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 13 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 110000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y + value: 0.9999706 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 80000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 20000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 16 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 80000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 480000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 80000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 32 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 450000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 80000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 450000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 25 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 40000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 7 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 410000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 25.000029 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 40000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 410000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 26 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 480000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x + value: 15 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 160000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 120000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x + value: 2 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 100000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 120000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 100000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y + value: 17 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 110000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x + value: 7 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 290000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 17.000029 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 110000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 6.9999704 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 20000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 18 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 120000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 2 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 60000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 120000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X - value: 60000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y + value: 21 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y - value: 160000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x + value: 13 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y - value: 160000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y + value: 20.999971 objectReference: {fileID: 0} - - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X - value: 380000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size - value: 1 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y + value: 19 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 36 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x + value: 14 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 111.99998 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y + value: 18.999971 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 111.99998 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 15 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 16 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].y + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 109 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 2 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 15.999971 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 108.99998 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x + value: 2.0000293 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 10 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y + value: 5 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 104 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x + value: 4 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 9.99997 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y + value: 5.000029 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 103.99997 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x + value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 5 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y + value: 7 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 93 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x + value: 3 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 4.999971 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y + value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 92.99997 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 4 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y + value: 12 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 88 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x + value: 9 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 3.999971 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].y + value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 87.99997 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].x + value: 9.00003 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 3 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].y + value: 11 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].x + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].y + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 67 + value: 8 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 3.0000293 + value: 26.000029 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 66.99997 + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 7 + value: 29 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 43 + value: 13 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 6.9999704 + value: 28.999971 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 42.999973 + value: 12.99997 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 9 + value: 22 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 4.999971 + value: 21.999971 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 8.99997 - objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 4.0000296 + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x - value: 5.999971 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 5 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 18 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x - value: 5 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 15 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y - value: 5.0000296 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 17.999971 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x - value: 5.0000296 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].x + value: 11.00003 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y - value: 8 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].y + value: 12 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x - value: 6 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].x + value: 15 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y - value: 8.00003 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].y + value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x - value: 6.0000296 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].x + value: 14.999971 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].y value: 9 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x - value: 9 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].x + value: 8 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].y value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x - value: 9.00003 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].x + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].y value: 8 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x - value: 10 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].x + value: 9 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].y value: 7.9999704 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x - value: 10.00003 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].x + value: 9.00003 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].y value: 7 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x - value: 41 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].x + value: 15 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y - value: 7.0000296 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].y + value: 6.9999704 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x - value: 41.00003 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size + value: 3 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size value: 12 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x - value: 67 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size + value: 18 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y - value: 12.00003 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x - value: 67.00003 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y - value: 14 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x - value: 88 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y - value: 13.999971 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x - value: 88.00003 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y - value: 13 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x - value: 106 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y - value: 13.00003 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x - value: 105.99997 - objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y - value: 16 - objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y - value: 15.999971 - objectReference: {fileID: 0} - - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x - value: 0.000029300001 - objectReference: {fileID: 0} - - target: {fileID: 2024653483701197793, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: _entityDrawer._hollow - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 - objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 10 - objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 220000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 190000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 220000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 320000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 320000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 80000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 320000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 320000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 250000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 320000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 250000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 190000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 280000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 190000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 280000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 40000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 80000000 + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 40000000 + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 80000000 + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 60000000 + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 2039497273217809421, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 320000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 20 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 20 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 110000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 80000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 250000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 80000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 250000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 110000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 340000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 110000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 340000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 120000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 490000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 490000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 510000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 510000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 720000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 140000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 960000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 160000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 890000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 160000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 890000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 930000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 930000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 100000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 880000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 880000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 50000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 770000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 50000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 770000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 40000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 720000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 40000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].X + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 720000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 130000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 770000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 130000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 770000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 840000000 - objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 100000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 840000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 140000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 870000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 140000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X - value: 870000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].X + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 160000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 160000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].X + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].Y value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X - value: 110000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].X + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].Y value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 720000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].X + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 30000000 + - target: {fileID: 466372779956390839, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].Y + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 510000000 + - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_LocalPosition.x + value: 0 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 30000000 + - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_LocalPosition.y + value: 0 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X - value: 510000000 + - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_LocalPosition.z + value: 0 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y - value: 70000000 + - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_LocalRotation.w + value: 1 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X - value: 490000000 + - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_LocalRotation.x + value: 0 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y - value: 70000000 + - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_LocalRotation.y + value: 0 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X - value: 490000000 + - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_LocalRotation.z + value: 0 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].Y - value: 60000000 + - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X - value: 360000000 + - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].Y - value: 60000000 + - target: {fileID: 853771079839244126, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].X - value: 360000000 + - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].Y - value: 50000000 + - target: {fileID: 915330982125235883, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 413179185} + - target: {fileID: 1027754643098053271, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].Y - value: 50000000 + - target: {fileID: 1027754643098053271, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186314} + - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 2244458308897886355, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].X - value: 960000000 + - target: {fileID: 1500281755862739880, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1178283498} + - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 1770954532333290978, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186310} + - target: {fileID: 1847996822326766791, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 1847996822326766791, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186334} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size value: 3 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 1459797120} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + objectReference: {fileID: 1897186343} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 16 + value: 6 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 4 + value: 6 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size - value: 14 + value: 22 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 2.999971 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y - value: 13 + value: 23 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 3.0000293 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 14 + value: 32 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 4 + value: 26 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 14.000029 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 4.0000296 + value: 26.000029 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 16 + value: 24 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 5 + value: 27 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 16.000029 + value: 23.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 5.0000296 + value: 27.000029 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 18 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 10 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 17.999971 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 10.00003 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 16 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 11 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 15.999971 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 11.00003 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 14 + value: 23 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 7.9999704 + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 12 + value: 24 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 7.9999704 + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 14 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 7 + value: 32 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 13.999971 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 7.0000296 + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 12 + value: 25 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x - value: 15.999971 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 21 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x - value: 15.999971 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 24.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 21.000029 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y - value: 11 + value: 6 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x - value: 13 + value: 28 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y - value: 10.99997 + value: 6.0000296 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x - value: 12.99997 + value: 28.000029 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y - value: 10 + value: 15 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x - value: 12 + value: 30 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y - value: 9.99997 + value: 14.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x - value: 11.99997 + value: 30.000029 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y - value: 9 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x - value: 10 + value: 31 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y - value: 9.00003 + value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x - value: 9.99997 + value: 31.000029 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].y - value: 10 + value: 9 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].x - value: 6 + value: 32 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].y - value: 10.00003 + value: 9.00003 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].x - value: 5.999971 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].y - value: 11 + value: 20 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 12 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].x + value: 31 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 13.999971 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].y + value: 19.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 12.00003 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].x + value: 30.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 13 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].y + value: 19 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].y + value: 18.999971 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].x + value: 29.999971 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].y value: 16 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 13.00003 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].x + value: 20 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 15.999971 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[14].y + value: 16.000029 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 32 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].x + value: 19.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 31.999971 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[15].y + value: 18 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 0.000029300001 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].x + value: 19 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 13 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[16].y + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].x - value: 3 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].x + value: 18.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[10].y - value: 11.00003 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[17].y + value: 19 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].x - value: 2.999971 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[18].x + value: 18 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[11].y - value: 12 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[18].y + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[12].y - value: 11.99997 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[19].x + value: 17.999971 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[13].x + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[19].y + value: 22 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[20].y + value: 21.999971 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[21].x value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size value: 3 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 16 + value: 6 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 4 + value: 6 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 14 + value: 22 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 30000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 140000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 40000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 140000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 40000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 160000000 + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 50000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 160000000 + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 50000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 180000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 100000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 180000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 100000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 160000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 110000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 160000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 110000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 140000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 120000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 140000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 80000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 140000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 160000000 + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 110000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 130000000 + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 110000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 130000000 + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 100000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 120000000 + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 100000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 120000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 90000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 100000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 90000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X - value: 100000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y - value: 100000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 60000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y - value: 100000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].X - value: 60000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[8].Y - value: 110000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X - value: 30000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].Y - value: 110000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 120000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 130000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[12].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 160000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 130000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 160000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].X + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 320000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[14].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 320000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].X + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 130000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[15].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 30000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 130000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[16].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].X - value: 30000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[10].Y - value: 120000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[17].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[11].Y - value: 120000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[18].X + value: 310000000 objectReference: {fileID: 0} - - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[13].X - value: 160000000 + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[18].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[19].X + value: 310000000 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[19].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[20].X + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[20].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[21].X + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: 2266298341254746058, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[21].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size - value: 2 + value: 3 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 1922897892} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + objectReference: {fileID: 1897186322} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 8 + value: 12 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 14 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 3.999971 + value: 2.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y - value: 7 + value: 26 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 4.0000296 + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 13 + value: 27 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 12 + value: 4 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 12.99997 + value: 27.000029 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 12.00003 + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 10 + value: 28 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 16 + value: 14 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 10.00003 + value: 27.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 15.999971 + value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 16 + value: 27 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 15.999971 + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 0.000029300001 + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 7 + value: 26 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 26.000029 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 32 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 7 + value: 23 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 9 + value: 15 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 7.0000296 + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 8.99997 + value: 14.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 10 + value: 22 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 7 + value: 14 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 9.99997 + value: 21.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 6.9999704 + value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 6 + value: 16 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 6 + value: 9 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 5.999971 + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 6.000029 + value: 9.00003 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 5 + value: 15 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 12 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 4.9999704 + value: 14.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 11.99997 + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 2 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 5.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x - value: 4 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 5.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y - value: 2.0000293 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + value: 9 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x - value: 3.999971 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x + value: 5 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y + value: 9.00003 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x value: 4 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y + value: 10.00003 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y + value: 23 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y + value: 22.999971 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 26 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 + value: 3 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 8 + value: 12 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 14 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 40000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 130000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 120000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 130000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 120000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 100000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 160000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 100000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 160000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 160000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 160000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 150000000 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 70000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 40000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 70000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 70000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 90000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 70000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 90000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 100000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 70000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 100000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 70000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 60000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 60000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 60000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 60000000 + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 50000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 120000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 50000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 20000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 40000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 20000000 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 40000000 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 40000000 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 40000000 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X - value: 160000000 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 8 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 8 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 20000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 20000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 70000000 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 140000000 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 70000000 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 140000000 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 20000000 + - target: {fileID: 2408072353406776700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 30000000 + - target: {fileID: 2560603151020623475, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 20000000 + - target: {fileID: 2560603151020623475, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186327} + - target: {fileID: 2785927013175631523, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 40000000 + - target: {fileID: 2785927013175631523, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186304} + - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 40000000 + - target: {fileID: 2794961749112776184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1459797120} + - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 3017169190373825873, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 160000000 + - target: {fileID: 2950500968253679367, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1922897892} + - target: {fileID: 2989155160411336203, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} + - target: {fileID: 2989155160411336203, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186342} - target: {fileID: 3329841129506954470, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_IsActive value: 0 @@ -10603,3334 +10748,3009 @@ PrefabInstance: value: 1 objectReference: {fileID: 0} - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 111741411} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size value: 2 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 111741411} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + objectReference: {fileID: 1897186331} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 20 + value: 18 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 10 + value: 14 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 31.999971 + value: 5.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 31.999971 + value: 6.0000296 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 32 + value: 15 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 26 + value: 7 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 31.999971 + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 26.000029 + value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 24 + value: 17 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 29 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 23.999971 + value: 17.000029 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 28.999971 + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 22 + value: 18 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 23 + value: 11 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 21.999971 + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 23.000029 + value: 11.00003 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 20 + value: 22 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 29 + value: 15 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 19.999971 + value: 22.000029 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 28.999971 + value: 15.000029 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 4 + value: 23 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 3.999971 - objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 16 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 4.0000296 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 19 + value: 27 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 20 + value: 28 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 19.000029 + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 20.000029 + value: 27.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y value: 24 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 23 + value: 25 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 24.000029 + value: 23.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 22.999971 + value: 25.000029 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 32 + value: 22 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 6 + value: 30 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 31.999971 + value: 21.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 5.9999704 + value: 29.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 21 + value: 5 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 2 + value: 7 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 20.999971 + value: 5.0000296 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 2.0000293 + value: 6.9999704 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 16 + value: 11 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 4 + value: 16 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 4.0000296 + value: 23.000029 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 4.0000296 + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 13 + value: 24 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 7 + value: 8 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 13.00003 + value: 24.000029 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 6.9999704 + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 14 + value: 29 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 1 + value: 32 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 14.000029 + value: 29.000029 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 1.0000294 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 23 - objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x - value: 4 + value: 32 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 23.000029 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x - value: 3.999971 + value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 32 + value: 14 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y - value: 31.999971 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 6 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 5.999971 + objectReference: {fileID: 0} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size value: 2 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 10 + value: 18 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 20 + value: 14 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 40000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 190000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 200000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 190000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 200000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 240000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 230000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 240000000 + value: 170000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 230000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 320000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 60000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 320000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 60000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 210000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 20000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 210000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 20000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 160000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 40000000 + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 160000000 + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 320000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 260000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 320000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 260000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 290000000 + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 290000000 + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 230000000 + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 230000000 + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 200000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 290000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 200000000 + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 290000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 40000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 40000000 + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 40000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X - value: 40000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y - value: 130000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 70000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y - value: 130000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X - value: 70000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y - value: 140000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X - value: 10000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y - value: 140000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X - value: 10000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].Y - value: 230000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X - value: 40000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].Y - value: 230000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].X - value: 40000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].Y - value: 320000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].Y - value: 320000000 + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 3403202154825585317, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].X + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 3493071140687146004, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size value: 2 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186335} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 4 + value: 24 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size value: 12 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 47.999973 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 47.999973 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 48 + value: 32 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x + value: 26 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 47.999973 + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 0.000029300001 + value: 26.000029 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y + value: 26 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x + value: 27 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y + value: 25.999971 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x + value: 27.000029 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 29 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y + value: 24.999971 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x + value: 28.999971 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y + value: 21 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 21.000029 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 20.000029 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 31 + value: 29 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 19.000029 + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 20 + value: 4 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 19.000029 + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 19.999971 + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 22 + value: 13 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 17 + value: 8 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 22.000029 + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 17.000029 + value: 7.9999704 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 31 + value: 14 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 31 + value: 1 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 30.999971 + value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 30.999971 + value: 1.0000294 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 26 + value: 20 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 19 + value: 4 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 25.999971 + value: 19.999971 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 19.000029 + value: 4.000029 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 25 + value: 19 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 23 + value: 20 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 24.999971 - objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x - value: 23.000029 + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x value: 22 objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x - value: 31 - objectReference: {fileID: 0} - - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y - value: 21.999971 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 25.000029 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 22.000029 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size - value: 3 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 26 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 970014424} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 14 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 23 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 10 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 26.000029 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size - value: 8 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 22.999971 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 3.999971 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 32 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y - value: 9 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x + value: 6 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 4.0000296 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 13 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 5.9999704 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 9 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 21 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 13.00003 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 1 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 8.99997 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 21.000029 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 16 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 1.0000294 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 2 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 23 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 16.000029 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 3 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 2.0000293 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 23.000029 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 28 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 30 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 24 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 27.999971 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x + value: 4 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 29.999971 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 24.000029 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 16 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 28 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 32 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 15.999971 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y + value: 31.999971 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 28.000029 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 14 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 18.999971 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 19.000029 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 14 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 25 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 14.000029 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 24.999971 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 16 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 12 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 15.999971 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 11.99997 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 10 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 9 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 9.99997 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 9.00003 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 9 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 12 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 8.99997 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 12.00003 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x - value: 31.999971 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x - value: 31.999971 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y - value: 12 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x - value: 26 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y - value: 11.99997 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x - value: 25.999971 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y - value: 3 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y - value: 3.0000293 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x - value: 3.999971 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y - value: 4.999971 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 32 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 14.000029 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 31.999971 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 32 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 20.000029 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 31.999971 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 20 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 0.000029300001 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 29 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 9 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 19.999971 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 3 + value: 2 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 14 + value: 24 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 10 - objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 8 + value: 12 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 40000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 130000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 90000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 130000000 + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 90000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 160000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 20000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 160000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 20000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 280000000 + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 300000000 + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 280000000 + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 300000000 + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 160000000 + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 280000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 160000000 + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 280000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 140000000 + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 320000000 + value: 220000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 140000000 + value: 250000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 190000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 140000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 250000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 140000000 + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 250000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 160000000 + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 120000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 160000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 120000000 + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 100000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 90000000 + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 100000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 90000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 90000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 120000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 90000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 120000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 60000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 190000000 + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + value: 200000000 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 220000000 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 260000000 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 260000000 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 120000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 260000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 120000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 10000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 260000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y + value: 210000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X + value: 10000000 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y + value: 230000000 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 40000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 50000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 50000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 320000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 90000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 200000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 40000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 90000000 + - target: {fileID: 3646509468738851638, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 5701766058075552784, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_IsActive - value: 0 + - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 3722383149400290387, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186328} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size value: 3 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 1559812430} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + objectReference: {fileID: 1897186324} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 12 + value: 20 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 4 + value: 24 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size value: 8 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 4.999971 + value: 27.999971 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y - value: 9 + value: 11 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 4.999971 + value: 28.000029 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 10 + value: 12 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 2 + value: 29 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 10.00003 + value: 12.00003 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 2.0000293 + value: 29.000029 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y value: 14 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 9 + value: 45 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y value: 13.999971 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 8.99997 + value: 45.00003 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 10 + value: 12 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 6 + value: 46 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 9.99997 + value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 6.000029 + value: 46.00003 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 9 + value: 11 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 32 + value: 48 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 9.00003 + value: 11.00003 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 31.999971 + value: 47.999973 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y value: 16 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 31.999971 + value: 37.999973 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 31.999971 + value: 37.999973 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 5 + value: 3 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 26 + value: 37 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 4.999971 + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 26.000029 - objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x - value: 22.999971 + value: 36.999973 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x - value: 22.999971 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y + value: 4 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y - value: 5 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x + value: 36 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y + value: 4.0000296 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x + value: 35.999973 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x + value: 35 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y + value: 5.0000296 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x + value: 34.999973 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y + value: 5.999971 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x + value: 23.999971 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 47.999973 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 47.999973 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x - value: 14 + value: 45 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y - value: 4.999971 + value: 7.9999704 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x - value: 13.999971 + value: 44.999973 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y - value: 2 + value: 4 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x - value: 8 + value: 42 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y - value: 2.0000293 + value: 3.999971 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x - value: 7.9999704 + value: 41.999973 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y - value: 5 + value: 3 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x + value: 41 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y - value: 4.999971 + value: 2.999971 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x - value: 0.000029300001 + value: 41.00003 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 0.000029300001 + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 9 + value: 15 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 14.000029 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 11.00003 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 23 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 22.999971 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y + value: 6.000029 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x + value: 9.99997 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].y + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].y + value: 8.00003 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[18].y + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].x + value: 5.0000296 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[19].y + value: 13 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[20].x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[20].y + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[21].x + value: 5.999971 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[21].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[22].y + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[23].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size value: 3 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 12 + value: 20 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 4 + value: 24 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size value: 8 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 50000000 + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 100000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 20000000 + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 100000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 20000000 + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 90000000 + value: 450000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 90000000 + value: 450000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 100000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 60000000 + value: 460000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 100000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 60000000 + value: 460000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 90000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 320000000 + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 90000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 320000000 + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 320000000 + value: 380000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 50000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 260000000 + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 50000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 260000000 + value: 370000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 320000000 + value: 360000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y + value: 40000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + value: 360000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + value: 350000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + value: 350000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 60000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + value: 50000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + value: 480000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 140000000 + value: 450000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 50000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 140000000 + value: 450000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 20000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 80000000 + value: 420000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 20000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 80000000 + value: 420000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 50000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X + value: 410000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 50000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X + value: 410000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 230000000 + value: 480000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 90000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 50000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 3 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 14 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 10 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 8 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 40000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 130000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 90000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 130000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 90000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 20000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 160000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 20000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 300000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 300000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 300000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 300000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 160000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 230000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 280000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 160000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 280000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 140000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 320000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 140000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 190000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 140000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].X + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 250000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[14].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 140000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 250000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[15].Y + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 160000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[16].Y value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 160000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[17].Y value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 100000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].X + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 90000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[18].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].X value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X - value: 190000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[19].Y + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[20].X value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 260000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 260000000 - objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 30000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[20].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 40000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[21].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 30000000 + - target: {fileID: 4665838804666745124, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[23].X + value: 380000000 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 40000000 + - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 70000000 + - target: {fileID: 4981786697509593755, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 970014424} + - target: {fileID: 5701766058075552784, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_IsActive + value: 0 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 70000000 + - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 320000000 + - target: {fileID: 5821489237394154557, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1559812430} + - target: {fileID: 6077606586320712186, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 320000000 + - target: {fileID: 6077606586320712186, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186323} + - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 320000000 + - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1189620694} + - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 320000000 + - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1883069} + - target: {fileID: 6656580114343143184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 100000000 + - target: {fileID: 6656580114343143184, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186306} + - target: {fileID: 6985822722308811368, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 40000000 + - target: {fileID: 6985822722308811368, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186340} + - target: {fileID: 7010344252542594278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 5859126940357038158, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 100000000 + - target: {fileID: 7010344252542594278, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186317} + - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186346} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.size value: 1 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.size value: 3 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_Collider value: - objectReference: {fileID: 1189620694} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + objectReference: {fileID: 1897186318} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 8 + value: 22 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 8 + value: 14 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.size - value: 6 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 3.999971 + value: 2.999971 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].y - value: 26 + value: 9 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 4.0000296 + value: 3.0000293 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 28 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 14 + value: 4 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 27.999971 + value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 14.000029 + value: 4.0000296 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 26 + value: 13 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 16 + value: 8 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 26.000029 + value: 13.00003 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 15.999971 + value: 8.00003 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 32 + value: 14 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 31.999971 + value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 0.000029300001 + value: 8.99997 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 26 + value: 15 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y + value: 15.000029 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x + value: 7.9999704 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 15.999971 + value: 17.999971 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 15.999971 + value: 18.000029 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 23 + value: 7 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 14 + value: 19 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 22.999971 + value: 7.0000296 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 13.999971 + value: 19.000029 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 16 + value: 14 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 8 + value: 24 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 15.999971 + value: 14.000029 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 8.00003 + value: 23.999971 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 15 + value: 16 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 10 + value: 12 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 14.999971 + value: 15.999971 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 10.00003 - objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x - value: 5.999971 + value: 11.99997 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x - value: 5.999971 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y + value: 10 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x value: 10 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x - value: 4 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y + value: 9.99997 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x value: 10.00003 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[0].x + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].x + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[1].y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].x + value: 27 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[2].y + value: 11.99997 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].x - value: 3.999971 + value: 26.999971 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[3].y - value: 23 + value: 11 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].x + value: 26 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[4].y - value: 22.999971 + value: 10.99997 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].x + value: 25.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[5].y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[6].y + value: 3.0000293 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].x + value: 3.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[7].y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[8].y + value: 4.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[2].Array.data[9].x value: 0.000029300001 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y + value: 16.000029 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x + value: 2.0000293 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y + value: 28 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y + value: 27.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x + value: 29.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x + value: 28 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y + value: 15.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x + value: 28.000029 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x + value: 29 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y + value: 14.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x + value: 29.000029 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x + value: 32 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y + value: 14.000029 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y + value: 32 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y + value: 31.999971 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x + value: 0.000029300001 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y + value: 8.99997 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x + value: 12.00003 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x + value: 13 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y + value: 6.9999704 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x + value: 13.00003 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size value: 3 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 8 + value: 22 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 6 + value: 14 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 8 + value: 10 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 40000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 280000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 140000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 280000000 + value: 100000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 140000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 260000000 + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 160000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 260000000 + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 160000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 320000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 320000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 260000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 40000000 + value: 80000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 260000000 + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X + value: 80000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X + value: 20000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y + value: 160000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 60000000 + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 100000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 40000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 100000000 + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 40000000 + value: 190000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 230000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X + value: 240000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 230000000 + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 60000000 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X + value: 240000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 230000000 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 140000000 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X + value: 100000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].X + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y + value: 90000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X + value: 320000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y + value: 120000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X + value: 270000000 + objectReference: {fileID: 0} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 230000000 + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 140000000 + value: 270000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 160000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 80000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 160000000 + value: 110000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 80000000 + value: 260000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 150000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 100000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 150000000 + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X - value: 100000000 + value: 40000000 objectReference: {fileID: 0} - - target: {fileID: 6614374287387625563, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].X - value: 160000000 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y + value: 50000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size - value: 2 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 1883069} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 38 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X + value: 20000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 4 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 31.999971 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 31.999971 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 20 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X + value: 300000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].x - value: 29 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 19.999971 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 28.999971 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y + value: 160000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].y - value: 16 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X + value: 280000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].x - value: 24 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[4].y - value: 15.999971 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].x - value: 23.999971 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y + value: 150000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[5].y - value: 12 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X + value: 290000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].x - value: 22 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[6].y - value: 11.99997 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].x - value: 22.000029 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y + value: 140000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[7].y - value: 11 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].x - value: 24 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[8].y - value: 10.99997 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y + value: 320000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].x - value: 23.999971 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[9].y - value: 6 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X + value: 30000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 31.999971 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y + value: 90000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 23 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].X + value: 120000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 31.999971 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[10].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 40 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 29 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].Y + value: 70000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 39.999973 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].X + value: 130000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 29.000029 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[12].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 23 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].X + value: 180000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].x - value: 4 + - target: {fileID: 7626560356289512501, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[13].Y + value: 60000000 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[10].y - value: 6.0000296 + - target: {fileID: 7853903499751502385, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].x - value: 4.0000296 + - target: {fileID: 7853903499751502385, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186315} + - target: {fileID: 8037526264969489243, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[11].y - value: 21 + - target: {fileID: 8037526264969489243, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186301} + - target: {fileID: 8068804234995330007, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_Name + value: WorldMap_GridVania_layout objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].x - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[12].y - value: 20.999971 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].x - value: 6.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[13].y - value: 19 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].x - value: 8 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[14].y - value: 19.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].x - value: 8.00003 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[15].y - value: 21 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].x - value: 10 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[16].y - value: 20.999971 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].x - value: 10.00003 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[17].y - value: 19 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].x - value: 12 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[18].y - value: 19.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].x - value: 12.00003 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[19].y - value: 21 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].x - value: 14 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[20].y - value: 20.999971 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].x - value: 14.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[21].y - value: 19 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].x - value: 16 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[22].y - value: 19.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].x - value: 16.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[23].y - value: 21 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].x - value: 18 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[24].y - value: 20.999971 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].x - value: 18.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[25].y - value: 19 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].x - value: 20 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[26].y - value: 19.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].x - value: 20.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[27].y - value: 21 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].x - value: 22 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[28].y - value: 20.999971 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].x - value: 22.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[29].y - value: 19 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].x - value: 24 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[30].y - value: 19.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].x - value: 24.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[31].y - value: 23 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].x - value: 28 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[32].y - value: 23.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].x - value: 28.000029 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[33].y - value: 41 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].x - value: 32 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[34].y - value: 41.00003 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].x - value: 31.999971 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[35].y - value: 48 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[36].y - value: 47.999973 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[37].x - value: 0.000029300001 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 38 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 290000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 290000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].X - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 400000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 290000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 400000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 290000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].X - value: 40000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].X - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[12].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].X - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[13].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].X - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[14].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[15].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].X - value: 100000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[16].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].X - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[17].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].X - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[18].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[19].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].X - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[20].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[21].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[22].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].X - value: 180000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[23].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].X - value: 180000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[24].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].X - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[25].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].X - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[26].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].X - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[27].Y - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].X - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[28].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].X - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[29].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].X - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[30].Y - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].X - value: 280000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[31].Y - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].X - value: 280000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[32].Y - value: 410000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[33].Y - value: 410000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[34].Y - value: 480000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[35].Y - value: 480000000 - objectReference: {fileID: 0} - - target: {fileID: 6634943044814167359, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[37].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.size - value: 2 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.size - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.size - value: 18 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[0].x - value: 47.999973 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].x - value: 47.999973 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[1].y - value: 48 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[2].y - value: 47.999973 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[0].Array.data[3].x - value: 0.000029300001 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].x - value: 30 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[0].y - value: 15.000029 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].x - value: 17 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[1].y - value: 15.000029 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].x - value: 17.000029 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[2].y - value: 18 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].x - value: 27 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[3].y - value: 18.000029 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].x - value: 26.999971 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[4].y - value: 22 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].x - value: 19 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[5].y - value: 22.000029 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].x - value: 19.000029 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[6].y - value: 30 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].x - value: 24 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[7].y - value: 30.000029 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].x - value: 23.999971 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[8].y - value: 37 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].x - value: 21 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[9].y - value: 37.00003 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].x - value: 21.000029 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[10].y - value: 42 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].x - value: 30 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[11].y - value: 41.999973 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].x - value: 29.999971 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[12].y - value: 37 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].x - value: 27 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[13].y - value: 36.999973 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].x - value: 26.999971 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[14].y - value: 27 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].x - value: 22 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[15].y - value: 26.999971 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].x - value: 22.000029 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[16].y - value: 25 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].x - value: 30 - objectReference: {fileID: 0} - - target: {fileID: 7014488378901090157, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_CompositePaths.m_Paths.Array.data[1].Array.data[17].y - value: 24.999971 - objectReference: {fileID: 0} - - target: {fileID: 8068804234995330007, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_Name - value: WorldMap_GridVania_layout - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.size - value: 10 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.size - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 260000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 260000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 250000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 250000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 210000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 230000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[0].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].X - value: 280000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[1].Y - value: 60000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].X - value: 280000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[2].Y - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].X - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[3].Y - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].X - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[4].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].X - value: 180000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[5].Y - value: 190000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].X - value: 180000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[6].Y - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[7].Y - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[2].Array.data[9].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[0].Y - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].X - value: 300000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[1].Y - value: 200000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].X - value: 300000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[2].Y - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8488044322606743744, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[3].Array.data[3].Y - value: 90000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.size - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_Collider - value: - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.size - value: 2 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.size - value: 12 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.size - value: 12 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[0].Y - value: 170000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].X - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[1].Y - value: 170000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].X - value: 110000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[2].Y - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[3].Y - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].X - value: 160000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[4].Y - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].X - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[5].Y - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].X - value: 80000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[6].Y - value: 290000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[7].Y - value: 290000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[8].Y - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[9].Y - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].X - value: 320000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[0].Y - value: 260000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].X - value: 280000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[1].Y - value: 260000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].X - value: 280000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[2].Y - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].X - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[3].Y - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].X - value: 240000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[4].Y - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].X - value: 300000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[5].Y - value: 220000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].X - value: 300000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[6].Y - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[7].Y - value: 50000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[8].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[9].Y - value: 120000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[10].Y - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].X - value: 70000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[0].Array.data[11].Y - value: 140000000 - objectReference: {fileID: 0} - - target: {fileID: 8902920876084087601, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} - propertyPath: m_ColliderPaths.Array.data[0].m_ColliderPaths.Array.data[1].Array.data[11].X - value: 320000000 + - target: {fileID: 8177345904241179497, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.size + value: 1 objectReference: {fileID: 0} + - target: {fileID: 8177345904241179497, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + propertyPath: m_ColliderPaths.Array.data[0].m_Collider + value: + objectReference: {fileID: 1897186321} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: -5765183769023986340, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} +--- !u!19719996 &1897186301 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3860811478925367341, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186302 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -5526834012932756120, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186303 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 8323692706931462513, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186304 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 5708426930186804600, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186305 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -5196696920673811357, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186306 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 5868731721941298807, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186307 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 5027528763072014036, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186308 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 9186003677283375450, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186309 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 3029866063879095263, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186310 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 5785114951101987586, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186311 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3145466711677316950, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186312 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -6844215975652055343, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186313 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 5436925680360239670, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186314 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -2250987053583426931, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186315 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3484520559738618439, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186316 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 205688120971472705, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186317 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -2737964364982432722, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186318 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -7369869092116788182, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186319 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -4755782896060121064, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186320 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 2657244584316088852, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186321 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3400739970433563298, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186322 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -4262441568380876197, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186323 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3323719248481772363, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186324 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 8784683406310800186, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186325 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -7836515156887711759, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186326 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -525615707084252872, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186327 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -5235036075625053840, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186328 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -428929399757884011, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186329 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -453235156190269960, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186330 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -3785502721291487345, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186331 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 8062843912773658518, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186332 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 3061978763017183101, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186333 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -2741147683035343582, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186334 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 8724609582521679921, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186335 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 2597931472690297463, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186336 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -2120237464686519975, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186337 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 3848399837687925935, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186338 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 6134412577981006635, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186339 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -4397297504890570721, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186340 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -5762703384320746949, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186341 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 7427083474766955483, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186342 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 6333015265912099700, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186343 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -1747482117233737837, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186344 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 3453525179634882965, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186345 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: -1808273421531104231, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186346 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 2056869828294822100, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} +--- !u!19719996 &1897186347 stripped +TilemapCollider2D: + m_CorrespondingSourceObject: {fileID: 7728094777458074357, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} + m_PrefabInstance: {fileID: 1897186300} + m_PrefabAsset: {fileID: 0} --- !u!19719996 &1922897892 stripped TilemapCollider2D: m_CorrespondingSourceObject: {fileID: -3280571008437205888, guid: 368a1d7251c3a4f4c805d6330e5f4620, type: 3} diff --git a/Assets/LDtkUnity/package.json b/Assets/LDtkUnity/package.json index 69cd79ad6..7f353ae2a 100644 --- a/Assets/LDtkUnity/package.json +++ b/Assets/LDtkUnity/package.json @@ -1,6 +1,6 @@ { "name": "com.cammin.ldtkunity", - "version": "6.4.5", + "version": "6.6.0", "displayName": "LDtk to Unity", "description": "A Unity importer system for the Level Designer Toolkit.", "documentationUrl": "https://cammin.github.io/LDtkToUnity/", diff --git a/Assets/Tests/EditMode/FieldsComponent/FixtureAssertions.cs b/Assets/Tests/EditMode/FieldsComponent/FixtureAssertions.cs index d9d0f92bb..b25087d77 100644 --- a/Assets/Tests/EditMode/FieldsComponent/FixtureAssertions.cs +++ b/Assets/Tests/EditMode/FieldsComponent/FixtureAssertions.cs @@ -7,7 +7,7 @@ public class FixtureAssertions : FieldsTestBase [Test, TestCaseSource(nameof(Arrays))] public void IsArraySizeExpected(string s) { - Assert.AreEqual(Fields.GetArraySize(s), 2); + Assert.AreEqual(2, Fields.GetArraySize(s)); } [Test, TestCaseSource(nameof(All))] diff --git a/Assets/Tests/EditMode/Tests/ComponentTilesetTilesTest.cs b/Assets/Tests/EditMode/Tests/ComponentTilesetTilesTest.cs index 6a17808e2..e5b412bec 100644 --- a/Assets/Tests/EditMode/Tests/ComponentTilesetTilesTest.cs +++ b/Assets/Tests/EditMode/Tests/ComponentTilesetTilesTest.cs @@ -11,7 +11,16 @@ public class ComponentTilesTest public void EnsureComponentExistences() { LDtkComponentProject project = LoadProjectComponent(); - LDtkComponentLayer[] layers = project.Worlds[0].Levels[0].LayerInstances; + Assert.NotNull(project, "project component null"); + + LDtkComponentWorld world = project.Worlds[0]; + Assert.NotNull(world, "world component null"); + + LDtkComponentLevel level = world.Levels[0]; + Assert.NotNull(level, "level component null"); + + LDtkComponentLayer[] layers = level.LayerInstances; + Assert.NotNull(layers, "layers component null"); foreach (LDtkComponentLayer layer in layers) { @@ -54,7 +63,16 @@ public void EnsureComponentExistences() public void TestIntGridWithoutRules() { LDtkComponentProject project = LoadProjectComponent(); - LDtkComponentLayer[] layers = project.Worlds[0].Levels[0].LayerInstances; + Assert.NotNull(project, "project component null"); + + LDtkComponentWorld world = project.Worlds[0]; + Assert.NotNull(world, "world component null"); + + LDtkComponentLevel level = world.Levels[0]; + Assert.NotNull(level, "level component null"); + + LDtkComponentLayer[] layers = level.LayerInstances; + Assert.NotNull(layers, "layers component null"); Assert.True(layers.Any(p => p.Identifier == "IntGrid_without_rules")); diff --git a/Assets/Tests/Misc/OtherTechTests/DependencyTest/TestIntGridValueDependency/TestIntGridValueDependency_Config.ldtkc b/Assets/Tests/Misc/OtherTechTests/DependencyTest/TestIntGridValueDependency/TestIntGridValueDependency_Config.ldtkc new file mode 100644 index 000000000..1e9b3d3b2 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/DependencyTest/TestIntGridValueDependency/TestIntGridValueDependency_Config.ldtkc @@ -0,0 +1,33 @@ +{ + "PixelsPerUnit": 16, + "CustomLevelPrefab": { + "instanceID": 0 + }, + "IntGridValueColorsVisible": true, + "UseCompositeCollider": true, + "GeometryType": 0, + "CreateBackgroundColor": true, + "CreateLevelBoundsTrigger": false, + "UseParallax": true, + "IntGridValues": [ + { + "_key": "IntGrid_1", + "_asset": { + "instanceID": 29410 + } + }, + { + "_key": "IntGrid_2", + "_asset": { + "instanceID": 28118 + } + }, + { + "_key": "IntGrid_3", + "_asset": { + "instanceID": 24110 + } + } + ], + "Entities": [] +} \ No newline at end of file diff --git a/Assets/Tests/Misc/OtherTechTests/DependencyTest/TestIntGridValueDependency/TestIntGridValueDependency_Config.ldtkc.meta b/Assets/Tests/Misc/OtherTechTests/DependencyTest/TestIntGridValueDependency/TestIntGridValueDependency_Config.ldtkc.meta new file mode 100644 index 000000000..4bf64c527 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/DependencyTest/TestIntGridValueDependency/TestIntGridValueDependency_Config.ldtkc.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c0cdff54cf008ac44a64cfcb64871464 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: e306d4530b9e4685b6ed80f056cbdfa5, type: 3} diff --git a/Assets/Tests/Misc/OtherTechTests/LevelsVania/GridVaniaLevels_Atlas.spriteatlas b/Assets/Tests/Misc/OtherTechTests/LevelsVania/GridVaniaLevels_Atlas.spriteatlas index c351a3bc7..5b1af1d6a 100644 --- a/Assets/Tests/Misc/OtherTechTests/LevelsVania/GridVaniaLevels_Atlas.spriteatlas +++ b/Assets/Tests/Misc/OtherTechTests/LevelsVania/GridVaniaLevels_Atlas.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/Tests/Misc/OtherTechTests/LevelsVania/Items/LevelsVania_Ladder.prefab b/Assets/Tests/Misc/OtherTechTests/LevelsVania/Items/LevelsVania_Ladder.prefab index b0d5b9f3b..223e2f034 100644 --- a/Assets/Tests/Misc/OtherTechTests/LevelsVania/Items/LevelsVania_Ladder.prefab +++ b/Assets/Tests/Misc/OtherTechTests/LevelsVania/Items/LevelsVania_Ladder.prefab @@ -26,7 +26,7 @@ Transform: m_GameObject: {fileID: 392067290705676212} serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0.5, y: -0.5, z: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] @@ -76,11 +76,11 @@ SpriteRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: a0ec3126b00c562449ef4e99a4da11fc, type: 3} + m_Sprite: {fileID: 21300000, guid: e53a6a46125489046aa60333dd75bf44, type: 3} m_Color: {r: 1, g: 1, b: 1, a: 1} m_FlipX: 0 m_FlipY: 0 - m_DrawMode: 0 + m_DrawMode: 2 m_Size: {x: 1, y: 1} m_AdaptiveModeThreshold: 0.5 m_SpriteTileMode: 0 @@ -97,6 +97,8 @@ GameObject: m_Component: - component: {fileID: 5922710633718950015} - component: {fileID: 2594250568553743851} + - component: {fileID: 6246956699239339519} + - component: {fileID: 5032531129016477869} m_Layer: 0 m_Name: LevelsVania_Ladder m_TagString: Untagged @@ -136,3 +138,63 @@ MonoBehaviour: _setSortingOrder: 1 _setOpacity: 1 _setEntityColor: 1 +--- !u!114 &6246956699239339519 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6381717676898315408} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b0571a2f3dca1a4692e7ec77ada60c9, type: 3} + m_Name: + m_EditorClassIdentifier: + _renderer: {fileID: 2400257763338206285} + _collider: {fileID: 5032531129016477869} +--- !u!61 &5032531129016477869 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6381717676898315408} + m_Enabled: 1 + serializedVersion: 3 + m_Density: 1 + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_ForceSendLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_ForceReceiveLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_ContactCaptureLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_CallbackLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_IsTrigger: 0 + m_UsedByEffector: 0 + m_CompositeOperation: 0 + m_CompositeOrder: 0 + m_Offset: {x: 0.5, y: -0.5} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0, y: 0} + oldSize: {x: 0, y: 0} + newSize: {x: 0, y: 0} + adaptiveTilingThreshold: 0 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + m_Size: {x: 1, y: 1} + m_EdgeRadius: 0 diff --git a/Assets/Tests/Misc/OtherTechTests/LevelsVania/LevelsVania_Config.ldtkc b/Assets/Tests/Misc/OtherTechTests/LevelsVania/LevelsVania_Config.ldtkc new file mode 100644 index 000000000..b579707cf --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/LevelsVania/LevelsVania_Config.ldtkc @@ -0,0 +1,64 @@ +{ + "PixelsPerUnit": 16, + "CustomLevelPrefab": { + "instanceID": 0 + }, + "IntGridValueColorsVisible": false, + "UseCompositeCollider": true, + "GeometryType": 0, + "CreateBackgroundColor": true, + "CreateLevelBoundsTrigger": false, + "UseParallax": true, + "IntGridValues": [ + { + "_key": "Collisions_1", + "_asset": { + "instanceID": 25948 + } + }, + { + "_key": "Collisions_2", + "_asset": { + "instanceID": 0 + } + } + ], + "Entities": [ + { + "_key": "Item", + "_asset": { + "instanceID": 30982 + } + }, + { + "_key": "Player", + "_asset": { + "instanceID": 33704 + } + }, + { + "_key": "Exit", + "_asset": { + "instanceID": 31998 + } + }, + { + "_key": "SecretArea", + "_asset": { + "instanceID": 31288 + } + }, + { + "_key": "Teleport", + "_asset": { + "instanceID": 30554 + } + }, + { + "_key": "Ladder", + "_asset": { + "instanceID": 30794 + } + } + ] +} \ No newline at end of file diff --git a/Assets/Tests/Misc/OtherTechTests/LevelsVania/LevelsVania_Config.ldtkc.meta b/Assets/Tests/Misc/OtherTechTests/LevelsVania/LevelsVania_Config.ldtkc.meta new file mode 100644 index 000000000..65547df2a --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/LevelsVania/LevelsVania_Config.ldtkc.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c8900b560acf0a142bc2a4a2beb8bacd +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: e306d4530b9e4685b6ed80f056cbdfa5, type: 3} diff --git a/Assets/Tests/Misc/OtherTechTests/TestAllFields/TestAllFieldsAtlas.spriteatlas b/Assets/Tests/Misc/OtherTechTests/TestAllFields/TestAllFieldsAtlas.spriteatlas index eb2242588..2f62e2d2f 100644 --- a/Assets/Tests/Misc/OtherTechTests/TestAllFields/TestAllFieldsAtlas.spriteatlas +++ b/Assets/Tests/Misc/OtherTechTests/TestAllFields/TestAllFieldsAtlas.spriteatlas @@ -21,7 +21,7 @@ SpriteAtlas: crunchedCompression: 0 sRGB: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 m_BuildTarget: DefaultTexturePlatform m_MaxTextureSize: 2048 m_ResizeAlgorithm: 0 diff --git a/Assets/Tests/Misc/OtherTechTests/TestAllFieldsLevels/TestAllFieldsLevels_Config.ldtkc b/Assets/Tests/Misc/OtherTechTests/TestAllFieldsLevels/TestAllFieldsLevels_Config.ldtkc new file mode 100644 index 000000000..d083fc407 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/TestAllFieldsLevels/TestAllFieldsLevels_Config.ldtkc @@ -0,0 +1,33 @@ +{ + "PixelsPerUnit": 16, + "CustomLevelPrefab": { + "instanceID": 0 + }, + "IntGridValueColorsVisible": false, + "UseCompositeCollider": true, + "GeometryType": 0, + "CreateBackgroundColor": true, + "CreateLevelBoundsTrigger": false, + "UseParallax": true, + "IntGridValues": [], + "Entities": [ + { + "_key": "TestAllFields", + "_asset": { + "instanceID": 43784 + } + }, + { + "_key": "NoFields", + "_asset": { + "instanceID": 43824 + } + }, + { + "_key": "TestAllNullable", + "_asset": { + "instanceID": 43832 + } + } + ] +} \ No newline at end of file diff --git a/Assets/Tests/Misc/OtherTechTests/TestAllFieldsLevels/TestAllFieldsLevels_Config.ldtkc.meta b/Assets/Tests/Misc/OtherTechTests/TestAllFieldsLevels/TestAllFieldsLevels_Config.ldtkc.meta new file mode 100644 index 000000000..7807c7e84 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/TestAllFieldsLevels/TestAllFieldsLevels_Config.ldtkc.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7eedda6d6239bb54d98c5a8df2bd756c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: e306d4530b9e4685b6ed80f056cbdfa5, type: 3} diff --git a/Assets/Tests/Misc/OtherTechTests/TestBackgroundPosLevels/LevelBackgroundPositionLevels/LevelBackgroundPositionLevels_Config.ldtkc b/Assets/Tests/Misc/OtherTechTests/TestBackgroundPosLevels/LevelBackgroundPositionLevels/LevelBackgroundPositionLevels_Config.ldtkc new file mode 100644 index 000000000..2b7cc7912 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/TestBackgroundPosLevels/LevelBackgroundPositionLevels/LevelBackgroundPositionLevels_Config.ldtkc @@ -0,0 +1,14 @@ +{ + "PixelsPerUnit": 16, + "CustomLevelPrefab": { + "instanceID": 0 + }, + "IntGridValueColorsVisible": false, + "UseCompositeCollider": true, + "GeometryType": 0, + "CreateBackgroundColor": true, + "CreateLevelBoundsTrigger": false, + "UseParallax": true, + "IntGridValues": [], + "Entities": [] +} \ No newline at end of file diff --git a/Assets/Tests/Misc/OtherTechTests/TestBackgroundPosLevels/LevelBackgroundPositionLevels/LevelBackgroundPositionLevels_Config.ldtkc.meta b/Assets/Tests/Misc/OtherTechTests/TestBackgroundPosLevels/LevelBackgroundPositionLevels/LevelBackgroundPositionLevels_Config.ldtkc.meta new file mode 100644 index 000000000..a053b3d96 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/TestBackgroundPosLevels/LevelBackgroundPositionLevels/LevelBackgroundPositionLevels_Config.ldtkc.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 42d5917c086d2d74db83c9f7cbb5fb01 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: e306d4530b9e4685b6ed80f056cbdfa5, type: 3} diff --git a/Assets/Tests/Misc/OtherTechTests/TestBackupCustomDir/TestBackupCustomDir_Config.ldtkc b/Assets/Tests/Misc/OtherTechTests/TestBackupCustomDir/TestBackupCustomDir_Config.ldtkc new file mode 100644 index 000000000..2b7cc7912 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/TestBackupCustomDir/TestBackupCustomDir_Config.ldtkc @@ -0,0 +1,14 @@ +{ + "PixelsPerUnit": 16, + "CustomLevelPrefab": { + "instanceID": 0 + }, + "IntGridValueColorsVisible": false, + "UseCompositeCollider": true, + "GeometryType": 0, + "CreateBackgroundColor": true, + "CreateLevelBoundsTrigger": false, + "UseParallax": true, + "IntGridValues": [], + "Entities": [] +} \ No newline at end of file diff --git a/Assets/Tests/Misc/OtherTechTests/TestBackupCustomDir/TestBackupCustomDir_Config.ldtkc.meta b/Assets/Tests/Misc/OtherTechTests/TestBackupCustomDir/TestBackupCustomDir_Config.ldtkc.meta new file mode 100644 index 000000000..bb1c71eab --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/TestBackupCustomDir/TestBackupCustomDir_Config.ldtkc.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2f5b8fe596c932647964e67e79e4cd07 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: e306d4530b9e4685b6ed80f056cbdfa5, type: 3} diff --git a/Assets/Tests/Misc/OtherTechTests/TestBackupDefaultDir/TestBackupDefaultDir_Config.ldtkc b/Assets/Tests/Misc/OtherTechTests/TestBackupDefaultDir/TestBackupDefaultDir_Config.ldtkc new file mode 100644 index 000000000..2b7cc7912 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/TestBackupDefaultDir/TestBackupDefaultDir_Config.ldtkc @@ -0,0 +1,14 @@ +{ + "PixelsPerUnit": 16, + "CustomLevelPrefab": { + "instanceID": 0 + }, + "IntGridValueColorsVisible": false, + "UseCompositeCollider": true, + "GeometryType": 0, + "CreateBackgroundColor": true, + "CreateLevelBoundsTrigger": false, + "UseParallax": true, + "IntGridValues": [], + "Entities": [] +} \ No newline at end of file diff --git a/Assets/Tests/Misc/OtherTechTests/TestBackupDefaultDir/TestBackupDefaultDir_Config.ldtkc.meta b/Assets/Tests/Misc/OtherTechTests/TestBackupDefaultDir/TestBackupDefaultDir_Config.ldtkc.meta new file mode 100644 index 000000000..8ad9f46e8 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/TestBackupDefaultDir/TestBackupDefaultDir_Config.ldtkc.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f2a6747a9345d334ab42bcd06b16e389 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: e306d4530b9e4685b6ed80f056cbdfa5, type: 3} diff --git a/Assets/Tests/Misc/OtherTechTests/Test_file_for_API_showing_all_featuresLevels/Test_file_for_API_showing_all_featuresLevels_Config.ldtkc b/Assets/Tests/Misc/OtherTechTests/Test_file_for_API_showing_all_featuresLevels/Test_file_for_API_showing_all_featuresLevels_Config.ldtkc new file mode 100644 index 000000000..f0bfad6d8 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/Test_file_for_API_showing_all_featuresLevels/Test_file_for_API_showing_all_featuresLevels_Config.ldtkc @@ -0,0 +1,76 @@ +{ + "PixelsPerUnit": 16, + "CustomLevelPrefab": { + "instanceID": 0 + }, + "IntGridValueColorsVisible": true, + "UseCompositeCollider": true, + "GeometryType": 0, + "CreateBackgroundColor": true, + "CreateLevelBoundsTrigger": false, + "UseParallax": true, + "IntGridValues": [ + { + "_key": "IntGrid_8px_grid_1", + "_asset": { + "instanceID": 0 + } + }, + { + "_key": "IntGrid_without_rules_1", + "_asset": { + "instanceID": 0 + } + }, + { + "_key": "IntGrid_without_rules_2", + "_asset": { + "instanceID": 0 + } + }, + { + "_key": "IntGrid_without_rules_3", + "_asset": { + "instanceID": 0 + } + }, + { + "_key": "IntGrid_with_rules_1", + "_asset": { + "instanceID": 0 + } + } + ], + "Entities": [ + { + "_key": "EntityFieldsTest", + "_asset": { + "instanceID": 70644 + } + }, + { + "_key": "Labels", + "_asset": { + "instanceID": 70646 + } + }, + { + "_key": "RectRegion", + "_asset": { + "instanceID": 70648 + } + }, + { + "_key": "CircleRegion", + "_asset": { + "instanceID": 70650 + } + }, + { + "_key": "EntityRefTest", + "_asset": { + "instanceID": 70650 + } + } + ] +} \ No newline at end of file diff --git a/Assets/Tests/Misc/OtherTechTests/Test_file_for_API_showing_all_featuresLevels/Test_file_for_API_showing_all_featuresLevels_Config.ldtkc.meta b/Assets/Tests/Misc/OtherTechTests/Test_file_for_API_showing_all_featuresLevels/Test_file_for_API_showing_all_featuresLevels_Config.ldtkc.meta new file mode 100644 index 000000000..9cdcf3760 --- /dev/null +++ b/Assets/Tests/Misc/OtherTechTests/Test_file_for_API_showing_all_featuresLevels/Test_file_for_API_showing_all_featuresLevels_Config.ldtkc.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d8315a7f3693a004c9c06d42a0b308af +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: e306d4530b9e4685b6ed80f056cbdfa5, type: 3} diff --git a/Assets/Tests/PlayMode/Fixtures/FixtureConsts.cs b/Assets/Tests/PlayMode/Fixtures/FixtureConsts.cs index 142d3f775..ae4249401 100644 --- a/Assets/Tests/PlayMode/Fixtures/FixtureConsts.cs +++ b/Assets/Tests/PlayMode/Fixtures/FixtureConsts.cs @@ -124,7 +124,7 @@ public static class FixtureConsts { SINGLE_FILE_PATH, "filepath.txt" }, { SINGLE_TILE, FieldsFixture.LoadSprite() }, { SINGLE_ENTITY_REF, null }, - { SINGLE_POINT, new Vector2(124.2f, 123.45f) }, + { SINGLE_POINT, new Vector2(11f, 10f) }, }; public static readonly Dictionary ExpectedArrayValues = new Dictionary() { @@ -138,7 +138,7 @@ public static class FixtureConsts { ARRAY_FILE_PATH, new object[]{"", "TestAllFields.ldtk"} }, { ARRAY_TILE, new object[]{null, FieldsFixture.LoadSprite() } }, { ARRAY_ENTITY_REF, new object[]{null, null} }, - { ARRAY_POINT, new object[]{new Vector2(8.5f, -2.5f), new Vector2(4.5f, -2.5f)} }, + { ARRAY_POINT, new object[]{new Vector2(9f, 9f), new Vector2(10f, 9f)} }, }; } } \ No newline at end of file diff --git a/Assets/Tests/PlayMode/Fixtures/Resources/FieldsFixture.prefab b/Assets/Tests/PlayMode/Fixtures/Resources/FieldsFixture.prefab index 60464a911..e4f2a9c45 100644 --- a/Assets/Tests/PlayMode/Fixtures/Resources/FieldsFixture.prefab +++ b/Assets/Tests/PlayMode/Fixtures/Resources/FieldsFixture.prefab @@ -89,14 +89,13 @@ Transform: m_GameObject: {fileID: 5727530961208393058} serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 3.47, y: -1.5, z: 0} + m_LocalPosition: {x: 10, y: 10, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: - {fileID: 4866602107094945190} - {fileID: 8578305485022708441} - {fileID: 6033355314831019669} - - {fileID: 8485407640382804481} m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &5729512029849994897 @@ -848,24 +847,6 @@ MonoBehaviour: _layerIid: _levelIid: _worldIid: - - _type: 9 - _canBeNull: 0 - _isNotNull: 0 - _min: 0 - _max: 0 - _int: 0 - _float: 0 - _bool: 0 - _string: - _color: {r: 1, g: 1, b: 1, a: 1} - _vector2: {x: 4.5, y: -2.5} - _sprite: {fileID: 0} - _obj: {fileID: 8485407640382804481} - _entityRef: - _entityIid: - _layerIid: - _levelIid: - _worldIid: --- !u!114 &3054298492229328851 MonoBehaviour: m_ObjectHideFlags: 0 @@ -939,34 +920,3 @@ Transform: m_Children: [] m_Father: {fileID: 1231602690551946034} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &8241781119640967340 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8485407640382804481} - m_Layer: 0 - m_Name: points_3 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8485407640382804481 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8241781119640967340} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 1, y: -1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 1231602690551946034} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Tests/PlayMode/Fixtures/Resources/FieldsFixture_Nullable.prefab b/Assets/Tests/PlayMode/Fixtures/Resources/FieldsFixture_Nullable.prefab index 7ffcf67f1..59820a3e8 100644 --- a/Assets/Tests/PlayMode/Fixtures/Resources/FieldsFixture_Nullable.prefab +++ b/Assets/Tests/PlayMode/Fixtures/Resources/FieldsFixture_Nullable.prefab @@ -26,7 +26,7 @@ Transform: m_GameObject: {fileID: 5727530961208393058} serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 3.47, y: -1.5, z: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt index e27d28441..11b73a4be 100644 --- a/ProjectSettings/ProjectVersion.txt +++ b/ProjectSettings/ProjectVersion.txt @@ -1,2 +1,2 @@ -m_EditorVersion: 2023.2.14f1 -m_EditorVersionWithRevision: 2023.2.14f1 (eeca29774eb5) +m_EditorVersion: 6000.0.23f1 +m_EditorVersionWithRevision: 6000.0.23f1 (1c4764c07fb4)