From 902a3b3ecbb13bd85f504fc94562928058f87dd4 Mon Sep 17 00:00:00 2001 From: AcademyOfF <51732963+AcademyOfF@users.noreply.github.com> Date: Mon, 18 Nov 2019 00:15:16 -0800 Subject: [PATCH] Search should search commands, not just block names (#775) Search searches command content, not just block names - Commands default to returning their summary content as the searchable content --- .../FungusEditorResources.asset | 0 Assets/Fungus/Scripts/Components/Command.cs | 10 +- .../Fungus/Scripts/Editor/FlowchartWindow.cs | 18 +- .../Editor/LuaScriptedImporter.cs.meta | 11 + Assets/Tests/Everything.unity | 195 +- Assets/Tests/ManyBlocks_700+.unity | 3090 +++++++++-------- Assets/Tests/SearchableCommands.unity | 891 +++++ Assets/Tests/SearchableCommands.unity.meta | 7 + Packages/manifest.json | 8 +- 9 files changed, 2605 insertions(+), 1625 deletions(-) mode change 100644 => 100755 Assets/Fungus/EditorResources/FungusEditorResources.asset create mode 100755 Assets/Fungus/Scripts/Editor/LuaScriptedImporter.cs.meta mode change 100644 => 100755 Assets/Tests/Everything.unity mode change 100644 => 100755 Assets/Tests/ManyBlocks_700+.unity create mode 100755 Assets/Tests/SearchableCommands.unity create mode 100755 Assets/Tests/SearchableCommands.unity.meta mode change 100644 => 100755 Packages/manifest.json diff --git a/Assets/Fungus/EditorResources/FungusEditorResources.asset b/Assets/Fungus/EditorResources/FungusEditorResources.asset old mode 100644 new mode 100755 diff --git a/Assets/Fungus/Scripts/Components/Command.cs b/Assets/Fungus/Scripts/Components/Command.cs index 6188f3ea..fcfaf128 100644 --- a/Assets/Fungus/Scripts/Components/Command.cs +++ b/Assets/Fungus/Scripts/Components/Command.cs @@ -246,6 +246,14 @@ namespace Fungus return ""; } + /// + /// Returns the searchable content for searches on the flowchart window. + /// + public virtual string GetSearchableContent() + { + return GetSummary(); + } + /// /// Returns the help text to display for this command. /// @@ -316,7 +324,7 @@ namespace Fungus } return localizationId; - } + } #endregion } diff --git a/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs b/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs index c053cd9a..6eee2d9a 100644 --- a/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs +++ b/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs @@ -472,7 +472,7 @@ namespace Fungus.EditorUtils //reset all for (int i = 0; filteredBlocks != null && i < filteredBlocks.Length; i++) { - if(filteredBlocks[i] != null) + if (filteredBlocks[i] != null) { filteredBlocks[i].IsFiltered = false; } @@ -483,10 +483,10 @@ namespace Fungus.EditorUtils { Debug.LogWarning("Null block found in filteredBlocks. May be a symptom of an underlying issue"); } - + //gather new - filteredBlocks = blocks.Where(block => block.BlockName.IndexOf(searchString, StringComparison.OrdinalIgnoreCase) >= 0).ToArray(); - + filteredBlocks = blocks.Where(block => IsBlockNameMatch(block) || IsCommandContentMatch(block)).ToArray(); + //update filteredness foreach (var item in filteredBlocks) { @@ -497,6 +497,16 @@ namespace Fungus.EditorUtils } } + private bool IsBlockNameMatch(Block block) + { + return block.BlockName.IndexOf(searchString, StringComparison.OrdinalIgnoreCase) >= 0; + } + + private bool IsCommandContentMatch(Block block) + { + return block.CommandList.Any(command => command.GetSearchableContent().IndexOf(searchString, StringComparison.OrdinalIgnoreCase) >= 0); + } + protected virtual void HandleEarlyEvents(Event e) { switch (e.type) diff --git a/Assets/Fungus/Scripts/Editor/LuaScriptedImporter.cs.meta b/Assets/Fungus/Scripts/Editor/LuaScriptedImporter.cs.meta new file mode 100755 index 00000000..2c70e81f --- /dev/null +++ b/Assets/Fungus/Scripts/Editor/LuaScriptedImporter.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d97e7e55c88779e4ca8688698c573c4e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Tests/Everything.unity b/Assets/Tests/Everything.unity old mode 100644 new mode 100755 index 5a9e46f1..30de9f18 --- a/Assets/Tests/Everything.unity +++ b/Assets/Tests/Everything.unity @@ -94,8 +94,8 @@ LightmapSettings: m_PVRFilteringAtrousPositionSigmaDirect: 0.5 m_PVRFilteringAtrousPositionSigmaIndirect: 2 m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 m_ExportTrainingData: 0 - m_TrainingDataDestination: TrainingData m_LightingDataAsset: {fileID: 0} m_UseShadowmask: 1 --- !u!196 &4 @@ -120,6 +120,86 @@ NavMeshSettings: debug: m_Flags: 0 m_NavMeshData: {fileID: 0} +--- !u!1 &175463560 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 175463564} + - component: {fileID: 175463563} + - component: {fileID: 175463562} + - component: {fileID: 175463561} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &175463561 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 175463560} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1997211142, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ForceModuleActive: 0 +--- !u!114 &175463562 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 175463560} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &175463563 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 175463560} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &175463564 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 175463560} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!115 &407157210 MonoScript: m_ObjectHideFlags: 0 @@ -280,7 +360,6 @@ GameObject: - component: {fileID: 595137782} - component: {fileID: 595137781} - component: {fileID: 595137780} - - component: {fileID: 595137779} - component: {fileID: 595137778} - component: {fileID: 595137777} - component: {fileID: 595137776} @@ -667,7 +746,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 191 - indentLevel: 0 + indentLevel: 2 compareOperator: 0 variable: {fileID: 0} booleanData: @@ -731,7 +810,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 190 - indentLevel: 0 + indentLevel: 2 frameCount: integerRef: {fileID: 0} integerVal: 1 @@ -748,7 +827,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 189 - indentLevel: 0 + indentLevel: 2 _duration: floatRef: {fileID: 0} floatVal: 1 @@ -1008,7 +1087,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 176 - indentLevel: 0 + indentLevel: 2 stopParentFlowchart: 0 targetFlowcharts: [] --- !u!114 &595137714 @@ -1024,7 +1103,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 175 - indentLevel: 0 + indentLevel: 2 flowchart: {fileID: 0} blockName: stringRef: {fileID: 0} @@ -1056,7 +1135,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 173 - indentLevel: 0 + indentLevel: 2 --- !u!114 &595137717 MonoBehaviour: m_ObjectHideFlags: 2 @@ -1761,7 +1840,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 141 - indentLevel: 0 + indentLevel: 2 messageTarget: 0 _message: stringRef: {fileID: 0} @@ -1974,7 +2053,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 133 - indentLevel: 0 + indentLevel: 2 isStartPoint: 0 keyMode: 0 customKey: @@ -2179,7 +2258,7 @@ MonoBehaviour: serializedVersion: 2 x: 200 y: 900 - width: 122 + width: 121.080124 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -2300,7 +2379,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 120 - indentLevel: 0 + indentLevel: 2 --- !u!114 &595137770 MonoBehaviour: m_ObjectHideFlags: 2 @@ -2478,7 +2557,7 @@ MonoBehaviour: serializedVersion: 2 x: 200 y: 840 - width: 136 + width: 135.71426 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -2521,26 +2600,6 @@ MonoBehaviour: move: 0 shiftIntoPlace: 0 waitUntilFinished: 0 ---- !u!114 &595137779 -MonoBehaviour: - m_ObjectHideFlags: 2 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 595137680} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 745686713} - m_Name: - m_EditorClassIdentifier: - itemId: 110 - indentLevel: 0 - ParentTransform: {fileID: 0} - _SettingsString: - stringRef: {fileID: 0} - stringVal: - waitDuration: 0 - SettingsStringOLD: --- !u!114 &595137780 MonoBehaviour: m_ObjectHideFlags: 2 @@ -3337,7 +3396,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 77 - indentLevel: 0 + indentLevel: 1 luaEnvironment: {fileID: 0} luaCompareString: --- !u!114 &595137813 @@ -3507,7 +3566,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 71 - indentLevel: 0 + indentLevel: 1 _sceneName: stringRef: {fileID: 0} stringVal: @@ -3674,7 +3733,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 65 - indentLevel: 0 + indentLevel: 1 key: --- !u!114 &595137825 MonoBehaviour: @@ -3689,7 +3748,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: itemId: 64 - indentLevel: 0 + indentLevel: 1 _targetLabel: stringRef: {fileID: 0} stringVal: @@ -3749,23 +3808,23 @@ MonoBehaviour: booleanEvent: m_PersistentCalls: m_Calls: [] - m_TypeName: Fungus.InvokeEvent+BooleanEvent, Assembly-CSharp, Version=0.0.0.0, - Culture=neutral, PublicKeyToken=null + m_TypeName: Fungus.InvokeEvent+BooleanEvent, Fungus, Version=0.0.0.0, Culture=neutral, + PublicKeyToken=null integerParameter: integerRef: {fileID: 0} integerVal: 0 integerEvent: m_PersistentCalls: m_Calls: [] - m_TypeName: Fungus.InvokeEvent+IntegerEvent, Assembly-CSharp, Version=0.0.0.0, - Culture=neutral, PublicKeyToken=null + m_TypeName: Fungus.InvokeEvent+IntegerEvent, Fungus, Version=0.0.0.0, Culture=neutral, + PublicKeyToken=null floatParameter: floatRef: {fileID: 0} floatVal: 0 floatEvent: m_PersistentCalls: m_Calls: [] - m_TypeName: Fungus.InvokeEvent+FloatEvent, Assembly-CSharp, Version=0.0.0.0, Culture=neutral, + m_TypeName: Fungus.InvokeEvent+FloatEvent, Fungus, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null stringParameter: stringRef: {fileID: 0} @@ -3773,8 +3832,8 @@ MonoBehaviour: stringEvent: m_PersistentCalls: m_Calls: [] - m_TypeName: Fungus.InvokeEvent+StringEvent, Assembly-CSharp, Version=0.0.0.0, - Culture=neutral, PublicKeyToken=null + m_TypeName: Fungus.InvokeEvent+StringEvent, Fungus, Version=0.0.0.0, Culture=neutral, + PublicKeyToken=null --- !u!114 &595137828 MonoBehaviour: m_ObjectHideFlags: 2 @@ -4473,7 +4532,7 @@ MonoBehaviour: - {fileID: 595137782} - {fileID: 595137781} - {fileID: 595137780} - - {fileID: 595137779} + - {fileID: 0} - {fileID: 595137742} - {fileID: 595137741} - {fileID: 595137715} @@ -4733,7 +4792,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 1500 - width: 139 + width: 137.80487 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -4772,7 +4831,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 1440 - width: 148 + width: 147.56096 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -4812,7 +4871,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 1380 - width: 129 + width: 128.04877 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -4970,7 +5029,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 1140 - width: 160 + width: 156.62018 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5207,7 +5266,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 780 - width: 203 + width: 199.12889 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5246,7 +5305,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 720 - width: 142 + width: 144.07663 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5286,7 +5345,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 660 - width: 132 + width: 132.22995 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5325,7 +5384,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 600 - width: 151 + width: 150.34842 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5404,7 +5463,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 480 - width: 126 + width: 124.564445 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5442,7 +5501,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 420 - width: 149 + width: 149.65155 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5600,7 +5659,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 180 - width: 122 + width: 120.38326 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5640,7 +5699,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 120 - width: 140 + width: 137.80487 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5679,7 +5738,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 60 - width: 134 + width: 131.53308 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5718,7 +5777,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 129 + width: 128.74564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 @@ -5740,11 +5799,11 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: version: 1 - scrollPos: {x: 179, y: 264} + scrollPos: {x: 626.1457, y: -508.90268} variablesScrollPos: {x: 0, y: 0} variablesExpanded: 1 blockViewHeight: 400 - zoom: 1 + zoom: 0.8200002 scrollViewRect: serializedVersion: 2 x: 0 @@ -5877,20 +5936,6 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!115 &745686713 -MonoScript: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: - serializedVersion: 5 - m_Script: - m_DefaultReferences: {} - m_Icon: {fileID: 0} - m_ExecutionOrder: 0 - m_ClassName: PlayUsfxrSound - m_Namespace: Fungus --- !u!1 &1318651250 GameObject: m_ObjectHideFlags: 1 diff --git a/Assets/Tests/ManyBlocks_700+.unity b/Assets/Tests/ManyBlocks_700+.unity old mode 100644 new mode 100755 index 59c88bee..ee0ee32f --- a/Assets/Tests/ManyBlocks_700+.unity +++ b/Assets/Tests/ManyBlocks_700+.unity @@ -54,7 +54,7 @@ LightmapSettings: m_EnableBakedLightmaps: 0 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 10 + serializedVersion: 12 m_Resolution: 2 m_BakeResolution: 40 m_AtlasSize: 1024 @@ -62,6 +62,7 @@ LightmapSettings: m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 @@ -76,10 +77,16 @@ LightmapSettings: m_PVRDirectSampleCount: 32 m_PVRSampleCount: 500 m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 m_PVRFilterTypeDirect: 0 m_PVRFilterTypeIndirect: 0 m_PVRFilterTypeAO: 0 - m_PVRFilteringMode: 1 + m_PVREnvironmentMIS: 0 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 m_PVRFilteringGaussRadiusIndirect: 5 @@ -88,6 +95,7 @@ LightmapSettings: m_PVRFilteringAtrousPositionSigmaIndirect: 2 m_PVRFilteringAtrousPositionSigmaAO: 1 m_ShowResolutionOverlay: 1 + m_ExportTrainingData: 0 m_LightingDataAsset: {fileID: 0} m_UseShadowmask: 1 --- !u!196 &4 @@ -914,11 +922,11 @@ MonoBehaviour: serializedVersion: 2 x: 2365.1494 y: -350.79517 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 768 blockName: New Block (Copy)8 (Copy) description: eventHandler: {fileID: 0} @@ -939,11 +947,11 @@ MonoBehaviour: serializedVersion: 2 x: 2323.3489 y: -1002.52216 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 767 blockName: New Block (Copy)7 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -964,11 +972,11 @@ MonoBehaviour: serializedVersion: 2 x: 1549.7476 y: -1145.9761 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 766 blockName: New Block (Copy)6 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -989,11 +997,11 @@ MonoBehaviour: serializedVersion: 2 x: 1406.81 y: -1028.5386 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 765 blockName: New Block (Copy)5 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1014,11 +1022,11 @@ MonoBehaviour: serializedVersion: 2 x: 1528.435 y: -1055.6636 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 764 blockName: New Block (Copy)4 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1039,11 +1047,11 @@ MonoBehaviour: serializedVersion: 2 x: 1445.685 y: -985.9135 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 763 blockName: New Block (Copy)3 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1064,11 +1072,11 @@ MonoBehaviour: serializedVersion: 2 x: 1715.685 y: -743.4135 - width: 505 + width: 476.78558 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 762 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1089,11 +1097,11 @@ MonoBehaviour: serializedVersion: 2 x: 1554.685 y: -768.4135 - width: 512 + width: 483.92844 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 761 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1114,11 +1122,11 @@ MonoBehaviour: serializedVersion: 2 x: 1591.185 y: -784.9135 - width: 468 + width: 442.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 760 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1139,11 +1147,11 @@ MonoBehaviour: serializedVersion: 2 x: 1430.185 y: -809.9135 - width: 475 + width: 449.99988 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 759 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1164,11 +1172,11 @@ MonoBehaviour: serializedVersion: 2 x: 1570.185 y: -944.4135 - width: 468 + width: 442.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 758 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1189,11 +1197,11 @@ MonoBehaviour: serializedVersion: 2 x: 1798.435 y: -813.1635 - width: 468 + width: 442.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 757 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1214,11 +1222,11 @@ MonoBehaviour: serializedVersion: 2 x: 1637.435 y: -838.1635 - width: 475 + width: 449.99988 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 756 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1239,11 +1247,11 @@ MonoBehaviour: serializedVersion: 2 x: 1652.935 y: -1014.1635 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 755 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1264,11 +1272,11 @@ MonoBehaviour: serializedVersion: 2 x: 1512.935 y: -879.6635 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 754 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1289,11 +1297,11 @@ MonoBehaviour: serializedVersion: 2 x: 1673.935 y: -854.6635 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 753 blockName: New Block (Copy) (Copy)2 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1314,11 +1322,11 @@ MonoBehaviour: serializedVersion: 2 x: 1594.06 y: -716.2885 - width: 468 + width: 442.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 752 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1339,11 +1347,11 @@ MonoBehaviour: serializedVersion: 2 x: 1433.06 y: -741.2885 - width: 475 + width: 449.99988 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 751 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1364,11 +1372,11 @@ MonoBehaviour: serializedVersion: 2 x: 1469.56 y: -757.7885 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 750 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1389,11 +1397,11 @@ MonoBehaviour: serializedVersion: 2 x: 1308.56 y: -782.7885 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 749 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1414,11 +1422,11 @@ MonoBehaviour: serializedVersion: 2 x: 1448.56 y: -917.2885 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 748 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1439,11 +1447,11 @@ MonoBehaviour: serializedVersion: 2 x: 1324.06 y: -958.7885 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 747 blockName: New Block (Copy)3 (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1464,11 +1472,11 @@ MonoBehaviour: serializedVersion: 2 x: 1676.81 y: -786.0385 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 746 blockName: New Block (Copy) (Copy) (Copy)2 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1489,11 +1497,11 @@ MonoBehaviour: serializedVersion: 2 x: 1515.81 y: -811.0385 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 745 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1514,11 +1522,11 @@ MonoBehaviour: serializedVersion: 2 x: 1531.31 y: -987.0385 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 744 blockName: New Block (Copy)2 (Copy)2 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1539,11 +1547,11 @@ MonoBehaviour: serializedVersion: 2 x: 1391.31 y: -852.5385 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 743 blockName: New Block (Copy)1 (Copy)3 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1564,11 +1572,11 @@ MonoBehaviour: serializedVersion: 2 x: 1552.31 y: -827.5385 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 742 blockName: New Block (Copy) (Copy)3 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1589,11 +1597,11 @@ MonoBehaviour: serializedVersion: 2 x: 1588.6226 y: -1103.3511 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 741 blockName: New Block (Copy)3 (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1614,11 +1622,11 @@ MonoBehaviour: serializedVersion: 2 x: 1858.6226 y: -860.851 - width: 468 + width: 442.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 740 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1639,11 +1647,11 @@ MonoBehaviour: serializedVersion: 2 x: 1697.6226 y: -885.851 - width: 475 + width: 449.99988 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 739 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1664,11 +1672,11 @@ MonoBehaviour: serializedVersion: 2 x: 1734.1226 y: -902.351 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 738 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1689,11 +1697,11 @@ MonoBehaviour: serializedVersion: 2 x: 1573.1226 y: -927.351 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 737 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1714,11 +1722,11 @@ MonoBehaviour: serializedVersion: 2 x: 1713.1226 y: -1061.8511 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 736 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1739,11 +1747,11 @@ MonoBehaviour: serializedVersion: 2 x: 1941.3726 y: -930.601 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 735 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1764,11 +1772,11 @@ MonoBehaviour: serializedVersion: 2 x: 1780.3726 y: -955.601 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 734 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1789,11 +1797,11 @@ MonoBehaviour: serializedVersion: 2 x: 1795.8726 y: -1131.6011 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 733 blockName: New Block (Copy)2 (Copy)1 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1814,11 +1822,11 @@ MonoBehaviour: serializedVersion: 2 x: 1655.8726 y: -997.101 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 732 blockName: New Block (Copy)1 (Copy)2 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1839,11 +1847,11 @@ MonoBehaviour: serializedVersion: 2 x: 1816.8726 y: -972.101 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 731 blockName: New Block (Copy) (Copy)2 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1864,11 +1872,11 @@ MonoBehaviour: serializedVersion: 2 x: 1671.3726 y: -1173.1011 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 730 blockName: New Block (Copy)4 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1889,11 +1897,11 @@ MonoBehaviour: serializedVersion: 2 x: 1736.9976 y: -833.726 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 729 blockName: New Block (Copy) (Copy) (Copy) (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1914,11 +1922,11 @@ MonoBehaviour: serializedVersion: 2 x: 1575.9976 y: -858.726 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 728 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1939,11 +1947,11 @@ MonoBehaviour: serializedVersion: 2 x: 1612.4976 y: -875.226 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 727 blockName: New Block (Copy) (Copy)1 (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1964,11 +1972,11 @@ MonoBehaviour: serializedVersion: 2 x: 1451.4976 y: -900.226 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 726 blockName: New Block (Copy)1 (Copy)1 (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -1989,11 +1997,11 @@ MonoBehaviour: serializedVersion: 2 x: 1591.4976 y: -1034.7261 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 725 blockName: New Block (Copy)2 (Copy) (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2014,11 +2022,11 @@ MonoBehaviour: serializedVersion: 2 x: 1466.9976 y: -1076.2261 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 724 blockName: New Block (Copy)3 (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2039,11 +2047,11 @@ MonoBehaviour: serializedVersion: 2 x: 1819.7476 y: -903.476 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 723 blockName: New Block (Copy) (Copy) (Copy)3 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2064,11 +2072,11 @@ MonoBehaviour: serializedVersion: 2 x: 1658.7476 y: -928.476 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 722 blockName: New Block (Copy)1 (Copy) (Copy)3 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2089,11 +2097,11 @@ MonoBehaviour: serializedVersion: 2 x: 1674.2476 y: -1104.4761 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 721 blockName: New Block (Copy)2 (Copy)3 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2114,11 +2122,11 @@ MonoBehaviour: serializedVersion: 2 x: 1534.2476 y: -969.976 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 720 blockName: New Block (Copy)1 (Copy)4 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2139,11 +2147,11 @@ MonoBehaviour: serializedVersion: 2 x: 1695.2476 y: -944.976 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 719 blockName: New Block (Copy) (Copy)4 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2164,11 +2172,11 @@ MonoBehaviour: serializedVersion: 2 x: 2302.0364 y: -912.20966 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 718 blockName: New Block (Copy)4 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2189,11 +2197,11 @@ MonoBehaviour: serializedVersion: 2 x: 2219.2864 y: -842.45966 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 717 blockName: New Block (Copy)3 (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2214,11 +2222,11 @@ MonoBehaviour: serializedVersion: 2 x: 2489.2864 y: -599.9597 - width: 468 + width: 442.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 716 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2239,11 +2247,11 @@ MonoBehaviour: serializedVersion: 2 x: 2328.2864 y: -624.9597 - width: 475 + width: 449.99988 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 715 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2264,11 +2272,11 @@ MonoBehaviour: serializedVersion: 2 x: 2364.7864 y: -641.4597 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 714 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2289,11 +2297,11 @@ MonoBehaviour: serializedVersion: 2 x: 2203.7864 y: -666.4597 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 713 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2314,11 +2322,11 @@ MonoBehaviour: serializedVersion: 2 x: 2343.7864 y: -800.95966 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 712 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2339,11 +2347,11 @@ MonoBehaviour: serializedVersion: 2 x: 2572.0364 y: -669.7097 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 711 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2364,11 +2372,11 @@ MonoBehaviour: serializedVersion: 2 x: 2411.0364 y: -694.70966 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 710 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2389,11 +2397,11 @@ MonoBehaviour: serializedVersion: 2 x: 2426.5364 y: -870.70966 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 709 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2414,11 +2422,11 @@ MonoBehaviour: serializedVersion: 2 x: 2286.5364 y: -736.20966 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 708 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2439,11 +2447,11 @@ MonoBehaviour: serializedVersion: 2 x: 2447.5364 y: -711.20966 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 707 blockName: New Block (Copy) (Copy)2 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2464,11 +2472,11 @@ MonoBehaviour: serializedVersion: 2 x: 2367.6614 y: -572.8347 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 706 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2489,11 +2497,11 @@ MonoBehaviour: serializedVersion: 2 x: 2206.6614 y: -597.8347 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 705 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2514,11 +2522,11 @@ MonoBehaviour: serializedVersion: 2 x: 2243.1614 y: -614.3347 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 704 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2539,11 +2547,11 @@ MonoBehaviour: serializedVersion: 2 x: 2082.1614 y: -639.3347 - width: 401 + width: 382.14276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 703 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2564,11 +2572,11 @@ MonoBehaviour: serializedVersion: 2 x: 2222.1614 y: -773.83466 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 702 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2589,11 +2597,11 @@ MonoBehaviour: serializedVersion: 2 x: 2097.6614 y: -815.33466 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 701 blockName: New Block (Copy)3 (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2614,11 +2622,11 @@ MonoBehaviour: serializedVersion: 2 x: 2450.4114 y: -642.5847 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 700 blockName: New Block (Copy) (Copy) (Copy)2 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2639,11 +2647,11 @@ MonoBehaviour: serializedVersion: 2 x: 2289.4114 y: -667.5847 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 699 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2664,11 +2672,11 @@ MonoBehaviour: serializedVersion: 2 x: 2304.9114 y: -843.58466 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 698 blockName: New Block (Copy)2 (Copy)2 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2689,11 +2697,11 @@ MonoBehaviour: serializedVersion: 2 x: 2164.9114 y: -709.08466 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 697 blockName: New Block (Copy)1 (Copy)3 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2714,11 +2722,11 @@ MonoBehaviour: serializedVersion: 2 x: 2325.9114 y: -684.08466 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 696 blockName: New Block (Copy) (Copy)3 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2739,11 +2747,11 @@ MonoBehaviour: serializedVersion: 2 x: 2180.4114 y: -885.08466 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 695 blockName: New Block (Copy)5 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2764,11 +2772,11 @@ MonoBehaviour: serializedVersion: 2 x: 2362.2239 y: -959.89716 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 694 blockName: New Block (Copy)3 (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2789,11 +2797,11 @@ MonoBehaviour: serializedVersion: 2 x: 2632.2239 y: -717.39716 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 693 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2814,11 +2822,11 @@ MonoBehaviour: serializedVersion: 2 x: 2471.2239 y: -742.39716 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 692 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2839,11 +2847,11 @@ MonoBehaviour: serializedVersion: 2 x: 2507.7239 y: -758.89716 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 691 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2864,11 +2872,11 @@ MonoBehaviour: serializedVersion: 2 x: 2346.7239 y: -783.89716 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 690 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2889,11 +2897,11 @@ MonoBehaviour: serializedVersion: 2 x: 2486.7239 y: -918.39716 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 689 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2914,11 +2922,11 @@ MonoBehaviour: serializedVersion: 2 x: 2714.9739 y: -787.14716 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 688 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2939,11 +2947,11 @@ MonoBehaviour: serializedVersion: 2 x: 2553.9739 y: -812.14716 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 687 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2964,11 +2972,11 @@ MonoBehaviour: serializedVersion: 2 x: 2569.4739 y: -988.14716 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 686 blockName: New Block (Copy)2 (Copy)1 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -2989,11 +2997,11 @@ MonoBehaviour: serializedVersion: 2 x: 2429.4739 y: -853.64716 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 685 blockName: New Block (Copy)1 (Copy)2 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3014,11 +3022,11 @@ MonoBehaviour: serializedVersion: 2 x: 2590.4739 y: -828.64716 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 684 blockName: New Block (Copy) (Copy)2 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3039,11 +3047,11 @@ MonoBehaviour: serializedVersion: 2 x: 2444.9739 y: -1029.6472 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 683 blockName: New Block (Copy)4 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3064,11 +3072,11 @@ MonoBehaviour: serializedVersion: 2 x: 2510.5989 y: -690.27216 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 682 blockName: New Block (Copy) (Copy) (Copy) (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3089,11 +3097,11 @@ MonoBehaviour: serializedVersion: 2 x: 2349.5989 y: -715.27216 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 681 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3114,11 +3122,11 @@ MonoBehaviour: serializedVersion: 2 x: 2386.0989 y: -731.77216 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 680 blockName: New Block (Copy) (Copy)1 (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3139,11 +3147,11 @@ MonoBehaviour: serializedVersion: 2 x: 2225.0989 y: -756.77216 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 679 blockName: New Block (Copy)1 (Copy)1 (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3164,11 +3172,11 @@ MonoBehaviour: serializedVersion: 2 x: 2365.0989 y: -891.27216 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 678 blockName: New Block (Copy)2 (Copy) (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3189,11 +3197,11 @@ MonoBehaviour: serializedVersion: 2 x: 2240.5989 y: -932.77216 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 677 blockName: New Block (Copy)3 (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3214,11 +3222,11 @@ MonoBehaviour: serializedVersion: 2 x: 2593.3489 y: -760.02216 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 676 blockName: New Block (Copy) (Copy) (Copy)4 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3239,11 +3247,11 @@ MonoBehaviour: serializedVersion: 2 x: 2432.3489 y: -785.02216 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 675 blockName: New Block (Copy)1 (Copy) (Copy)4 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3264,11 +3272,11 @@ MonoBehaviour: serializedVersion: 2 x: 2447.8489 y: -961.02216 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 674 blockName: New Block (Copy)2 (Copy)4 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3289,11 +3297,11 @@ MonoBehaviour: serializedVersion: 2 x: 2307.8489 y: -826.52216 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 673 blockName: New Block (Copy)1 (Copy)5 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3314,11 +3322,11 @@ MonoBehaviour: serializedVersion: 2 x: 2468.8489 y: -801.52216 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 672 blockName: New Block (Copy) (Copy)5 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -3339,11 +3347,11 @@ MonoBehaviour: serializedVersion: 2 x: 1448.6107 y: -376.81152 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 671 blockName: New Block (Copy)5 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3364,11 +3372,11 @@ MonoBehaviour: serializedVersion: 2 x: 1570.2357 y: -403.93652 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 670 blockName: New Block (Copy)4 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3389,11 +3397,11 @@ MonoBehaviour: serializedVersion: 2 x: 1487.4857 y: -334.18652 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 669 blockName: New Block (Copy)3 (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3414,11 +3422,11 @@ MonoBehaviour: serializedVersion: 2 x: 1757.4858 y: -91.68652 - width: 468 + width: 442.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 668 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3439,11 +3447,11 @@ MonoBehaviour: serializedVersion: 2 x: 1596.4857 y: -116.68652 - width: 475 + width: 449.99988 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 667 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3464,11 +3472,11 @@ MonoBehaviour: serializedVersion: 2 x: 1632.9857 y: -133.18652 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 666 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3489,11 +3497,11 @@ MonoBehaviour: serializedVersion: 2 x: 1471.9857 y: -158.18652 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 665 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3514,11 +3522,11 @@ MonoBehaviour: serializedVersion: 2 x: 1611.9857 y: -292.68652 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 664 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3539,11 +3547,11 @@ MonoBehaviour: serializedVersion: 2 x: 1840.2358 y: -161.43652 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 663 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3564,11 +3572,11 @@ MonoBehaviour: serializedVersion: 2 x: 1679.2357 y: -186.43652 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 662 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3589,11 +3597,11 @@ MonoBehaviour: serializedVersion: 2 x: 1694.7357 y: -362.43652 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 661 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3614,11 +3622,11 @@ MonoBehaviour: serializedVersion: 2 x: 1554.7357 y: -227.93652 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 660 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3639,11 +3647,11 @@ MonoBehaviour: serializedVersion: 2 x: 1715.7357 y: -202.93652 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 659 blockName: New Block (Copy) (Copy)2 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3664,11 +3672,11 @@ MonoBehaviour: serializedVersion: 2 x: 1635.8607 y: -64.56152 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 658 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3689,11 +3697,11 @@ MonoBehaviour: serializedVersion: 2 x: 1474.8607 y: -89.56152 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 657 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3714,11 +3722,11 @@ MonoBehaviour: serializedVersion: 2 x: 1511.3607 y: -106.06152 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 656 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3739,11 +3747,11 @@ MonoBehaviour: serializedVersion: 2 x: 1350.3607 y: -131.06152 - width: 401 + width: 382.14276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 655 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3764,11 +3772,11 @@ MonoBehaviour: serializedVersion: 2 x: 1490.3607 y: -265.56152 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 654 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3789,11 +3797,11 @@ MonoBehaviour: serializedVersion: 2 x: 1365.8607 y: -307.06152 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 653 blockName: New Block (Copy)3 (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3814,11 +3822,11 @@ MonoBehaviour: serializedVersion: 2 x: 1718.6107 y: -134.31152 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 652 blockName: New Block (Copy) (Copy) (Copy)2 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3839,11 +3847,11 @@ MonoBehaviour: serializedVersion: 2 x: 1557.6107 y: -159.31152 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 651 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3864,11 +3872,11 @@ MonoBehaviour: serializedVersion: 2 x: 1573.1107 y: -335.31152 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 650 blockName: New Block (Copy)2 (Copy)2 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3889,11 +3897,11 @@ MonoBehaviour: serializedVersion: 2 x: 1433.1107 y: -200.81152 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 649 blockName: New Block (Copy)1 (Copy)3 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3914,11 +3922,11 @@ MonoBehaviour: serializedVersion: 2 x: 1594.1107 y: -175.81152 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 648 blockName: New Block (Copy) (Copy)3 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3939,11 +3947,11 @@ MonoBehaviour: serializedVersion: 2 x: 1630.4232 y: -451.62402 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 647 blockName: New Block (Copy)3 (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3964,11 +3972,11 @@ MonoBehaviour: serializedVersion: 2 x: 1900.4233 y: -209.12402 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 646 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -3989,11 +3997,11 @@ MonoBehaviour: serializedVersion: 2 x: 1739.4233 y: -234.12402 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 645 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4014,11 +4022,11 @@ MonoBehaviour: serializedVersion: 2 x: 1775.9233 y: -250.62402 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 644 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4039,11 +4047,11 @@ MonoBehaviour: serializedVersion: 2 x: 1614.9232 y: -275.62402 - width: 401 + width: 382.14276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 643 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4064,11 +4072,11 @@ MonoBehaviour: serializedVersion: 2 x: 1754.9233 y: -410.12402 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 642 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4089,11 +4097,11 @@ MonoBehaviour: serializedVersion: 2 x: 1983.1733 y: -278.87402 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 641 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4114,11 +4122,11 @@ MonoBehaviour: serializedVersion: 2 x: 1822.1733 y: -303.87402 - width: 401 + width: 382.14276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 640 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4139,11 +4147,11 @@ MonoBehaviour: serializedVersion: 2 x: 1837.6733 y: -479.87402 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 639 blockName: New Block (Copy)2 (Copy)1 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4164,11 +4172,11 @@ MonoBehaviour: serializedVersion: 2 x: 1697.6732 y: -345.37402 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 638 blockName: New Block (Copy)1 (Copy)2 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4189,11 +4197,11 @@ MonoBehaviour: serializedVersion: 2 x: 1858.6733 y: -320.37402 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 637 blockName: New Block (Copy) (Copy)2 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4214,11 +4222,11 @@ MonoBehaviour: serializedVersion: 2 x: 1713.1732 y: -521.374 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 636 blockName: New Block (Copy)4 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4239,11 +4247,11 @@ MonoBehaviour: serializedVersion: 2 x: 1778.7983 y: -181.99902 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 635 blockName: New Block (Copy) (Copy) (Copy) (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4264,11 +4272,11 @@ MonoBehaviour: serializedVersion: 2 x: 1617.7982 y: -206.99902 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 634 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4289,11 +4297,11 @@ MonoBehaviour: serializedVersion: 2 x: 1654.2982 y: -223.49902 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 633 blockName: New Block (Copy) (Copy)1 (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4314,11 +4322,11 @@ MonoBehaviour: serializedVersion: 2 x: 1493.2982 y: -248.49902 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 632 blockName: New Block (Copy)1 (Copy)1 (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4339,11 +4347,11 @@ MonoBehaviour: serializedVersion: 2 x: 1633.2982 y: -382.99902 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 631 blockName: New Block (Copy)2 (Copy) (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4364,11 +4372,11 @@ MonoBehaviour: serializedVersion: 2 x: 1508.7982 y: -424.49902 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 630 blockName: New Block (Copy)3 (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4389,11 +4397,11 @@ MonoBehaviour: serializedVersion: 2 x: 1861.5483 y: -251.74902 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 629 blockName: New Block (Copy) (Copy) (Copy)3 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4414,11 +4422,11 @@ MonoBehaviour: serializedVersion: 2 x: 1700.5482 y: -276.74902 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 628 blockName: New Block (Copy)1 (Copy) (Copy)3 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4439,11 +4447,11 @@ MonoBehaviour: serializedVersion: 2 x: 1716.0482 y: -452.74902 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 627 blockName: New Block (Copy)2 (Copy)3 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4464,11 +4472,11 @@ MonoBehaviour: serializedVersion: 2 x: 1576.0482 y: -318.24902 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 626 blockName: New Block (Copy)1 (Copy)4 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4489,11 +4497,11 @@ MonoBehaviour: serializedVersion: 2 x: 1737.0483 y: -293.24902 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 625 blockName: New Block (Copy) (Copy)4 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4514,11 +4522,11 @@ MonoBehaviour: serializedVersion: 2 x: 1591.5482 y: -494.24902 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 624 blockName: New Block (Copy)6 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -4539,11 +4547,11 @@ MonoBehaviour: serializedVersion: 2 x: 2343.837 y: -260.48267 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 623 blockName: New Block (Copy)4 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4564,11 +4572,11 @@ MonoBehaviour: serializedVersion: 2 x: 2261.087 y: -190.73267 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 622 blockName: New Block (Copy)3 (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4589,11 +4597,11 @@ MonoBehaviour: serializedVersion: 2 x: 2531.087 y: 51.767334 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 621 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4614,11 +4622,11 @@ MonoBehaviour: serializedVersion: 2 x: 2370.087 y: 26.767334 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 620 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4639,11 +4647,11 @@ MonoBehaviour: serializedVersion: 2 x: 2406.587 y: 10.267334 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 619 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4664,11 +4672,11 @@ MonoBehaviour: serializedVersion: 2 x: 2245.587 y: -14.732666 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 618 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4689,11 +4697,11 @@ MonoBehaviour: serializedVersion: 2 x: 2385.587 y: -149.23267 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 617 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4714,11 +4722,11 @@ MonoBehaviour: serializedVersion: 2 x: 2613.837 y: -17.982666 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 616 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4739,11 +4747,11 @@ MonoBehaviour: serializedVersion: 2 x: 2452.837 y: -42.982666 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 615 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4764,11 +4772,11 @@ MonoBehaviour: serializedVersion: 2 x: 2468.337 y: -218.98267 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 614 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4789,11 +4797,11 @@ MonoBehaviour: serializedVersion: 2 x: 2328.337 y: -84.482666 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 613 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4814,11 +4822,11 @@ MonoBehaviour: serializedVersion: 2 x: 2489.337 y: -59.482666 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 612 blockName: New Block (Copy) (Copy)2 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4839,11 +4847,11 @@ MonoBehaviour: serializedVersion: 2 x: 2409.462 y: 78.892334 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 611 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4864,11 +4872,11 @@ MonoBehaviour: serializedVersion: 2 x: 2248.462 y: 53.892334 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 610 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4889,11 +4897,11 @@ MonoBehaviour: serializedVersion: 2 x: 2284.962 y: 37.392334 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 609 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4914,11 +4922,11 @@ MonoBehaviour: serializedVersion: 2 x: 2123.962 y: 12.392334 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 608 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4939,11 +4947,11 @@ MonoBehaviour: serializedVersion: 2 x: 2263.962 y: -122.107666 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 607 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4964,11 +4972,11 @@ MonoBehaviour: serializedVersion: 2 x: 2139.462 y: -163.60767 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 606 blockName: New Block (Copy)3 (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -4989,11 +4997,11 @@ MonoBehaviour: serializedVersion: 2 x: 2492.212 y: 9.142334 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 605 blockName: New Block (Copy) (Copy) (Copy)2 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -5014,11 +5022,11 @@ MonoBehaviour: serializedVersion: 2 x: 2331.212 y: -15.857666 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 604 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -5039,11 +5047,11 @@ MonoBehaviour: serializedVersion: 2 x: 2346.712 y: -191.85767 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 603 blockName: New Block (Copy)2 (Copy)2 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -5064,11 +5072,11 @@ MonoBehaviour: serializedVersion: 2 x: 2206.712 y: -57.357666 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 602 blockName: New Block (Copy)1 (Copy)3 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -5089,11 +5097,11 @@ MonoBehaviour: serializedVersion: 2 x: 2367.712 y: -32.357666 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 601 blockName: New Block (Copy) (Copy)3 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -5114,11 +5122,11 @@ MonoBehaviour: serializedVersion: 2 x: 2222.212 y: -233.35767 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 600 blockName: New Block (Copy)5 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -5139,11 +5147,11 @@ MonoBehaviour: serializedVersion: 2 x: 2404.0244 y: -308.17017 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 599 blockName: New Block (Copy)3 (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5164,11 +5172,11 @@ MonoBehaviour: serializedVersion: 2 x: 2674.0244 y: -65.670166 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 598 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5189,11 +5197,11 @@ MonoBehaviour: serializedVersion: 2 x: 2513.0244 y: -90.670166 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 597 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5214,11 +5222,11 @@ MonoBehaviour: serializedVersion: 2 x: 2549.5244 y: -107.170166 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 596 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5239,11 +5247,11 @@ MonoBehaviour: serializedVersion: 2 x: 2388.5244 y: -132.17017 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 595 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5264,11 +5272,11 @@ MonoBehaviour: serializedVersion: 2 x: 2528.5244 y: -266.67017 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 594 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5289,11 +5297,11 @@ MonoBehaviour: serializedVersion: 2 x: 2756.7744 y: -135.42017 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 593 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5314,11 +5322,11 @@ MonoBehaviour: serializedVersion: 2 x: 2595.7744 y: -160.42017 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 592 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5339,11 +5347,11 @@ MonoBehaviour: serializedVersion: 2 x: 2611.2744 y: -336.42017 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 591 blockName: New Block (Copy)2 (Copy)1 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5364,11 +5372,11 @@ MonoBehaviour: serializedVersion: 2 x: 2471.2744 y: -201.92017 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 590 blockName: New Block (Copy)1 (Copy)2 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5389,11 +5397,11 @@ MonoBehaviour: serializedVersion: 2 x: 2632.2744 y: -176.92017 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 589 blockName: New Block (Copy) (Copy)2 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5414,11 +5422,11 @@ MonoBehaviour: serializedVersion: 2 x: 2486.7744 y: -377.92017 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 588 blockName: New Block (Copy)4 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -5439,11 +5447,11 @@ MonoBehaviour: serializedVersion: 2 x: 2552.3994 y: -38.545166 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 587 blockName: New Block (Copy) (Copy) (Copy) (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -5464,11 +5472,11 @@ MonoBehaviour: serializedVersion: 2 x: 2391.3994 y: -63.545166 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 586 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -5489,11 +5497,11 @@ MonoBehaviour: serializedVersion: 2 x: 2427.8994 y: -80.045166 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 585 blockName: New Block (Copy) (Copy)1 (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -5514,11 +5522,11 @@ MonoBehaviour: serializedVersion: 2 x: 2266.8994 y: -105.045166 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 584 blockName: New Block (Copy)1 (Copy)1 (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -5539,11 +5547,11 @@ MonoBehaviour: serializedVersion: 2 x: 2406.8994 y: -239.54517 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 583 blockName: New Block (Copy)2 (Copy) (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -5564,11 +5572,11 @@ MonoBehaviour: serializedVersion: 2 x: 2282.3994 y: -281.04517 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 582 blockName: New Block (Copy)3 (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -5589,11 +5597,11 @@ MonoBehaviour: serializedVersion: 2 x: 2635.1494 y: -108.295166 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 581 blockName: New Block (Copy) (Copy) (Copy)5 (Copy) description: eventHandler: {fileID: 0} @@ -5614,11 +5622,11 @@ MonoBehaviour: serializedVersion: 2 x: 2474.1494 y: -133.29517 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 580 blockName: New Block (Copy)1 (Copy) (Copy)5 (Copy) description: eventHandler: {fileID: 0} @@ -5639,11 +5647,11 @@ MonoBehaviour: serializedVersion: 2 x: 2489.6494 y: -309.29517 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 579 blockName: New Block (Copy)2 (Copy)5 (Copy) description: eventHandler: {fileID: 0} @@ -5664,11 +5672,11 @@ MonoBehaviour: serializedVersion: 2 x: 2349.6494 y: -174.79517 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 578 blockName: New Block (Copy)1 (Copy)6 (Copy) description: eventHandler: {fileID: 0} @@ -5689,11 +5697,11 @@ MonoBehaviour: serializedVersion: 2 x: 2510.6494 y: -149.79517 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 577 blockName: New Block (Copy) (Copy)6 (Copy) description: eventHandler: {fileID: 0} @@ -5714,11 +5722,11 @@ MonoBehaviour: serializedVersion: 2 x: 977.64795 y: -988.1125 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 576 blockName: New Block (Copy)6 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5739,11 +5747,11 @@ MonoBehaviour: serializedVersion: 2 x: 834.71045 y: -870.675 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 575 blockName: New Block (Copy)5 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5764,11 +5772,11 @@ MonoBehaviour: serializedVersion: 2 x: 956.33545 y: -897.8 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 574 blockName: New Block (Copy)4 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5789,11 +5797,11 @@ MonoBehaviour: serializedVersion: 2 x: 873.58545 y: -828.05 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 573 blockName: New Block (Copy)3 (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5814,11 +5822,11 @@ MonoBehaviour: serializedVersion: 2 x: 1143.5854 y: -585.55005 - width: 468 + width: 442.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 572 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5839,11 +5847,11 @@ MonoBehaviour: serializedVersion: 2 x: 982.58545 y: -610.55005 - width: 475 + width: 449.99988 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 571 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5864,11 +5872,11 @@ MonoBehaviour: serializedVersion: 2 x: 1019.08545 y: -627.05005 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 570 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5889,11 +5897,11 @@ MonoBehaviour: serializedVersion: 2 x: 858.08545 y: -652.05005 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 569 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5914,11 +5922,11 @@ MonoBehaviour: serializedVersion: 2 x: 998.08545 y: -786.55 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 568 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5939,11 +5947,11 @@ MonoBehaviour: serializedVersion: 2 x: 1226.3354 y: -655.30005 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 567 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5964,11 +5972,11 @@ MonoBehaviour: serializedVersion: 2 x: 1065.3354 y: -680.3 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 566 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -5989,11 +5997,11 @@ MonoBehaviour: serializedVersion: 2 x: 1080.8354 y: -856.3 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 565 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6014,11 +6022,11 @@ MonoBehaviour: serializedVersion: 2 x: 940.83545 y: -721.8 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 564 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6039,11 +6047,11 @@ MonoBehaviour: serializedVersion: 2 x: 1101.8354 y: -696.8 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 563 blockName: New Block (Copy) (Copy)2 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6064,11 +6072,11 @@ MonoBehaviour: serializedVersion: 2 x: 1021.96045 y: -558.42505 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 562 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6089,11 +6097,11 @@ MonoBehaviour: serializedVersion: 2 x: 860.96045 y: -583.42505 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 561 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6114,11 +6122,11 @@ MonoBehaviour: serializedVersion: 2 x: 897.46045 y: -599.92505 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 560 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6139,11 +6147,11 @@ MonoBehaviour: serializedVersion: 2 x: 736.46045 y: -624.92505 - width: 401 + width: 382.14276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 559 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6164,11 +6172,11 @@ MonoBehaviour: serializedVersion: 2 x: 876.46045 y: -759.425 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 558 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6189,11 +6197,11 @@ MonoBehaviour: serializedVersion: 2 x: 751.96045 y: -800.925 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 557 blockName: New Block (Copy)3 (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6214,11 +6222,11 @@ MonoBehaviour: serializedVersion: 2 x: 1104.7104 y: -628.17505 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 556 blockName: New Block (Copy) (Copy) (Copy)2 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6239,11 +6247,11 @@ MonoBehaviour: serializedVersion: 2 x: 943.71045 y: -653.17505 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 555 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6264,11 +6272,11 @@ MonoBehaviour: serializedVersion: 2 x: 959.21045 y: -829.175 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 554 blockName: New Block (Copy)2 (Copy)2 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6289,11 +6297,11 @@ MonoBehaviour: serializedVersion: 2 x: 819.21045 y: -694.675 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 553 blockName: New Block (Copy)1 (Copy)3 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6314,11 +6322,11 @@ MonoBehaviour: serializedVersion: 2 x: 980.21045 y: -669.67505 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 552 blockName: New Block (Copy) (Copy)3 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6339,11 +6347,11 @@ MonoBehaviour: serializedVersion: 2 x: 1016.52295 y: -945.4875 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 551 blockName: New Block (Copy)3 (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6364,11 +6372,11 @@ MonoBehaviour: serializedVersion: 2 x: 1286.523 y: -702.9875 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 550 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6389,11 +6397,11 @@ MonoBehaviour: serializedVersion: 2 x: 1125.523 y: -727.9875 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 549 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6414,11 +6422,11 @@ MonoBehaviour: serializedVersion: 2 x: 1162.023 y: -744.4875 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 548 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6439,11 +6447,11 @@ MonoBehaviour: serializedVersion: 2 x: 1001.02295 y: -769.4875 - width: 401 + width: 382.14276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 547 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6464,11 +6472,11 @@ MonoBehaviour: serializedVersion: 2 x: 1141.023 y: -903.9875 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 546 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6489,11 +6497,11 @@ MonoBehaviour: serializedVersion: 2 x: 1369.273 y: -772.7375 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 545 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6514,11 +6522,11 @@ MonoBehaviour: serializedVersion: 2 x: 1208.273 y: -797.7375 - width: 401 + width: 382.14276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 544 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6539,11 +6547,11 @@ MonoBehaviour: serializedVersion: 2 x: 1223.773 y: -973.7375 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 543 blockName: New Block (Copy)2 (Copy)1 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6564,11 +6572,11 @@ MonoBehaviour: serializedVersion: 2 x: 1083.773 y: -839.2375 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 542 blockName: New Block (Copy)1 (Copy)2 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6589,11 +6597,11 @@ MonoBehaviour: serializedVersion: 2 x: 1244.773 y: -814.2375 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 541 blockName: New Block (Copy) (Copy)2 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6614,11 +6622,11 @@ MonoBehaviour: serializedVersion: 2 x: 1099.273 y: -1015.2375 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 540 blockName: New Block (Copy)4 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6639,11 +6647,11 @@ MonoBehaviour: serializedVersion: 2 x: 1164.898 y: -675.86255 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 539 blockName: New Block (Copy) (Copy) (Copy) (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6664,11 +6672,11 @@ MonoBehaviour: serializedVersion: 2 x: 1003.89795 y: -700.8625 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 538 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6689,11 +6697,11 @@ MonoBehaviour: serializedVersion: 2 x: 1040.398 y: -717.3625 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 537 blockName: New Block (Copy) (Copy)1 (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6714,11 +6722,11 @@ MonoBehaviour: serializedVersion: 2 x: 879.39795 y: -742.3625 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 536 blockName: New Block (Copy)1 (Copy)1 (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6739,11 +6747,11 @@ MonoBehaviour: serializedVersion: 2 x: 1019.39795 y: -876.8625 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 535 blockName: New Block (Copy)2 (Copy) (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6764,11 +6772,11 @@ MonoBehaviour: serializedVersion: 2 x: 894.89795 y: -918.3625 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 534 blockName: New Block (Copy)3 (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6789,11 +6797,11 @@ MonoBehaviour: serializedVersion: 2 x: 1247.648 y: -745.6125 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 533 blockName: New Block (Copy) (Copy) (Copy)3 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6814,11 +6822,11 @@ MonoBehaviour: serializedVersion: 2 x: 1086.648 y: -770.6125 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 532 blockName: New Block (Copy)1 (Copy) (Copy)3 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6839,11 +6847,11 @@ MonoBehaviour: serializedVersion: 2 x: 1102.148 y: -946.6125 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 531 blockName: New Block (Copy)2 (Copy)3 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6864,11 +6872,11 @@ MonoBehaviour: serializedVersion: 2 x: 962.14795 y: -812.1125 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 530 blockName: New Block (Copy)1 (Copy)4 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6889,11 +6897,11 @@ MonoBehaviour: serializedVersion: 2 x: 1123.148 y: -787.1125 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 529 blockName: New Block (Copy) (Copy)4 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -6914,11 +6922,11 @@ MonoBehaviour: serializedVersion: 2 x: 1729.9368 y: -754.3461 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 528 blockName: New Block (Copy)4 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -6939,11 +6947,11 @@ MonoBehaviour: serializedVersion: 2 x: 1647.1868 y: -684.5961 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 527 blockName: New Block (Copy)3 (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -6964,11 +6972,11 @@ MonoBehaviour: serializedVersion: 2 x: 1917.1868 y: -442.0962 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 526 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -6989,11 +6997,11 @@ MonoBehaviour: serializedVersion: 2 x: 1756.1868 y: -467.0962 - width: 438 + width: 416.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 525 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7014,11 +7022,11 @@ MonoBehaviour: serializedVersion: 2 x: 1792.6868 y: -483.5962 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 524 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7039,11 +7047,11 @@ MonoBehaviour: serializedVersion: 2 x: 1631.6868 y: -508.5962 - width: 401 + width: 382.14276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 523 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7064,11 +7072,11 @@ MonoBehaviour: serializedVersion: 2 x: 1771.6868 y: -643.0962 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 522 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7089,11 +7097,11 @@ MonoBehaviour: serializedVersion: 2 x: 1999.9368 y: -511.8462 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 521 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7114,11 +7122,11 @@ MonoBehaviour: serializedVersion: 2 x: 1838.9368 y: -536.8462 - width: 401 + width: 382.14276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 520 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7139,11 +7147,11 @@ MonoBehaviour: serializedVersion: 2 x: 1854.4368 y: -712.8461 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 519 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7164,11 +7172,11 @@ MonoBehaviour: serializedVersion: 2 x: 1714.4368 y: -578.3462 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 518 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7189,11 +7197,11 @@ MonoBehaviour: serializedVersion: 2 x: 1875.4368 y: -553.3462 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 517 blockName: New Block (Copy) (Copy)2 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7214,11 +7222,11 @@ MonoBehaviour: serializedVersion: 2 x: 1795.5618 y: -414.9712 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 516 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7239,11 +7247,11 @@ MonoBehaviour: serializedVersion: 2 x: 1634.5618 y: -439.9712 - width: 401 + width: 382.14276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 515 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7264,11 +7272,11 @@ MonoBehaviour: serializedVersion: 2 x: 1671.0618 y: -456.4712 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 514 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7289,11 +7297,11 @@ MonoBehaviour: serializedVersion: 2 x: 1510.0618 y: -481.4712 - width: 364 + width: 348.2142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 513 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7314,11 +7322,11 @@ MonoBehaviour: serializedVersion: 2 x: 1650.0618 y: -615.9712 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 512 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7339,11 +7347,11 @@ MonoBehaviour: serializedVersion: 2 x: 1525.5618 y: -657.4712 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 511 blockName: New Block (Copy)3 (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7364,11 +7372,11 @@ MonoBehaviour: serializedVersion: 2 x: 1878.3118 y: -484.7212 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 510 blockName: New Block (Copy) (Copy) (Copy)2 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7389,11 +7397,11 @@ MonoBehaviour: serializedVersion: 2 x: 1717.3118 y: -509.7212 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 509 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7414,11 +7422,11 @@ MonoBehaviour: serializedVersion: 2 x: 1732.8118 y: -685.7211 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 508 blockName: New Block (Copy)2 (Copy)2 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7439,11 +7447,11 @@ MonoBehaviour: serializedVersion: 2 x: 1592.8118 y: -551.2212 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 507 blockName: New Block (Copy)1 (Copy)3 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7464,11 +7472,11 @@ MonoBehaviour: serializedVersion: 2 x: 1753.8118 y: -526.2212 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 506 blockName: New Block (Copy) (Copy)3 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7489,11 +7497,11 @@ MonoBehaviour: serializedVersion: 2 x: 1608.3118 y: -727.2211 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 505 blockName: New Block (Copy)5 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -7514,11 +7522,11 @@ MonoBehaviour: serializedVersion: 2 x: 1790.1243 y: -802.0336 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 504 blockName: New Block (Copy)3 (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7539,11 +7547,11 @@ MonoBehaviour: serializedVersion: 2 x: 2060.1243 y: -559.5337 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 503 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7564,11 +7572,11 @@ MonoBehaviour: serializedVersion: 2 x: 1899.1243 y: -584.5337 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 502 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7589,11 +7597,11 @@ MonoBehaviour: serializedVersion: 2 x: 1935.6243 y: -601.0337 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 501 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7614,11 +7622,11 @@ MonoBehaviour: serializedVersion: 2 x: 1774.6243 y: -626.0337 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 500 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7639,11 +7647,11 @@ MonoBehaviour: serializedVersion: 2 x: 1914.6243 y: -760.5336 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 499 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7664,11 +7672,11 @@ MonoBehaviour: serializedVersion: 2 x: 2142.8743 y: -629.2837 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 498 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7689,11 +7697,11 @@ MonoBehaviour: serializedVersion: 2 x: 1981.8743 y: -654.2837 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 497 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7714,11 +7722,11 @@ MonoBehaviour: serializedVersion: 2 x: 1997.3743 y: -830.2836 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 496 blockName: New Block (Copy)2 (Copy)1 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7739,11 +7747,11 @@ MonoBehaviour: serializedVersion: 2 x: 1857.3743 y: -695.7836 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 495 blockName: New Block (Copy)1 (Copy)2 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7764,11 +7772,11 @@ MonoBehaviour: serializedVersion: 2 x: 2018.3743 y: -670.7837 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 494 blockName: New Block (Copy) (Copy)2 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7789,11 +7797,11 @@ MonoBehaviour: serializedVersion: 2 x: 1872.8743 y: -871.7836 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 493 blockName: New Block (Copy)4 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -7814,11 +7822,11 @@ MonoBehaviour: serializedVersion: 2 x: 1938.4993 y: -532.4087 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 492 blockName: New Block (Copy) (Copy) (Copy) (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -7839,11 +7847,11 @@ MonoBehaviour: serializedVersion: 2 x: 1777.4993 y: -557.4087 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 491 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -7864,11 +7872,11 @@ MonoBehaviour: serializedVersion: 2 x: 1813.9993 y: -573.9087 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 490 blockName: New Block (Copy) (Copy)1 (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -7889,11 +7897,11 @@ MonoBehaviour: serializedVersion: 2 x: 1652.9993 y: -598.9087 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 489 blockName: New Block (Copy)1 (Copy)1 (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -7914,11 +7922,11 @@ MonoBehaviour: serializedVersion: 2 x: 1792.9993 y: -733.4086 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 488 blockName: New Block (Copy)2 (Copy) (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -7939,11 +7947,11 @@ MonoBehaviour: serializedVersion: 2 x: 1668.4993 y: -774.9086 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 487 blockName: New Block (Copy)3 (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -7964,11 +7972,11 @@ MonoBehaviour: serializedVersion: 2 x: 2021.2493 y: -602.1587 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 486 blockName: New Block (Copy) (Copy) (Copy)4 (Copy)1 description: eventHandler: {fileID: 0} @@ -7989,11 +7997,11 @@ MonoBehaviour: serializedVersion: 2 x: 1860.2493 y: -627.1587 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 485 blockName: New Block (Copy)1 (Copy) (Copy)4 (Copy)1 description: eventHandler: {fileID: 0} @@ -8014,11 +8022,11 @@ MonoBehaviour: serializedVersion: 2 x: 1875.7493 y: -803.1586 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 484 blockName: New Block (Copy)2 (Copy)4 (Copy)1 description: eventHandler: {fileID: 0} @@ -8039,11 +8047,11 @@ MonoBehaviour: serializedVersion: 2 x: 1735.7493 y: -668.6587 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 483 blockName: New Block (Copy)1 (Copy)5 (Copy)1 description: eventHandler: {fileID: 0} @@ -8064,11 +8072,11 @@ MonoBehaviour: serializedVersion: 2 x: 1896.7493 y: -643.6587 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 482 blockName: New Block (Copy) (Copy)5 (Copy)1 description: eventHandler: {fileID: 0} @@ -8089,11 +8097,11 @@ MonoBehaviour: serializedVersion: 2 x: 1751.2493 y: -844.6586 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 481 blockName: New Block (Copy)7 (Copy)1 description: eventHandler: {fileID: 0} @@ -8114,11 +8122,11 @@ MonoBehaviour: serializedVersion: 2 x: 876.511 y: -218.948 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 480 blockName: New Block (Copy)5 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8139,11 +8147,11 @@ MonoBehaviour: serializedVersion: 2 x: 998.136 y: -246.073 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 479 blockName: New Block (Copy)4 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8164,11 +8172,11 @@ MonoBehaviour: serializedVersion: 2 x: 915.386 y: -176.323 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 478 blockName: New Block (Copy)3 (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8189,11 +8197,11 @@ MonoBehaviour: serializedVersion: 2 x: 1185.386 y: 66.177 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 477 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8214,11 +8222,11 @@ MonoBehaviour: serializedVersion: 2 x: 1024.386 y: 41.177002 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 476 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8239,11 +8247,11 @@ MonoBehaviour: serializedVersion: 2 x: 1060.886 y: 24.677002 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 475 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8264,11 +8272,11 @@ MonoBehaviour: serializedVersion: 2 x: 899.886 y: -0.32299805 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 474 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8289,11 +8297,11 @@ MonoBehaviour: serializedVersion: 2 x: 1039.886 y: -134.823 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 473 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8314,11 +8322,11 @@ MonoBehaviour: serializedVersion: 2 x: 1268.136 y: -3.572998 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 472 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8339,11 +8347,11 @@ MonoBehaviour: serializedVersion: 2 x: 1107.136 y: -28.572998 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 471 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8364,11 +8372,11 @@ MonoBehaviour: serializedVersion: 2 x: 1122.636 y: -204.573 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 470 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8389,11 +8397,11 @@ MonoBehaviour: serializedVersion: 2 x: 982.636 y: -70.073 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 469 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8414,11 +8422,11 @@ MonoBehaviour: serializedVersion: 2 x: 1143.636 y: -45.072998 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 468 blockName: New Block (Copy) (Copy)2 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8439,11 +8447,11 @@ MonoBehaviour: serializedVersion: 2 x: 1063.761 y: 93.302 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 467 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8464,11 +8472,11 @@ MonoBehaviour: serializedVersion: 2 x: 902.761 y: 68.302 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 466 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8489,11 +8497,11 @@ MonoBehaviour: serializedVersion: 2 x: 939.261 y: 51.802002 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 465 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8514,11 +8522,11 @@ MonoBehaviour: serializedVersion: 2 x: 778.261 y: 26.802002 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 464 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8539,11 +8547,11 @@ MonoBehaviour: serializedVersion: 2 x: 918.261 y: -107.698 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 463 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8564,11 +8572,11 @@ MonoBehaviour: serializedVersion: 2 x: 793.761 y: -149.198 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 462 blockName: New Block (Copy)3 (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8589,11 +8597,11 @@ MonoBehaviour: serializedVersion: 2 x: 1146.511 y: 23.552002 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 461 blockName: New Block (Copy) (Copy) (Copy)2 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8614,11 +8622,11 @@ MonoBehaviour: serializedVersion: 2 x: 985.511 y: -1.447998 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 460 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8639,11 +8647,11 @@ MonoBehaviour: serializedVersion: 2 x: 1001.011 y: -177.448 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 459 blockName: New Block (Copy)2 (Copy)2 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8664,11 +8672,11 @@ MonoBehaviour: serializedVersion: 2 x: 861.011 y: -42.947998 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 458 blockName: New Block (Copy)1 (Copy)3 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8689,11 +8697,11 @@ MonoBehaviour: serializedVersion: 2 x: 1022.011 y: -17.947998 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 457 blockName: New Block (Copy) (Copy)3 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -8714,11 +8722,11 @@ MonoBehaviour: serializedVersion: 2 x: 1058.3235 y: -293.7605 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 456 blockName: New Block (Copy)3 (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8739,11 +8747,11 @@ MonoBehaviour: serializedVersion: 2 x: 1328.3235 y: -51.260498 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 455 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8764,11 +8772,11 @@ MonoBehaviour: serializedVersion: 2 x: 1167.3235 y: -76.2605 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 454 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8789,11 +8797,11 @@ MonoBehaviour: serializedVersion: 2 x: 1203.8235 y: -92.7605 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 453 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8814,11 +8822,11 @@ MonoBehaviour: serializedVersion: 2 x: 1042.8235 y: -117.7605 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 452 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8839,11 +8847,11 @@ MonoBehaviour: serializedVersion: 2 x: 1182.8235 y: -252.2605 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 451 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8864,11 +8872,11 @@ MonoBehaviour: serializedVersion: 2 x: 1411.0735 y: -121.0105 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 450 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8889,11 +8897,11 @@ MonoBehaviour: serializedVersion: 2 x: 1250.0735 y: -146.0105 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 449 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8914,11 +8922,11 @@ MonoBehaviour: serializedVersion: 2 x: 1265.5735 y: -322.0105 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 448 blockName: New Block (Copy)2 (Copy)1 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8939,11 +8947,11 @@ MonoBehaviour: serializedVersion: 2 x: 1125.5735 y: -187.5105 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 447 blockName: New Block (Copy)1 (Copy)2 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8964,11 +8972,11 @@ MonoBehaviour: serializedVersion: 2 x: 1286.5735 y: -162.5105 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 446 blockName: New Block (Copy) (Copy)2 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -8989,11 +8997,11 @@ MonoBehaviour: serializedVersion: 2 x: 1141.0735 y: -363.5105 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 445 blockName: New Block (Copy)4 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -9014,11 +9022,11 @@ MonoBehaviour: serializedVersion: 2 x: 1206.6985 y: -24.135498 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 444 blockName: New Block (Copy) (Copy) (Copy) (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -9039,11 +9047,11 @@ MonoBehaviour: serializedVersion: 2 x: 1045.6985 y: -49.135498 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 443 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -9064,11 +9072,11 @@ MonoBehaviour: serializedVersion: 2 x: 1082.1985 y: -65.6355 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 442 blockName: New Block (Copy) (Copy)1 (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -9089,11 +9097,11 @@ MonoBehaviour: serializedVersion: 2 x: 921.1985 y: -90.6355 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 441 blockName: New Block (Copy)1 (Copy)1 (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -9114,11 +9122,11 @@ MonoBehaviour: serializedVersion: 2 x: 1061.1985 y: -225.1355 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 440 blockName: New Block (Copy)2 (Copy) (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -9139,11 +9147,11 @@ MonoBehaviour: serializedVersion: 2 x: 936.6985 y: -266.6355 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 439 blockName: New Block (Copy)3 (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -9164,11 +9172,11 @@ MonoBehaviour: serializedVersion: 2 x: 1289.4485 y: -93.8855 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 438 blockName: New Block (Copy) (Copy) (Copy)3 (Copy)2 description: eventHandler: {fileID: 0} @@ -9189,11 +9197,11 @@ MonoBehaviour: serializedVersion: 2 x: 1128.4485 y: -118.8855 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 437 blockName: New Block (Copy)1 (Copy) (Copy)3 (Copy)2 description: eventHandler: {fileID: 0} @@ -9214,11 +9222,11 @@ MonoBehaviour: serializedVersion: 2 x: 1143.9485 y: -294.8855 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 436 blockName: New Block (Copy)2 (Copy)3 (Copy)2 description: eventHandler: {fileID: 0} @@ -9239,11 +9247,11 @@ MonoBehaviour: serializedVersion: 2 x: 1003.9485 y: -160.3855 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 435 blockName: New Block (Copy)1 (Copy)4 (Copy)2 description: eventHandler: {fileID: 0} @@ -9264,11 +9272,11 @@ MonoBehaviour: serializedVersion: 2 x: 1164.9485 y: -135.3855 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 434 blockName: New Block (Copy) (Copy)4 (Copy)2 description: eventHandler: {fileID: 0} @@ -9289,11 +9297,11 @@ MonoBehaviour: serializedVersion: 2 x: 1019.4485 y: -336.3855 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 433 blockName: New Block (Copy)6 (Copy)2 description: eventHandler: {fileID: 0} @@ -9314,11 +9322,11 @@ MonoBehaviour: serializedVersion: 2 x: 1771.7373 y: -102.61914 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 432 blockName: New Block (Copy)4 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9339,11 +9347,11 @@ MonoBehaviour: serializedVersion: 2 x: 1688.9873 y: -32.86914 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 431 blockName: New Block (Copy)3 (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9364,11 +9372,11 @@ MonoBehaviour: serializedVersion: 2 x: 1958.9873 y: 209.63086 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 430 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9389,11 +9397,11 @@ MonoBehaviour: serializedVersion: 2 x: 1797.9873 y: 184.63086 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 429 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9414,11 +9422,11 @@ MonoBehaviour: serializedVersion: 2 x: 1834.4873 y: 168.13086 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 428 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9439,11 +9447,11 @@ MonoBehaviour: serializedVersion: 2 x: 1673.4873 y: 143.13086 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 427 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9464,11 +9472,11 @@ MonoBehaviour: serializedVersion: 2 x: 1813.4873 y: 8.630859 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 426 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9489,11 +9497,11 @@ MonoBehaviour: serializedVersion: 2 x: 2041.7373 y: 139.88086 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 425 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9514,11 +9522,11 @@ MonoBehaviour: serializedVersion: 2 x: 1880.7373 y: 114.88086 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 424 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9539,11 +9547,11 @@ MonoBehaviour: serializedVersion: 2 x: 1896.2373 y: -61.11914 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 423 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9564,11 +9572,11 @@ MonoBehaviour: serializedVersion: 2 x: 1756.2373 y: 73.38086 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 422 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9589,11 +9597,11 @@ MonoBehaviour: serializedVersion: 2 x: 1917.2373 y: 98.38086 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 421 blockName: New Block (Copy) (Copy)2 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -9614,11 +9622,11 @@ MonoBehaviour: serializedVersion: 2 x: 1837.3623 y: 236.75586 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 420 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -9639,11 +9647,11 @@ MonoBehaviour: serializedVersion: 2 x: 1676.3623 y: 211.75586 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 419 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -9664,11 +9672,11 @@ MonoBehaviour: serializedVersion: 2 x: 1712.8623 y: 195.25586 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 418 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -9689,11 +9697,11 @@ MonoBehaviour: serializedVersion: 2 x: 1551.8623 y: 170.25586 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 417 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -9714,11 +9722,11 @@ MonoBehaviour: serializedVersion: 2 x: 1691.8623 y: 35.75586 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 416 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -9739,11 +9747,11 @@ MonoBehaviour: serializedVersion: 2 x: 1567.3623 y: -5.7441406 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 415 blockName: New Block (Copy)3 (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -9764,11 +9772,11 @@ MonoBehaviour: serializedVersion: 2 x: 1920.1123 y: 167.00586 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 414 blockName: New Block (Copy) (Copy) (Copy)2 (Copy)3 description: eventHandler: {fileID: 0} @@ -9789,11 +9797,11 @@ MonoBehaviour: serializedVersion: 2 x: 1759.1123 y: 142.00586 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 413 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy)3 description: eventHandler: {fileID: 0} @@ -9814,11 +9822,11 @@ MonoBehaviour: serializedVersion: 2 x: 1774.6123 y: -33.99414 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 412 blockName: New Block (Copy)2 (Copy)2 (Copy)3 description: eventHandler: {fileID: 0} @@ -9839,11 +9847,11 @@ MonoBehaviour: serializedVersion: 2 x: 1634.6123 y: 100.50586 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 411 blockName: New Block (Copy)1 (Copy)3 (Copy)3 description: eventHandler: {fileID: 0} @@ -9864,11 +9872,11 @@ MonoBehaviour: serializedVersion: 2 x: 1795.6123 y: 125.50586 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 410 blockName: New Block (Copy) (Copy)3 (Copy)3 description: eventHandler: {fileID: 0} @@ -9889,11 +9897,11 @@ MonoBehaviour: serializedVersion: 2 x: 1650.1123 y: -75.49414 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 409 blockName: New Block (Copy)5 (Copy)3 description: eventHandler: {fileID: 0} @@ -9914,11 +9922,11 @@ MonoBehaviour: serializedVersion: 2 x: 1831.9248 y: -150.30664 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 408 blockName: New Block (Copy)3 (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -9939,11 +9947,11 @@ MonoBehaviour: serializedVersion: 2 x: 2101.9248 y: 92.19336 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 407 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -9964,11 +9972,11 @@ MonoBehaviour: serializedVersion: 2 x: 1940.9248 y: 67.19336 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 406 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -9989,11 +9997,11 @@ MonoBehaviour: serializedVersion: 2 x: 1977.4248 y: 50.69336 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 405 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -10014,11 +10022,11 @@ MonoBehaviour: serializedVersion: 2 x: 1816.4248 y: 25.69336 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 404 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -10039,11 +10047,11 @@ MonoBehaviour: serializedVersion: 2 x: 1956.4248 y: -108.80664 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 403 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -10064,11 +10072,11 @@ MonoBehaviour: serializedVersion: 2 x: 2184.6748 y: 22.44336 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 402 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)4 description: eventHandler: {fileID: 0} @@ -10089,11 +10097,11 @@ MonoBehaviour: serializedVersion: 2 x: 2023.6748 y: -2.5566406 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 401 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)4 description: eventHandler: {fileID: 0} @@ -10114,11 +10122,11 @@ MonoBehaviour: serializedVersion: 2 x: 2039.1748 y: -178.55664 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 400 blockName: New Block (Copy)2 (Copy)1 (Copy)4 description: eventHandler: {fileID: 0} @@ -10139,11 +10147,11 @@ MonoBehaviour: serializedVersion: 2 x: 1899.1748 y: -44.05664 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 399 blockName: New Block (Copy)1 (Copy)2 (Copy)4 description: eventHandler: {fileID: 0} @@ -10164,11 +10172,11 @@ MonoBehaviour: serializedVersion: 2 x: 2060.1748 y: -19.05664 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 398 blockName: New Block (Copy) (Copy)2 (Copy)4 description: eventHandler: {fileID: 0} @@ -10189,11 +10197,11 @@ MonoBehaviour: serializedVersion: 2 x: 1914.6748 y: -220.05664 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 397 blockName: New Block (Copy)4 (Copy)4 description: eventHandler: {fileID: 0} @@ -10214,11 +10222,11 @@ MonoBehaviour: serializedVersion: 2 x: 1980.2998 y: 119.31836 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 396 blockName: New Block (Copy) (Copy) (Copy) (Copy)5 description: eventHandler: {fileID: 0} @@ -10239,11 +10247,11 @@ MonoBehaviour: serializedVersion: 2 x: 1819.2998 y: 94.31836 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 395 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)5 description: eventHandler: {fileID: 0} @@ -10264,11 +10272,11 @@ MonoBehaviour: serializedVersion: 2 x: 1855.7998 y: 77.81836 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 394 blockName: New Block (Copy) (Copy)1 (Copy)5 description: eventHandler: {fileID: 0} @@ -10289,11 +10297,11 @@ MonoBehaviour: serializedVersion: 2 x: 1694.7998 y: 52.81836 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 393 blockName: New Block (Copy)1 (Copy)1 (Copy)5 description: eventHandler: {fileID: 0} @@ -10314,11 +10322,11 @@ MonoBehaviour: serializedVersion: 2 x: 1834.7998 y: -81.68164 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 392 blockName: New Block (Copy)2 (Copy) (Copy)5 description: eventHandler: {fileID: 0} @@ -10339,11 +10347,11 @@ MonoBehaviour: serializedVersion: 2 x: 1710.2998 y: -123.18164 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 391 blockName: New Block (Copy)3 (Copy)5 description: eventHandler: {fileID: 0} @@ -10364,11 +10372,11 @@ MonoBehaviour: serializedVersion: 2 x: 2063.0498 y: 49.56836 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 390 blockName: New Block (Copy) (Copy) (Copy)6 description: eventHandler: {fileID: 0} @@ -10389,11 +10397,11 @@ MonoBehaviour: serializedVersion: 2 x: 1902.0498 y: 24.56836 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 389 blockName: New Block (Copy)1 (Copy) (Copy)6 description: eventHandler: {fileID: 0} @@ -10414,11 +10422,11 @@ MonoBehaviour: serializedVersion: 2 x: 1917.5498 y: -151.43164 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 388 blockName: New Block (Copy)2 (Copy)6 description: eventHandler: {fileID: 0} @@ -10439,11 +10447,11 @@ MonoBehaviour: serializedVersion: 2 x: 1777.5498 y: -16.93164 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 387 blockName: New Block (Copy)1 (Copy)7 description: eventHandler: {fileID: 0} @@ -10464,11 +10472,11 @@ MonoBehaviour: serializedVersion: 2 x: 1938.5498 y: 8.068359 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 386 blockName: New Block (Copy) (Copy)7 description: eventHandler: {fileID: 0} @@ -10489,11 +10497,11 @@ MonoBehaviour: serializedVersion: 2 x: 1793.0498 y: -192.93164 - width: 160 + width: 155.35712 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 385 blockName: New Block (Copy)9 description: eventHandler: {fileID: 0} @@ -10514,11 +10522,11 @@ MonoBehaviour: serializedVersion: 2 x: 638.2991 y: -703.59045 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 384 blockName: New Block (Copy)7 (Copy) description: eventHandler: {fileID: 0} @@ -10539,11 +10547,11 @@ MonoBehaviour: serializedVersion: 2 x: -135.30219 y: -847.0443 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 383 blockName: New Block (Copy)6 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10564,11 +10572,11 @@ MonoBehaviour: serializedVersion: 2 x: -278.2397 y: -729.6068 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 382 blockName: New Block (Copy)5 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10589,11 +10597,11 @@ MonoBehaviour: serializedVersion: 2 x: -156.61469 y: -756.7318 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 381 blockName: New Block (Copy)4 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10614,11 +10622,11 @@ MonoBehaviour: serializedVersion: 2 x: -239.36469 y: -686.9818 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 380 blockName: New Block (Copy)3 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10639,11 +10647,11 @@ MonoBehaviour: serializedVersion: 2 x: 30.635315 y: -444.4818 - width: 461 + width: 435.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 379 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10664,11 +10672,11 @@ MonoBehaviour: serializedVersion: 2 x: -130.36469 y: -469.4818 - width: 468 + width: 442.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 378 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10689,11 +10697,11 @@ MonoBehaviour: serializedVersion: 2 x: -93.864685 y: -485.9818 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 377 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10714,11 +10722,11 @@ MonoBehaviour: serializedVersion: 2 x: -254.86469 y: -510.9818 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 376 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10739,11 +10747,11 @@ MonoBehaviour: serializedVersion: 2 x: -114.864685 y: -645.4818 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 375 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10764,11 +10772,11 @@ MonoBehaviour: serializedVersion: 2 x: 113.385315 y: -514.2318 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 374 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10789,11 +10797,11 @@ MonoBehaviour: serializedVersion: 2 x: -47.614685 y: -539.2318 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 373 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10814,11 +10822,11 @@ MonoBehaviour: serializedVersion: 2 x: -32.114685 y: -715.2318 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 372 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10839,11 +10847,11 @@ MonoBehaviour: serializedVersion: 2 x: -172.11469 y: -580.7318 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 371 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10864,11 +10872,11 @@ MonoBehaviour: serializedVersion: 2 x: -11.114685 y: -555.7318 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 370 blockName: New Block (Copy) (Copy)2 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10889,11 +10897,11 @@ MonoBehaviour: serializedVersion: 2 x: -90.989685 y: -417.3568 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 369 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10914,11 +10922,11 @@ MonoBehaviour: serializedVersion: 2 x: -251.98969 y: -442.3568 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 368 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10939,11 +10947,11 @@ MonoBehaviour: serializedVersion: 2 x: -215.48969 y: -458.8568 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 367 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10964,11 +10972,11 @@ MonoBehaviour: serializedVersion: 2 x: -376.4897 y: -483.8568 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 366 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -10989,11 +10997,11 @@ MonoBehaviour: serializedVersion: 2 x: -236.48969 y: -618.3568 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 365 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11014,11 +11022,11 @@ MonoBehaviour: serializedVersion: 2 x: -360.9897 y: -659.8568 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 364 blockName: New Block (Copy)3 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11039,11 +11047,11 @@ MonoBehaviour: serializedVersion: 2 x: -8.239685 y: -487.1068 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 363 blockName: New Block (Copy) (Copy) (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11064,11 +11072,11 @@ MonoBehaviour: serializedVersion: 2 x: -169.23969 y: -512.1068 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 362 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11089,11 +11097,11 @@ MonoBehaviour: serializedVersion: 2 x: -153.73969 y: -688.1068 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 361 blockName: New Block (Copy)2 (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11114,11 +11122,11 @@ MonoBehaviour: serializedVersion: 2 x: -293.7397 y: -553.6068 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 360 blockName: New Block (Copy)1 (Copy)3 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11139,11 +11147,11 @@ MonoBehaviour: serializedVersion: 2 x: -132.73969 y: -528.6068 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 359 blockName: New Block (Copy) (Copy)3 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11164,11 +11172,11 @@ MonoBehaviour: serializedVersion: 2 x: -96.427185 y: -804.4193 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 358 blockName: New Block (Copy)3 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11189,11 +11197,11 @@ MonoBehaviour: serializedVersion: 2 x: 173.57281 y: -561.9193 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 357 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11214,11 +11222,11 @@ MonoBehaviour: serializedVersion: 2 x: 12.572815 y: -586.9193 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 356 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11239,11 +11247,11 @@ MonoBehaviour: serializedVersion: 2 x: 49.072815 y: -603.4193 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 355 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11264,11 +11272,11 @@ MonoBehaviour: serializedVersion: 2 x: -111.927185 y: -628.4193 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 354 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11289,11 +11297,11 @@ MonoBehaviour: serializedVersion: 2 x: 28.072815 y: -762.9193 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 353 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11314,11 +11322,11 @@ MonoBehaviour: serializedVersion: 2 x: 256.3228 y: -631.6693 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 352 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11339,11 +11347,11 @@ MonoBehaviour: serializedVersion: 2 x: 95.322815 y: -656.6693 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 351 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11364,11 +11372,11 @@ MonoBehaviour: serializedVersion: 2 x: 110.822815 y: -832.6693 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 350 blockName: New Block (Copy)2 (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11389,11 +11397,11 @@ MonoBehaviour: serializedVersion: 2 x: -29.177185 y: -698.1693 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 349 blockName: New Block (Copy)1 (Copy)2 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11414,11 +11422,11 @@ MonoBehaviour: serializedVersion: 2 x: 131.82281 y: -673.1693 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 348 blockName: New Block (Copy) (Copy)2 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11439,11 +11447,11 @@ MonoBehaviour: serializedVersion: 2 x: -13.677185 y: -874.1693 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 347 blockName: New Block (Copy)4 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11464,11 +11472,11 @@ MonoBehaviour: serializedVersion: 2 x: 51.947815 y: -534.7943 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 346 blockName: New Block (Copy) (Copy) (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11489,11 +11497,11 @@ MonoBehaviour: serializedVersion: 2 x: -109.052185 y: -559.7943 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 345 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11514,11 +11522,11 @@ MonoBehaviour: serializedVersion: 2 x: -72.552185 y: -576.2943 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 344 blockName: New Block (Copy) (Copy)1 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11539,11 +11547,11 @@ MonoBehaviour: serializedVersion: 2 x: -233.55219 y: -601.2943 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 343 blockName: New Block (Copy)1 (Copy)1 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11564,11 +11572,11 @@ MonoBehaviour: serializedVersion: 2 x: -93.552185 y: -735.7943 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 342 blockName: New Block (Copy)2 (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11589,11 +11597,11 @@ MonoBehaviour: serializedVersion: 2 x: -218.05219 y: -777.2943 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 341 blockName: New Block (Copy)3 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11614,11 +11622,11 @@ MonoBehaviour: serializedVersion: 2 x: 134.69781 y: -604.5443 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 340 blockName: New Block (Copy) (Copy) (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11639,11 +11647,11 @@ MonoBehaviour: serializedVersion: 2 x: -26.302185 y: -629.5443 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 339 blockName: New Block (Copy)1 (Copy) (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11664,11 +11672,11 @@ MonoBehaviour: serializedVersion: 2 x: -10.802185 y: -805.5443 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 338 blockName: New Block (Copy)2 (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11689,11 +11697,11 @@ MonoBehaviour: serializedVersion: 2 x: -150.80219 y: -671.0443 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 337 blockName: New Block (Copy)1 (Copy)4 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11714,11 +11722,11 @@ MonoBehaviour: serializedVersion: 2 x: 10.197815 y: -646.0443 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 336 blockName: New Block (Copy) (Copy)4 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -11739,11 +11747,11 @@ MonoBehaviour: serializedVersion: 2 x: 616.9866 y: -613.27795 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 335 blockName: New Block (Copy)4 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -11764,11 +11772,11 @@ MonoBehaviour: serializedVersion: 2 x: 534.2366 y: -543.52795 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 334 blockName: New Block (Copy)3 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -11789,11 +11797,11 @@ MonoBehaviour: serializedVersion: 2 x: 804.2366 y: -301.02795 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 333 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -11814,11 +11822,11 @@ MonoBehaviour: serializedVersion: 2 x: 643.2366 y: -326.02795 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 332 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -11839,11 +11847,11 @@ MonoBehaviour: serializedVersion: 2 x: 679.7366 y: -342.52795 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 331 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -11864,11 +11872,11 @@ MonoBehaviour: serializedVersion: 2 x: 518.7366 y: -367.52795 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 330 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -11889,11 +11897,11 @@ MonoBehaviour: serializedVersion: 2 x: 658.7366 y: -502.02795 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 329 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -11914,11 +11922,11 @@ MonoBehaviour: serializedVersion: 2 x: 886.9866 y: -370.77795 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 328 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -11939,11 +11947,11 @@ MonoBehaviour: serializedVersion: 2 x: 725.9866 y: -395.77795 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 327 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -11964,11 +11972,11 @@ MonoBehaviour: serializedVersion: 2 x: 741.4866 y: -571.77795 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 326 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -11989,11 +11997,11 @@ MonoBehaviour: serializedVersion: 2 x: 601.4866 y: -437.27795 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 325 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12014,11 +12022,11 @@ MonoBehaviour: serializedVersion: 2 x: 762.4866 y: -412.27795 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 324 blockName: New Block (Copy) (Copy)2 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12039,11 +12047,11 @@ MonoBehaviour: serializedVersion: 2 x: 682.6116 y: -273.90295 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 323 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12064,11 +12072,11 @@ MonoBehaviour: serializedVersion: 2 x: 521.6116 y: -298.90295 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 322 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12089,11 +12097,11 @@ MonoBehaviour: serializedVersion: 2 x: 558.1116 y: -315.40295 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 321 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12114,11 +12122,11 @@ MonoBehaviour: serializedVersion: 2 x: 397.11163 y: -340.40295 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 320 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12139,11 +12147,11 @@ MonoBehaviour: serializedVersion: 2 x: 537.1116 y: -474.90295 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 319 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12164,11 +12172,11 @@ MonoBehaviour: serializedVersion: 2 x: 412.61163 y: -516.40295 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 318 blockName: New Block (Copy)3 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12189,11 +12197,11 @@ MonoBehaviour: serializedVersion: 2 x: 765.3616 y: -343.65295 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 317 blockName: New Block (Copy) (Copy) (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12214,11 +12222,11 @@ MonoBehaviour: serializedVersion: 2 x: 604.3616 y: -368.65295 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 316 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12239,11 +12247,11 @@ MonoBehaviour: serializedVersion: 2 x: 619.8616 y: -544.65295 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 315 blockName: New Block (Copy)2 (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12264,11 +12272,11 @@ MonoBehaviour: serializedVersion: 2 x: 479.86157 y: -410.15295 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 314 blockName: New Block (Copy)1 (Copy)3 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12289,11 +12297,11 @@ MonoBehaviour: serializedVersion: 2 x: 640.8616 y: -385.15295 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 313 blockName: New Block (Copy) (Copy)3 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12314,11 +12322,11 @@ MonoBehaviour: serializedVersion: 2 x: 495.36157 y: -586.15295 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 312 blockName: New Block (Copy)5 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -12339,11 +12347,11 @@ MonoBehaviour: serializedVersion: 2 x: 677.1741 y: -660.96545 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 311 blockName: New Block (Copy)3 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12364,11 +12372,11 @@ MonoBehaviour: serializedVersion: 2 x: 947.1741 y: -418.46545 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 310 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12389,11 +12397,11 @@ MonoBehaviour: serializedVersion: 2 x: 786.1741 y: -443.46545 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 309 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12414,11 +12422,11 @@ MonoBehaviour: serializedVersion: 2 x: 822.6741 y: -459.96545 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 308 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12439,11 +12447,11 @@ MonoBehaviour: serializedVersion: 2 x: 661.6741 y: -484.96545 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 307 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12464,11 +12472,11 @@ MonoBehaviour: serializedVersion: 2 x: 801.6741 y: -619.46545 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 306 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12489,11 +12497,11 @@ MonoBehaviour: serializedVersion: 2 x: 1029.9241 y: -488.21545 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 305 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12514,11 +12522,11 @@ MonoBehaviour: serializedVersion: 2 x: 868.9241 y: -513.21545 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 304 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12539,11 +12547,11 @@ MonoBehaviour: serializedVersion: 2 x: 884.4241 y: -689.21545 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 303 blockName: New Block (Copy)2 (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12564,11 +12572,11 @@ MonoBehaviour: serializedVersion: 2 x: 744.4241 y: -554.71545 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 302 blockName: New Block (Copy)1 (Copy)2 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12589,11 +12597,11 @@ MonoBehaviour: serializedVersion: 2 x: 905.4241 y: -529.71545 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 301 blockName: New Block (Copy) (Copy)2 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12614,11 +12622,11 @@ MonoBehaviour: serializedVersion: 2 x: 759.9241 y: -730.71545 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 300 blockName: New Block (Copy)4 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -12639,11 +12647,11 @@ MonoBehaviour: serializedVersion: 2 x: 825.5491 y: -391.34045 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 299 blockName: New Block (Copy) (Copy) (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -12664,11 +12672,11 @@ MonoBehaviour: serializedVersion: 2 x: 664.5491 y: -416.34045 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 298 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -12689,11 +12697,11 @@ MonoBehaviour: serializedVersion: 2 x: 701.0491 y: -432.84045 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 297 blockName: New Block (Copy) (Copy)1 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -12714,11 +12722,11 @@ MonoBehaviour: serializedVersion: 2 x: 540.0491 y: -457.84045 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 296 blockName: New Block (Copy)1 (Copy)1 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -12739,11 +12747,11 @@ MonoBehaviour: serializedVersion: 2 x: 680.0491 y: -592.34045 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 295 blockName: New Block (Copy)2 (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -12764,11 +12772,11 @@ MonoBehaviour: serializedVersion: 2 x: 555.5491 y: -633.84045 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 294 blockName: New Block (Copy)3 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -12789,11 +12797,11 @@ MonoBehaviour: serializedVersion: 2 x: 908.2991 y: -461.09045 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 293 blockName: New Block (Copy) (Copy) (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -12814,11 +12822,11 @@ MonoBehaviour: serializedVersion: 2 x: 747.2991 y: -486.09045 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 292 blockName: New Block (Copy)1 (Copy) (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -12839,11 +12847,11 @@ MonoBehaviour: serializedVersion: 2 x: 762.7991 y: -662.09045 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 291 blockName: New Block (Copy)2 (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -12864,11 +12872,11 @@ MonoBehaviour: serializedVersion: 2 x: 622.7991 y: -527.59045 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 290 blockName: New Block (Copy)1 (Copy)5 (Copy) description: eventHandler: {fileID: 0} @@ -12889,11 +12897,11 @@ MonoBehaviour: serializedVersion: 2 x: 783.7991 y: -502.59045 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 289 blockName: New Block (Copy) (Copy)5 (Copy) description: eventHandler: {fileID: 0} @@ -12914,11 +12922,11 @@ MonoBehaviour: serializedVersion: 2 x: -236.43909 y: -77.87988 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 288 blockName: New Block (Copy)5 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -12939,11 +12947,11 @@ MonoBehaviour: serializedVersion: 2 x: -114.81409 y: -105.00488 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 287 blockName: New Block (Copy)4 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -12964,11 +12972,11 @@ MonoBehaviour: serializedVersion: 2 x: -197.56409 y: -35.254883 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 286 blockName: New Block (Copy)3 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -12989,11 +12997,11 @@ MonoBehaviour: serializedVersion: 2 x: 72.43591 y: 207.24512 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 285 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13014,11 +13022,11 @@ MonoBehaviour: serializedVersion: 2 x: -88.56409 y: 182.24512 - width: 431 + width: 408.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 284 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13039,11 +13047,11 @@ MonoBehaviour: serializedVersion: 2 x: -52.064087 y: 165.74512 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 283 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13064,11 +13072,11 @@ MonoBehaviour: serializedVersion: 2 x: -213.06409 y: 140.74512 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 282 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13089,11 +13097,11 @@ MonoBehaviour: serializedVersion: 2 x: -73.06409 y: 6.245117 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 281 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13114,11 +13122,11 @@ MonoBehaviour: serializedVersion: 2 x: 155.18591 y: 137.49512 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 280 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13139,11 +13147,11 @@ MonoBehaviour: serializedVersion: 2 x: -5.814087 y: 112.49512 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 279 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13164,11 +13172,11 @@ MonoBehaviour: serializedVersion: 2 x: 9.685913 y: -63.504883 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 278 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13189,11 +13197,11 @@ MonoBehaviour: serializedVersion: 2 x: -130.31409 y: 70.99512 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 277 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13214,11 +13222,11 @@ MonoBehaviour: serializedVersion: 2 x: 30.685913 y: 95.99512 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 276 blockName: New Block (Copy) (Copy)2 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13239,11 +13247,11 @@ MonoBehaviour: serializedVersion: 2 x: -49.189087 y: 234.37012 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 275 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13264,11 +13272,11 @@ MonoBehaviour: serializedVersion: 2 x: -210.18909 y: 209.37012 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 274 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13289,11 +13297,11 @@ MonoBehaviour: serializedVersion: 2 x: -173.68909 y: 192.87012 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 273 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13314,11 +13322,11 @@ MonoBehaviour: serializedVersion: 2 x: -334.6891 y: 167.87012 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 272 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13339,11 +13347,11 @@ MonoBehaviour: serializedVersion: 2 x: -194.68909 y: 33.370117 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 271 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13364,11 +13372,11 @@ MonoBehaviour: serializedVersion: 2 x: -319.1891 y: -8.129883 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 270 blockName: New Block (Copy)3 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13389,11 +13397,11 @@ MonoBehaviour: serializedVersion: 2 x: 33.560913 y: 164.62012 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 269 blockName: New Block (Copy) (Copy) (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13414,11 +13422,11 @@ MonoBehaviour: serializedVersion: 2 x: -127.43909 y: 139.62012 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 268 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13439,11 +13447,11 @@ MonoBehaviour: serializedVersion: 2 x: -111.93909 y: -36.379883 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 267 blockName: New Block (Copy)2 (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13464,11 +13472,11 @@ MonoBehaviour: serializedVersion: 2 x: -251.93909 y: 98.12012 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 266 blockName: New Block (Copy)1 (Copy)3 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13489,11 +13497,11 @@ MonoBehaviour: serializedVersion: 2 x: -90.93909 y: 123.12012 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 265 blockName: New Block (Copy) (Copy)3 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -13514,11 +13522,11 @@ MonoBehaviour: serializedVersion: 2 x: -54.626587 y: -152.69238 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 264 blockName: New Block (Copy)3 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13539,11 +13547,11 @@ MonoBehaviour: serializedVersion: 2 x: 215.37341 y: 89.80762 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 263 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13564,11 +13572,11 @@ MonoBehaviour: serializedVersion: 2 x: 54.373413 y: 64.80762 - width: 394 + width: 374.9999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 262 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13589,11 +13597,11 @@ MonoBehaviour: serializedVersion: 2 x: 90.87341 y: 48.307617 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 261 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13614,11 +13622,11 @@ MonoBehaviour: serializedVersion: 2 x: -70.12659 y: 23.307617 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 260 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13639,11 +13647,11 @@ MonoBehaviour: serializedVersion: 2 x: 69.87341 y: -111.19238 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 259 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13664,11 +13672,11 @@ MonoBehaviour: serializedVersion: 2 x: 298.1234 y: 20.057617 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 258 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13689,11 +13697,11 @@ MonoBehaviour: serializedVersion: 2 x: 137.12341 y: -4.942383 - width: 357 + width: 341.07132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 257 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13714,11 +13722,11 @@ MonoBehaviour: serializedVersion: 2 x: 152.62341 y: -180.94238 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 256 blockName: New Block (Copy)2 (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13739,11 +13747,11 @@ MonoBehaviour: serializedVersion: 2 x: 12.623413 y: -46.442383 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 255 blockName: New Block (Copy)1 (Copy)2 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13764,11 +13772,11 @@ MonoBehaviour: serializedVersion: 2 x: 173.62341 y: -21.442383 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 254 blockName: New Block (Copy) (Copy)2 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13789,11 +13797,11 @@ MonoBehaviour: serializedVersion: 2 x: 28.123413 y: -222.44238 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 253 blockName: New Block (Copy)4 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -13814,11 +13822,11 @@ MonoBehaviour: serializedVersion: 2 x: 93.74841 y: 116.93262 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 252 blockName: New Block (Copy) (Copy) (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -13839,11 +13847,11 @@ MonoBehaviour: serializedVersion: 2 x: -67.25159 y: 91.93262 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 251 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -13864,11 +13872,11 @@ MonoBehaviour: serializedVersion: 2 x: -30.751587 y: 75.43262 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 250 blockName: New Block (Copy) (Copy)1 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -13889,11 +13897,11 @@ MonoBehaviour: serializedVersion: 2 x: -191.75159 y: 50.432617 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 249 blockName: New Block (Copy)1 (Copy)1 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -13914,11 +13922,11 @@ MonoBehaviour: serializedVersion: 2 x: -51.751587 y: -84.06738 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 248 blockName: New Block (Copy)2 (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -13939,11 +13947,11 @@ MonoBehaviour: serializedVersion: 2 x: -176.25159 y: -125.56738 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 247 blockName: New Block (Copy)3 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -13964,11 +13972,11 @@ MonoBehaviour: serializedVersion: 2 x: 176.49841 y: 47.182617 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 246 blockName: New Block (Copy) (Copy) (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -13989,11 +13997,11 @@ MonoBehaviour: serializedVersion: 2 x: 15.498413 y: 22.182617 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 245 blockName: New Block (Copy)1 (Copy) (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -14014,11 +14022,11 @@ MonoBehaviour: serializedVersion: 2 x: 30.998413 y: -153.81738 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 244 blockName: New Block (Copy)2 (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -14039,11 +14047,11 @@ MonoBehaviour: serializedVersion: 2 x: -109.00159 y: -19.317383 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 243 blockName: New Block (Copy)1 (Copy)4 (Copy)1 description: eventHandler: {fileID: 0} @@ -14064,11 +14072,11 @@ MonoBehaviour: serializedVersion: 2 x: 51.998413 y: 5.682617 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 242 blockName: New Block (Copy) (Copy)4 (Copy)1 description: eventHandler: {fileID: 0} @@ -14089,11 +14097,11 @@ MonoBehaviour: serializedVersion: 2 x: -93.50159 y: -195.31738 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 241 blockName: New Block (Copy)6 (Copy)1 description: eventHandler: {fileID: 0} @@ -14114,11 +14122,11 @@ MonoBehaviour: serializedVersion: 2 x: 658.78723 y: 38.448975 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 240 blockName: New Block (Copy)4 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14139,11 +14147,11 @@ MonoBehaviour: serializedVersion: 2 x: 576.03723 y: 108.198975 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 239 blockName: New Block (Copy)3 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14164,11 +14172,11 @@ MonoBehaviour: serializedVersion: 2 x: 846.03723 y: 350.69897 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 238 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14189,11 +14197,11 @@ MonoBehaviour: serializedVersion: 2 x: 685.03723 y: 325.69897 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 237 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14214,11 +14222,11 @@ MonoBehaviour: serializedVersion: 2 x: 721.53723 y: 309.19897 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 236 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14239,11 +14247,11 @@ MonoBehaviour: serializedVersion: 2 x: 560.53723 y: 284.19897 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 235 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14264,11 +14272,11 @@ MonoBehaviour: serializedVersion: 2 x: 700.53723 y: 149.69897 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 234 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14289,11 +14297,11 @@ MonoBehaviour: serializedVersion: 2 x: 928.78723 y: 280.94897 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 233 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14314,11 +14322,11 @@ MonoBehaviour: serializedVersion: 2 x: 767.78723 y: 255.94897 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 232 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14339,11 +14347,11 @@ MonoBehaviour: serializedVersion: 2 x: 783.28723 y: 79.948975 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 231 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14364,11 +14372,11 @@ MonoBehaviour: serializedVersion: 2 x: 643.28723 y: 214.44897 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 230 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14389,11 +14397,11 @@ MonoBehaviour: serializedVersion: 2 x: 804.28723 y: 239.44897 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 229 blockName: New Block (Copy) (Copy)2 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -14414,11 +14422,11 @@ MonoBehaviour: serializedVersion: 2 x: 724.41223 y: 377.82397 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 228 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -14439,11 +14447,11 @@ MonoBehaviour: serializedVersion: 2 x: 563.41223 y: 352.82397 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 227 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -14464,11 +14472,11 @@ MonoBehaviour: serializedVersion: 2 x: 599.91223 y: 336.32397 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 226 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -14489,11 +14497,11 @@ MonoBehaviour: serializedVersion: 2 x: 438.91223 y: 311.32397 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 225 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -14514,11 +14522,11 @@ MonoBehaviour: serializedVersion: 2 x: 578.91223 y: 176.82397 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 224 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -14539,11 +14547,11 @@ MonoBehaviour: serializedVersion: 2 x: 454.41223 y: 135.32397 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 223 blockName: New Block (Copy)3 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -14564,11 +14572,11 @@ MonoBehaviour: serializedVersion: 2 x: 807.16223 y: 308.07397 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 222 blockName: New Block (Copy) (Copy) (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -14589,11 +14597,11 @@ MonoBehaviour: serializedVersion: 2 x: 646.16223 y: 283.07397 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 221 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -14614,11 +14622,11 @@ MonoBehaviour: serializedVersion: 2 x: 661.66223 y: 107.073975 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 220 blockName: New Block (Copy)2 (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -14639,11 +14647,11 @@ MonoBehaviour: serializedVersion: 2 x: 521.66223 y: 241.57397 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 219 blockName: New Block (Copy)1 (Copy)3 (Copy)2 description: eventHandler: {fileID: 0} @@ -14664,11 +14672,11 @@ MonoBehaviour: serializedVersion: 2 x: 682.66223 y: 266.57397 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 218 blockName: New Block (Copy) (Copy)3 (Copy)2 description: eventHandler: {fileID: 0} @@ -14689,11 +14697,11 @@ MonoBehaviour: serializedVersion: 2 x: 537.16223 y: 65.573975 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 217 blockName: New Block (Copy)5 (Copy)2 description: eventHandler: {fileID: 0} @@ -14714,11 +14722,11 @@ MonoBehaviour: serializedVersion: 2 x: 718.97473 y: -9.238525 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 216 blockName: New Block (Copy)3 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -14739,11 +14747,11 @@ MonoBehaviour: serializedVersion: 2 x: 988.97473 y: 233.26147 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 215 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -14764,11 +14772,11 @@ MonoBehaviour: serializedVersion: 2 x: 827.97473 y: 208.26147 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 214 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -14789,11 +14797,11 @@ MonoBehaviour: serializedVersion: 2 x: 864.47473 y: 191.76147 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 213 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -14814,11 +14822,11 @@ MonoBehaviour: serializedVersion: 2 x: 703.47473 y: 166.76147 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 212 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -14839,11 +14847,11 @@ MonoBehaviour: serializedVersion: 2 x: 843.47473 y: 32.261475 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 211 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -14864,11 +14872,11 @@ MonoBehaviour: serializedVersion: 2 x: 1071.7247 y: 163.51147 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 210 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -14889,11 +14897,11 @@ MonoBehaviour: serializedVersion: 2 x: 910.72473 y: 138.51147 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 209 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -14914,11 +14922,11 @@ MonoBehaviour: serializedVersion: 2 x: 926.22473 y: -37.488525 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 208 blockName: New Block (Copy)2 (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -14939,11 +14947,11 @@ MonoBehaviour: serializedVersion: 2 x: 786.22473 y: 97.011475 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 207 blockName: New Block (Copy)1 (Copy)2 (Copy)3 description: eventHandler: {fileID: 0} @@ -14964,11 +14972,11 @@ MonoBehaviour: serializedVersion: 2 x: 947.22473 y: 122.011475 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 206 blockName: New Block (Copy) (Copy)2 (Copy)3 description: eventHandler: {fileID: 0} @@ -14989,11 +14997,11 @@ MonoBehaviour: serializedVersion: 2 x: 801.72473 y: -78.988525 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 205 blockName: New Block (Copy)4 (Copy)3 description: eventHandler: {fileID: 0} @@ -15014,11 +15022,11 @@ MonoBehaviour: serializedVersion: 2 x: 867.34973 y: 260.38647 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 204 blockName: New Block (Copy) (Copy) (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -15039,11 +15047,11 @@ MonoBehaviour: serializedVersion: 2 x: 706.34973 y: 235.38647 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 203 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -15064,11 +15072,11 @@ MonoBehaviour: serializedVersion: 2 x: 742.84973 y: 218.88647 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 202 blockName: New Block (Copy) (Copy)1 (Copy)4 description: eventHandler: {fileID: 0} @@ -15089,11 +15097,11 @@ MonoBehaviour: serializedVersion: 2 x: 581.84973 y: 193.88647 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 201 blockName: New Block (Copy)1 (Copy)1 (Copy)4 description: eventHandler: {fileID: 0} @@ -15114,11 +15122,11 @@ MonoBehaviour: serializedVersion: 2 x: 721.84973 y: 59.386475 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 200 blockName: New Block (Copy)2 (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -15139,11 +15147,11 @@ MonoBehaviour: serializedVersion: 2 x: 597.34973 y: 17.886475 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 199 blockName: New Block (Copy)3 (Copy)4 description: eventHandler: {fileID: 0} @@ -15164,11 +15172,11 @@ MonoBehaviour: serializedVersion: 2 x: 950.09973 y: 190.63647 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 198 blockName: New Block (Copy) (Copy) (Copy)5 description: eventHandler: {fileID: 0} @@ -15189,11 +15197,11 @@ MonoBehaviour: serializedVersion: 2 x: 789.09973 y: 165.63647 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 197 blockName: New Block (Copy)1 (Copy) (Copy)5 description: eventHandler: {fileID: 0} @@ -15214,11 +15222,11 @@ MonoBehaviour: serializedVersion: 2 x: 804.59973 y: -10.363525 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 196 blockName: New Block (Copy)2 (Copy)5 description: eventHandler: {fileID: 0} @@ -15239,11 +15247,11 @@ MonoBehaviour: serializedVersion: 2 x: 664.59973 y: 124.136475 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 195 blockName: New Block (Copy)1 (Copy)6 description: eventHandler: {fileID: 0} @@ -15264,11 +15272,11 @@ MonoBehaviour: serializedVersion: 2 x: 825.59973 y: 149.13647 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 194 blockName: New Block (Copy) (Copy)6 description: eventHandler: {fileID: 0} @@ -15289,11 +15297,11 @@ MonoBehaviour: serializedVersion: 2 x: 680.09973 y: -51.863525 - width: 160 + width: 155.35712 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 193 blockName: New Block (Copy)8 description: eventHandler: {fileID: 0} @@ -15314,11 +15322,11 @@ MonoBehaviour: serializedVersion: 2 x: -707.4019 y: -689.1808 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 192 blockName: New Block (Copy)6 (Copy) description: eventHandler: {fileID: 0} @@ -15339,11 +15347,11 @@ MonoBehaviour: serializedVersion: 2 x: -850.3394 y: -571.7433 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 191 blockName: New Block (Copy)5 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15364,11 +15372,11 @@ MonoBehaviour: serializedVersion: 2 x: -728.7144 y: -598.8683 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 190 blockName: New Block (Copy)4 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15389,11 +15397,11 @@ MonoBehaviour: serializedVersion: 2 x: -811.4644 y: -529.1183 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 189 blockName: New Block (Copy)3 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15414,11 +15422,11 @@ MonoBehaviour: serializedVersion: 2 x: -541.4644 y: -286.6183 - width: 417 + width: 394.64273 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 188 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15439,11 +15447,11 @@ MonoBehaviour: serializedVersion: 2 x: -702.4644 y: -311.6183 - width: 424 + width: 401.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 187 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15464,11 +15472,11 @@ MonoBehaviour: serializedVersion: 2 x: -665.9644 y: -328.1183 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 186 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15489,11 +15497,11 @@ MonoBehaviour: serializedVersion: 2 x: -826.9644 y: -353.1183 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 185 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15514,11 +15522,11 @@ MonoBehaviour: serializedVersion: 2 x: -686.9644 y: -487.6183 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 184 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15539,11 +15547,11 @@ MonoBehaviour: serializedVersion: 2 x: -458.71442 y: -356.3683 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 183 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15564,11 +15572,11 @@ MonoBehaviour: serializedVersion: 2 x: -619.7144 y: -381.3683 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 182 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15589,11 +15597,11 @@ MonoBehaviour: serializedVersion: 2 x: -604.2144 y: -557.3683 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 181 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15614,11 +15622,11 @@ MonoBehaviour: serializedVersion: 2 x: -744.2144 y: -422.8683 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 180 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15639,11 +15647,11 @@ MonoBehaviour: serializedVersion: 2 x: -583.2144 y: -397.8683 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 179 blockName: New Block (Copy) (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15664,11 +15672,11 @@ MonoBehaviour: serializedVersion: 2 x: -663.0894 y: -259.4933 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 178 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15689,11 +15697,11 @@ MonoBehaviour: serializedVersion: 2 x: -824.0894 y: -284.4933 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 177 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15714,11 +15722,11 @@ MonoBehaviour: serializedVersion: 2 x: -787.5894 y: -300.9933 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 176 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15739,11 +15747,11 @@ MonoBehaviour: serializedVersion: 2 x: -948.5894 y: -325.9933 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 175 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15764,11 +15772,11 @@ MonoBehaviour: serializedVersion: 2 x: -808.5894 y: -460.4933 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 174 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15789,11 +15797,11 @@ MonoBehaviour: serializedVersion: 2 x: -933.0894 y: -501.9933 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 173 blockName: New Block (Copy)3 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15814,11 +15822,11 @@ MonoBehaviour: serializedVersion: 2 x: -580.3394 y: -329.2433 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 172 blockName: New Block (Copy) (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15839,11 +15847,11 @@ MonoBehaviour: serializedVersion: 2 x: -741.3394 y: -354.2433 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 171 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15864,11 +15872,11 @@ MonoBehaviour: serializedVersion: 2 x: -725.8394 y: -530.2433 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 170 blockName: New Block (Copy)2 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15889,11 +15897,11 @@ MonoBehaviour: serializedVersion: 2 x: -865.8394 y: -395.7433 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 169 blockName: New Block (Copy)1 (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15914,11 +15922,11 @@ MonoBehaviour: serializedVersion: 2 x: -704.8394 y: -370.7433 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 168 blockName: New Block (Copy) (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -15939,11 +15947,11 @@ MonoBehaviour: serializedVersion: 2 x: -668.5269 y: -646.5558 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 167 blockName: New Block (Copy)3 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -15964,11 +15972,11 @@ MonoBehaviour: serializedVersion: 2 x: -398.52692 y: -404.0558 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 166 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -15989,11 +15997,11 @@ MonoBehaviour: serializedVersion: 2 x: -559.5269 y: -429.0558 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 165 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -16014,11 +16022,11 @@ MonoBehaviour: serializedVersion: 2 x: -523.0269 y: -445.5558 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 164 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -16039,11 +16047,11 @@ MonoBehaviour: serializedVersion: 2 x: -684.0269 y: -470.5558 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 163 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -16064,11 +16072,11 @@ MonoBehaviour: serializedVersion: 2 x: -544.0269 y: -605.0558 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 162 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -16089,11 +16097,11 @@ MonoBehaviour: serializedVersion: 2 x: -315.77692 y: -473.8058 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 161 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -16114,11 +16122,11 @@ MonoBehaviour: serializedVersion: 2 x: -476.77692 y: -498.8058 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 160 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -16139,11 +16147,11 @@ MonoBehaviour: serializedVersion: 2 x: -461.27692 y: -674.8058 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 159 blockName: New Block (Copy)2 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -16164,11 +16172,11 @@ MonoBehaviour: serializedVersion: 2 x: -601.2769 y: -540.3058 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 158 blockName: New Block (Copy)1 (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -16189,11 +16197,11 @@ MonoBehaviour: serializedVersion: 2 x: -440.27692 y: -515.3058 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 157 blockName: New Block (Copy) (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -16214,11 +16222,11 @@ MonoBehaviour: serializedVersion: 2 x: -585.7769 y: -716.3058 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 156 blockName: New Block (Copy)4 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -16239,11 +16247,11 @@ MonoBehaviour: serializedVersion: 2 x: -520.1519 y: -376.9308 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 155 blockName: New Block (Copy) (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -16264,11 +16272,11 @@ MonoBehaviour: serializedVersion: 2 x: -681.1519 y: -401.9308 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 154 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -16289,11 +16297,11 @@ MonoBehaviour: serializedVersion: 2 x: -644.6519 y: -418.4308 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 153 blockName: New Block (Copy) (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -16314,11 +16322,11 @@ MonoBehaviour: serializedVersion: 2 x: -805.6519 y: -443.4308 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 152 blockName: New Block (Copy)1 (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -16339,11 +16347,11 @@ MonoBehaviour: serializedVersion: 2 x: -665.6519 y: -577.9308 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 151 blockName: New Block (Copy)2 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -16364,11 +16372,11 @@ MonoBehaviour: serializedVersion: 2 x: -790.1519 y: -619.4308 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 150 blockName: New Block (Copy)3 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -16389,11 +16397,11 @@ MonoBehaviour: serializedVersion: 2 x: -437.40192 y: -446.6808 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 149 blockName: New Block (Copy) (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -16414,11 +16422,11 @@ MonoBehaviour: serializedVersion: 2 x: -598.4019 y: -471.6808 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 148 blockName: New Block (Copy)1 (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -16439,11 +16447,11 @@ MonoBehaviour: serializedVersion: 2 x: -582.9019 y: -647.6808 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 147 blockName: New Block (Copy)2 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -16464,11 +16472,11 @@ MonoBehaviour: serializedVersion: 2 x: -722.9019 y: -513.1808 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 146 blockName: New Block (Copy)1 (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -16489,11 +16497,11 @@ MonoBehaviour: serializedVersion: 2 x: -561.9019 y: -488.1808 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 145 blockName: New Block (Copy) (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -16514,11 +16522,11 @@ MonoBehaviour: serializedVersion: 2 x: 44.8869 y: -455.41443 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 144 blockName: New Block (Copy)4 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16539,11 +16547,11 @@ MonoBehaviour: serializedVersion: 2 x: -37.8631 y: -385.66443 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 143 blockName: New Block (Copy)3 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16564,11 +16572,11 @@ MonoBehaviour: serializedVersion: 2 x: 232.1369 y: -143.16443 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 142 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16589,11 +16597,11 @@ MonoBehaviour: serializedVersion: 2 x: 71.1369 y: -168.16443 - width: 387 + width: 367.85703 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 141 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16614,11 +16622,11 @@ MonoBehaviour: serializedVersion: 2 x: 107.6369 y: -184.66443 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 140 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16639,11 +16647,11 @@ MonoBehaviour: serializedVersion: 2 x: -53.3631 y: -209.66443 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 139 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16664,11 +16672,11 @@ MonoBehaviour: serializedVersion: 2 x: 86.6369 y: -344.16443 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 138 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16689,11 +16697,11 @@ MonoBehaviour: serializedVersion: 2 x: 314.8869 y: -212.91443 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 137 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16714,11 +16722,11 @@ MonoBehaviour: serializedVersion: 2 x: 153.8869 y: -237.91443 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 136 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16739,11 +16747,11 @@ MonoBehaviour: serializedVersion: 2 x: 169.3869 y: -413.91443 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 135 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16764,11 +16772,11 @@ MonoBehaviour: serializedVersion: 2 x: 29.386902 y: -279.41443 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 134 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16789,11 +16797,11 @@ MonoBehaviour: serializedVersion: 2 x: 190.3869 y: -254.41443 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 133 blockName: New Block (Copy) (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -16814,11 +16822,11 @@ MonoBehaviour: serializedVersion: 2 x: 110.5119 y: -116.03943 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 132 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -16839,11 +16847,11 @@ MonoBehaviour: serializedVersion: 2 x: -50.4881 y: -141.03943 - width: 350 + width: 333.92847 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 131 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -16864,11 +16872,11 @@ MonoBehaviour: serializedVersion: 2 x: -13.988098 y: -157.53943 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 130 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -16889,11 +16897,11 @@ MonoBehaviour: serializedVersion: 2 x: -174.9881 y: -182.53943 - width: 313 + width: 299.99994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 129 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -16914,11 +16922,11 @@ MonoBehaviour: serializedVersion: 2 x: -34.9881 y: -317.03943 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 128 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -16939,11 +16947,11 @@ MonoBehaviour: serializedVersion: 2 x: -159.4881 y: -358.53943 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 127 blockName: New Block (Copy)3 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -16964,11 +16972,11 @@ MonoBehaviour: serializedVersion: 2 x: 193.2619 y: -185.78943 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 126 blockName: New Block (Copy) (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -16989,11 +16997,11 @@ MonoBehaviour: serializedVersion: 2 x: 32.2619 y: -210.78943 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 125 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -17014,11 +17022,11 @@ MonoBehaviour: serializedVersion: 2 x: 47.7619 y: -386.78943 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 124 blockName: New Block (Copy)2 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -17039,11 +17047,11 @@ MonoBehaviour: serializedVersion: 2 x: -92.2381 y: -252.28943 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 123 blockName: New Block (Copy)1 (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -17064,11 +17072,11 @@ MonoBehaviour: serializedVersion: 2 x: 68.7619 y: -227.28943 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 122 blockName: New Block (Copy) (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -17089,11 +17097,11 @@ MonoBehaviour: serializedVersion: 2 x: -76.7381 y: -428.28943 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 121 blockName: New Block (Copy)5 (Copy)1 description: eventHandler: {fileID: 0} @@ -17114,11 +17122,11 @@ MonoBehaviour: serializedVersion: 2 x: 105.0744 y: -503.10193 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 120 blockName: New Block (Copy)3 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -17139,11 +17147,11 @@ MonoBehaviour: serializedVersion: 2 x: 375.0744 y: -260.60193 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 119 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -17164,11 +17172,11 @@ MonoBehaviour: serializedVersion: 2 x: 214.0744 y: -285.60193 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 118 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -17189,11 +17197,11 @@ MonoBehaviour: serializedVersion: 2 x: 250.5744 y: -302.10193 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 117 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -17214,11 +17222,11 @@ MonoBehaviour: serializedVersion: 2 x: 89.5744 y: -327.10193 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 116 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -17239,11 +17247,11 @@ MonoBehaviour: serializedVersion: 2 x: 229.5744 y: -461.60193 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 115 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -17264,11 +17272,11 @@ MonoBehaviour: serializedVersion: 2 x: 457.8244 y: -330.35193 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 114 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -17289,11 +17297,11 @@ MonoBehaviour: serializedVersion: 2 x: 296.8244 y: -355.35193 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 113 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -17314,11 +17322,11 @@ MonoBehaviour: serializedVersion: 2 x: 312.3244 y: -531.3519 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 112 blockName: New Block (Copy)2 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -17339,11 +17347,11 @@ MonoBehaviour: serializedVersion: 2 x: 172.3244 y: -396.85193 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 111 blockName: New Block (Copy)1 (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -17364,11 +17372,11 @@ MonoBehaviour: serializedVersion: 2 x: 333.3244 y: -371.85193 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 110 blockName: New Block (Copy) (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -17389,11 +17397,11 @@ MonoBehaviour: serializedVersion: 2 x: 187.8244 y: -572.8519 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 109 blockName: New Block (Copy)4 (Copy)2 description: eventHandler: {fileID: 0} @@ -17414,11 +17422,11 @@ MonoBehaviour: serializedVersion: 2 x: 253.4494 y: -233.47693 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 108 blockName: New Block (Copy) (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -17439,11 +17447,11 @@ MonoBehaviour: serializedVersion: 2 x: 92.4494 y: -258.47693 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 107 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -17464,11 +17472,11 @@ MonoBehaviour: serializedVersion: 2 x: 128.9494 y: -274.97693 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 106 blockName: New Block (Copy) (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -17489,11 +17497,11 @@ MonoBehaviour: serializedVersion: 2 x: -32.0506 y: -299.97693 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 105 blockName: New Block (Copy)1 (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -17514,11 +17522,11 @@ MonoBehaviour: serializedVersion: 2 x: 107.9494 y: -434.47693 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 104 blockName: New Block (Copy)2 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -17539,11 +17547,11 @@ MonoBehaviour: serializedVersion: 2 x: -16.550598 y: -475.97693 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 103 blockName: New Block (Copy)3 (Copy)3 description: eventHandler: {fileID: 0} @@ -17564,11 +17572,11 @@ MonoBehaviour: serializedVersion: 2 x: 336.1994 y: -303.22693 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 102 blockName: New Block (Copy) (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -17589,11 +17597,11 @@ MonoBehaviour: serializedVersion: 2 x: 175.1994 y: -328.22693 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 101 blockName: New Block (Copy)1 (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -17614,11 +17622,11 @@ MonoBehaviour: serializedVersion: 2 x: 190.6994 y: -504.22693 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 100 blockName: New Block (Copy)2 (Copy)4 description: eventHandler: {fileID: 0} @@ -17639,11 +17647,11 @@ MonoBehaviour: serializedVersion: 2 x: 50.6994 y: -369.72693 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 99 blockName: New Block (Copy)1 (Copy)5 description: eventHandler: {fileID: 0} @@ -17664,11 +17672,11 @@ MonoBehaviour: serializedVersion: 2 x: 211.6994 y: -344.72693 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 98 blockName: New Block (Copy) (Copy)5 description: eventHandler: {fileID: 0} @@ -17689,11 +17697,11 @@ MonoBehaviour: serializedVersion: 2 x: 66.1994 y: -545.7269 - width: 160 + width: 155.35712 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 97 blockName: New Block (Copy)7 description: eventHandler: {fileID: 0} @@ -17714,11 +17722,11 @@ MonoBehaviour: serializedVersion: 2 x: -808.5388 y: 79.98364 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 96 blockName: New Block (Copy)5 (Copy) description: eventHandler: {fileID: 0} @@ -17739,11 +17747,11 @@ MonoBehaviour: serializedVersion: 2 x: -686.9138 y: 52.858643 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 95 blockName: New Block (Copy)4 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -17764,11 +17772,11 @@ MonoBehaviour: serializedVersion: 2 x: -769.6638 y: 122.60864 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 94 blockName: New Block (Copy)3 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -17789,11 +17797,11 @@ MonoBehaviour: serializedVersion: 2 x: -499.66382 y: 365.10864 - width: 373 + width: 353.57132 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 93 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -17814,11 +17822,11 @@ MonoBehaviour: serializedVersion: 2 x: -660.6638 y: 340.10864 - width: 380 + width: 360.71417 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 92 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -17839,11 +17847,11 @@ MonoBehaviour: serializedVersion: 2 x: -624.1638 y: 323.60864 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 91 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -17864,11 +17872,11 @@ MonoBehaviour: serializedVersion: 2 x: -785.1638 y: 298.60864 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 90 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -17889,11 +17897,11 @@ MonoBehaviour: serializedVersion: 2 x: -645.1638 y: 164.10864 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 89 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -17914,11 +17922,11 @@ MonoBehaviour: serializedVersion: 2 x: -416.91382 y: 295.35864 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 88 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -17939,11 +17947,11 @@ MonoBehaviour: serializedVersion: 2 x: -577.9138 y: 270.35864 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 87 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -17964,11 +17972,11 @@ MonoBehaviour: serializedVersion: 2 x: -562.4138 y: 94.35864 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 86 blockName: New Block (Copy)2 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -17989,11 +17997,11 @@ MonoBehaviour: serializedVersion: 2 x: -702.4138 y: 228.85864 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 85 blockName: New Block (Copy)1 (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -18014,11 +18022,11 @@ MonoBehaviour: serializedVersion: 2 x: -541.4138 y: 253.85864 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 84 blockName: New Block (Copy) (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -18039,11 +18047,11 @@ MonoBehaviour: serializedVersion: 2 x: -621.2888 y: 392.23364 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 83 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -18064,11 +18072,11 @@ MonoBehaviour: serializedVersion: 2 x: -782.2888 y: 367.23364 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 82 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -18089,11 +18097,11 @@ MonoBehaviour: serializedVersion: 2 x: -745.7888 y: 350.73364 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 81 blockName: New Block (Copy) (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -18114,11 +18122,11 @@ MonoBehaviour: serializedVersion: 2 x: -906.7888 y: 325.73364 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 80 blockName: New Block (Copy)1 (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -18139,11 +18147,11 @@ MonoBehaviour: serializedVersion: 2 x: -766.7888 y: 191.23364 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 79 blockName: New Block (Copy)2 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -18164,11 +18172,11 @@ MonoBehaviour: serializedVersion: 2 x: -891.2888 y: 149.73364 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 78 blockName: New Block (Copy)3 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -18189,11 +18197,11 @@ MonoBehaviour: serializedVersion: 2 x: -538.5388 y: 322.48364 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 77 blockName: New Block (Copy) (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -18214,11 +18222,11 @@ MonoBehaviour: serializedVersion: 2 x: -699.5388 y: 297.48364 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 76 blockName: New Block (Copy)1 (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -18239,11 +18247,11 @@ MonoBehaviour: serializedVersion: 2 x: -684.0388 y: 121.48364 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 75 blockName: New Block (Copy)2 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -18264,11 +18272,11 @@ MonoBehaviour: serializedVersion: 2 x: -824.0388 y: 255.98364 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 74 blockName: New Block (Copy)1 (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -18289,11 +18297,11 @@ MonoBehaviour: serializedVersion: 2 x: -663.0388 y: 280.98364 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 73 blockName: New Block (Copy) (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -18314,11 +18322,11 @@ MonoBehaviour: serializedVersion: 2 x: -626.7263 y: 5.1711426 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 72 blockName: New Block (Copy)3 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -18339,11 +18347,11 @@ MonoBehaviour: serializedVersion: 2 x: -356.72632 y: 247.67114 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 71 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -18364,11 +18372,11 @@ MonoBehaviour: serializedVersion: 2 x: -517.7263 y: 222.67114 - width: 343 + width: 326.7856 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 70 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -18389,11 +18397,11 @@ MonoBehaviour: serializedVersion: 2 x: -481.22632 y: 206.17114 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 69 blockName: New Block (Copy) (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -18414,11 +18422,11 @@ MonoBehaviour: serializedVersion: 2 x: -642.2263 y: 181.17114 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 68 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -18439,11 +18447,11 @@ MonoBehaviour: serializedVersion: 2 x: -502.22632 y: 46.671143 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 67 blockName: New Block (Copy)2 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -18464,11 +18472,11 @@ MonoBehaviour: serializedVersion: 2 x: -273.97632 y: 177.92114 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 66 blockName: New Block (Copy) (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -18489,11 +18497,11 @@ MonoBehaviour: serializedVersion: 2 x: -434.97632 y: 152.92114 - width: 306 + width: 292.85706 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 65 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -18514,11 +18522,11 @@ MonoBehaviour: serializedVersion: 2 x: -419.47632 y: -23.078857 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 64 blockName: New Block (Copy)2 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -18539,11 +18547,11 @@ MonoBehaviour: serializedVersion: 2 x: -559.4763 y: 111.42114 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 63 blockName: New Block (Copy)1 (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -18564,11 +18572,11 @@ MonoBehaviour: serializedVersion: 2 x: -398.47632 y: 136.42114 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 62 blockName: New Block (Copy) (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -18589,11 +18597,11 @@ MonoBehaviour: serializedVersion: 2 x: -543.9763 y: -64.57886 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 61 blockName: New Block (Copy)4 (Copy)1 description: eventHandler: {fileID: 0} @@ -18614,11 +18622,11 @@ MonoBehaviour: serializedVersion: 2 x: -478.35132 y: 274.79614 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 60 blockName: New Block (Copy) (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -18639,11 +18647,11 @@ MonoBehaviour: serializedVersion: 2 x: -639.3513 y: 249.79614 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 59 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -18664,11 +18672,11 @@ MonoBehaviour: serializedVersion: 2 x: -602.8513 y: 233.29614 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 58 blockName: New Block (Copy) (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -18689,11 +18697,11 @@ MonoBehaviour: serializedVersion: 2 x: -763.8513 y: 208.29614 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 57 blockName: New Block (Copy)1 (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -18714,11 +18722,11 @@ MonoBehaviour: serializedVersion: 2 x: -623.8513 y: 73.79614 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 56 blockName: New Block (Copy)2 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -18739,11 +18747,11 @@ MonoBehaviour: serializedVersion: 2 x: -748.3513 y: 32.296143 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 55 blockName: New Block (Copy)3 (Copy)2 description: eventHandler: {fileID: 0} @@ -18764,11 +18772,11 @@ MonoBehaviour: serializedVersion: 2 x: -395.60132 y: 205.04614 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 54 blockName: New Block (Copy) (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -18789,11 +18797,11 @@ MonoBehaviour: serializedVersion: 2 x: -556.6013 y: 180.04614 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 53 blockName: New Block (Copy)1 (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -18814,11 +18822,11 @@ MonoBehaviour: serializedVersion: 2 x: -541.1013 y: 4.0461426 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 52 blockName: New Block (Copy)2 (Copy)3 description: eventHandler: {fileID: 0} @@ -18839,11 +18847,11 @@ MonoBehaviour: serializedVersion: 2 x: -681.1013 y: 138.54614 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 51 blockName: New Block (Copy)1 (Copy)4 description: eventHandler: {fileID: 0} @@ -18864,11 +18872,11 @@ MonoBehaviour: serializedVersion: 2 x: -520.1013 y: 163.54614 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 50 blockName: New Block (Copy) (Copy)4 description: eventHandler: {fileID: 0} @@ -18889,11 +18897,11 @@ MonoBehaviour: serializedVersion: 2 x: -665.6013 y: -37.453857 - width: 160 + width: 155.35712 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 49 blockName: New Block (Copy)6 description: eventHandler: {fileID: 0} @@ -18914,11 +18922,11 @@ MonoBehaviour: serializedVersion: 2 x: 86.6875 y: 196.3125 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 48 blockName: New Block (Copy)4 (Copy) description: eventHandler: {fileID: 0} @@ -18939,11 +18947,11 @@ MonoBehaviour: serializedVersion: 2 x: 3.9375 y: 266.0625 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 47 blockName: New Block (Copy)3 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -18964,11 +18972,11 @@ MonoBehaviour: serializedVersion: 2 x: 273.9375 y: 508.5625 - width: 329 + width: 312.4999 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 46 blockName: New Block (Copy) (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -18989,11 +18997,11 @@ MonoBehaviour: serializedVersion: 2 x: 112.9375 y: 483.5625 - width: 336 + width: 319.64276 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 45 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -19014,11 +19022,11 @@ MonoBehaviour: serializedVersion: 2 x: 149.4375 y: 467.0625 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 44 blockName: New Block (Copy) (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -19039,11 +19047,11 @@ MonoBehaviour: serializedVersion: 2 x: -11.5625 y: 442.0625 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 43 blockName: New Block (Copy)1 (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -19064,11 +19072,11 @@ MonoBehaviour: serializedVersion: 2 x: 128.4375 y: 307.5625 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 42 blockName: New Block (Copy)2 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -19089,11 +19097,11 @@ MonoBehaviour: serializedVersion: 2 x: 356.6875 y: 438.8125 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 41 blockName: New Block (Copy) (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -19114,11 +19122,11 @@ MonoBehaviour: serializedVersion: 2 x: 195.6875 y: 413.8125 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 40 blockName: New Block (Copy)1 (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -19139,11 +19147,11 @@ MonoBehaviour: serializedVersion: 2 x: 211.1875 y: 237.8125 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 39 blockName: New Block (Copy)2 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -19164,11 +19172,11 @@ MonoBehaviour: serializedVersion: 2 x: 71.1875 y: 372.3125 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 38 blockName: New Block (Copy)1 (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -19189,11 +19197,11 @@ MonoBehaviour: serializedVersion: 2 x: 232.1875 y: 397.3125 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 37 blockName: New Block (Copy) (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -19214,11 +19222,11 @@ MonoBehaviour: serializedVersion: 2 x: 152.3125 y: 535.6875 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 36 blockName: New Block (Copy) (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -19239,11 +19247,11 @@ MonoBehaviour: serializedVersion: 2 x: -8.6875 y: 510.6875 - width: 299 + width: 285.7142 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 35 blockName: New Block (Copy)1 (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -19264,11 +19272,11 @@ MonoBehaviour: serializedVersion: 2 x: 27.8125 y: 494.1875 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 34 blockName: New Block (Copy) (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -19289,11 +19297,11 @@ MonoBehaviour: serializedVersion: 2 x: -133.1875 y: 469.1875 - width: 262 + width: 251.78564 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 33 blockName: New Block (Copy)1 (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -19314,11 +19322,11 @@ MonoBehaviour: serializedVersion: 2 x: 6.8125 y: 334.6875 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 32 blockName: New Block (Copy)2 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -19339,11 +19347,11 @@ MonoBehaviour: serializedVersion: 2 x: -117.6875 y: 293.1875 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 31 blockName: New Block (Copy)3 (Copy)1 description: eventHandler: {fileID: 0} @@ -19364,11 +19372,11 @@ MonoBehaviour: serializedVersion: 2 x: 235.0625 y: 465.9375 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 30 blockName: New Block (Copy) (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -19389,11 +19397,11 @@ MonoBehaviour: serializedVersion: 2 x: 74.0625 y: 440.9375 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 29 blockName: New Block (Copy)1 (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -19414,11 +19422,11 @@ MonoBehaviour: serializedVersion: 2 x: 89.5625 y: 264.9375 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 28 blockName: New Block (Copy)2 (Copy)2 description: eventHandler: {fileID: 0} @@ -19439,11 +19447,11 @@ MonoBehaviour: serializedVersion: 2 x: -50.4375 y: 399.4375 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 27 blockName: New Block (Copy)1 (Copy)3 description: eventHandler: {fileID: 0} @@ -19464,11 +19472,11 @@ MonoBehaviour: serializedVersion: 2 x: 110.5625 y: 424.4375 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 26 blockName: New Block (Copy) (Copy)3 description: eventHandler: {fileID: 0} @@ -19489,11 +19497,11 @@ MonoBehaviour: serializedVersion: 2 x: -34.9375 y: 223.4375 - width: 160 + width: 155.35712 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 25 blockName: New Block (Copy)5 description: eventHandler: {fileID: 0} @@ -19514,11 +19522,11 @@ MonoBehaviour: serializedVersion: 2 x: 146.875 y: 148.625 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 24 blockName: New Block (Copy)3 (Copy) description: eventHandler: {fileID: 0} @@ -19539,11 +19547,11 @@ MonoBehaviour: serializedVersion: 2 x: 416.875 y: 391.125 - width: 285 + width: 271.4285 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 23 blockName: New Block (Copy) (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -19564,11 +19572,11 @@ MonoBehaviour: serializedVersion: 2 x: 255.875 y: 366.125 - width: 292 + width: 278.57135 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 22 blockName: New Block (Copy)1 (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -19589,11 +19597,11 @@ MonoBehaviour: serializedVersion: 2 x: 292.375 y: 349.625 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 21 blockName: New Block (Copy) (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -19614,11 +19622,11 @@ MonoBehaviour: serializedVersion: 2 x: 131.375 y: 324.625 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 20 blockName: New Block (Copy)1 (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -19639,11 +19647,11 @@ MonoBehaviour: serializedVersion: 2 x: 271.375 y: 190.125 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 19 blockName: New Block (Copy)2 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -19664,11 +19672,11 @@ MonoBehaviour: serializedVersion: 2 x: 499.625 y: 321.375 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 18 blockName: New Block (Copy) (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -19689,11 +19697,11 @@ MonoBehaviour: serializedVersion: 2 x: 338.625 y: 296.375 - width: 255 + width: 244.64279 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 17 blockName: New Block (Copy)1 (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -19714,11 +19722,11 @@ MonoBehaviour: serializedVersion: 2 x: 354.125 y: 120.375 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 16 blockName: New Block (Copy)2 (Copy)1 description: eventHandler: {fileID: 0} @@ -19739,11 +19747,11 @@ MonoBehaviour: serializedVersion: 2 x: 214.125 y: 254.875 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 15 blockName: New Block (Copy)1 (Copy)2 description: eventHandler: {fileID: 0} @@ -19764,11 +19772,11 @@ MonoBehaviour: serializedVersion: 2 x: 375.125 y: 279.875 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 14 blockName: New Block (Copy) (Copy)2 description: eventHandler: {fileID: 0} @@ -19789,11 +19797,11 @@ MonoBehaviour: serializedVersion: 2 x: 229.625 y: 78.875 - width: 160 + width: 155.35712 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 13 blockName: New Block (Copy)4 description: eventHandler: {fileID: 0} @@ -19814,11 +19822,11 @@ MonoBehaviour: serializedVersion: 2 x: 295.25 y: 418.25 - width: 241 + width: 230.35709 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 12 blockName: New Block (Copy) (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -19839,11 +19847,11 @@ MonoBehaviour: serializedVersion: 2 x: 134.25 y: 393.25 - width: 248 + width: 237.49994 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 11 blockName: New Block (Copy)1 (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -19864,11 +19872,11 @@ MonoBehaviour: serializedVersion: 2 x: 170.75 y: 376.75 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 10 blockName: New Block (Copy) (Copy)1 description: eventHandler: {fileID: 0} @@ -19889,11 +19897,11 @@ MonoBehaviour: serializedVersion: 2 x: 9.75 y: 351.75 - width: 211 + width: 203.57138 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 9 blockName: New Block (Copy)1 (Copy)1 description: eventHandler: {fileID: 0} @@ -19914,11 +19922,11 @@ MonoBehaviour: serializedVersion: 2 x: 149.75 y: 217.25 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 8 blockName: New Block (Copy)2 (Copy) description: eventHandler: {fileID: 0} @@ -19939,11 +19947,11 @@ MonoBehaviour: serializedVersion: 2 x: 25.25 y: 175.75 - width: 160 + width: 155.35712 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 7 blockName: New Block (Copy)3 description: eventHandler: {fileID: 0} @@ -19964,11 +19972,11 @@ MonoBehaviour: serializedVersion: 2 x: 378 y: 348.5 - width: 197 + width: 189.28568 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 6 blockName: New Block (Copy) (Copy) description: eventHandler: {fileID: 0} @@ -19989,11 +19997,11 @@ MonoBehaviour: serializedVersion: 2 x: 217 y: 323.5 - width: 204 + width: 196.42853 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 5 blockName: New Block (Copy)1 (Copy) description: eventHandler: {fileID: 0} @@ -20014,11 +20022,11 @@ MonoBehaviour: serializedVersion: 2 x: 232.5 y: 147.5 - width: 160 + width: 155.35712 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 4 blockName: New Block (Copy)2 description: eventHandler: {fileID: 0} @@ -20039,11 +20047,11 @@ MonoBehaviour: serializedVersion: 2 x: 92.5 y: 282 - width: 160 + width: 155.35712 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 3 blockName: New Block (Copy)1 description: eventHandler: {fileID: 0} @@ -20064,11 +20072,11 @@ MonoBehaviour: serializedVersion: 2 x: 253.5 y: 307 - width: 153 + width: 148.21426 height: 40 tint: {r: 1, g: 1, b: 1, a: 1} useCustomTint: 0 - itemId: 0 + itemId: 2 blockName: New Block (Copy) description: eventHandler: {fileID: 0} @@ -20111,18 +20119,19 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: version: 1 - scrollPos: {x: -739.8675, y: 515.1726} + scrollPos: {x: -510.35065, y: 622.39056} variablesScrollPos: {x: 0, y: 0} variablesExpanded: 1 blockViewHeight: 400 - zoom: 1 + zoom: 0.6400002 scrollViewRect: serializedVersion: 2 x: 0 y: 0 width: 0 height: 0 - selectedBlocks: [] + selectedBlocks: + - {fileID: 28841446} selectedCommands: [] variables: [] description: @@ -20336,9 +20345,10 @@ Camera: m_ClearFlags: 1 m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 m_SensorSize: {x: 36, y: 24} m_LensShift: {x: 0, y: 0} - m_GateFitMode: 2 m_FocalLength: 50 m_NormalizedViewPortRect: serializedVersion: 2 diff --git a/Assets/Tests/SearchableCommands.unity b/Assets/Tests/SearchableCommands.unity new file mode 100755 index 00000000..bc027a2f --- /dev/null +++ b/Assets/Tests/SearchableCommands.unity @@ -0,0 +1,891 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 0 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_ExportTrainingData: 0 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &1217030777 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1217030780} + - component: {fileID: 1217030779} + - component: {fileID: 1217030778} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1217030778 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1217030777} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &1217030779 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1217030777} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1217030780 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1217030777} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1230283458 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1230283460} + - component: {fileID: 1230283459} + m_Layer: 0 + m_Name: _FungusState + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1230283459 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1230283458} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 61dddfdc5e0e44ca298d8f46f7f5a915, type: 3} + m_Name: + m_EditorClassIdentifier: + selectedFlowchart: {fileID: 1515680124} +--- !u!4 &1230283460 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1230283458} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1455217712 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1455217715} + - component: {fileID: 1455217714} + - component: {fileID: 1455217713} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &1455217713 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455217712} + m_Enabled: 1 +--- !u!20 &1455217714 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455217712} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 1 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &1455217715 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455217712} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1515680107 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1515680125} + - component: {fileID: 1515680124} + - component: {fileID: 1515680123} + - component: {fileID: 1515680122} + - component: {fileID: 1515680121} + - component: {fileID: 1515680120} + - component: {fileID: 1515680119} + - component: {fileID: 1515680118} + - component: {fileID: 1515680117} + - component: {fileID: 1515680116} + - component: {fileID: 1515680115} + - component: {fileID: 1515680114} + - component: {fileID: 1515680113} + - component: {fileID: 1515680112} + - component: {fileID: 1515680111} + - component: {fileID: 1515680110} + - component: {fileID: 1515680109} + - component: {fileID: 1515680108} + m_Layer: 0 + m_Name: Flowchart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1515680108 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f608b8c9fb3044200aac956492d8d586, type: 3} + m_Name: + m_EditorClassIdentifier: + itemId: 11 + indentLevel: 0 + conversationText: + stringRef: {fileID: 0} + stringVal: ConversationDialogContent + clearPrevious: + booleanRef: {fileID: 0} + booleanVal: 1 + waitForInput: + booleanRef: {fileID: 0} + booleanVal: 1 + waitForSeconds: + floatRef: {fileID: 0} + floatVal: 0 + fadeWhenDone: + booleanRef: {fileID: 0} + booleanVal: 1 +--- !u!114 &1515680109 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec422cd568a9c4a31ad7c36d0572b9da, type: 3} + m_Name: + m_EditorClassIdentifier: + itemId: 10 + indentLevel: 0 + storyText: SayDialogContent + description: + character: {fileID: 0} + portrait: {fileID: 0} + voiceOverClip: {fileID: 0} + showAlways: 1 + showCount: 1 + extendPrevious: 0 + fadeWhenDone: 1 + waitForClick: 1 + stopVoiceover: 1 + waitForVO: 0 + setSayDialog: {fileID: 0} +--- !u!114 &1515680110 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3d3d73aef2cfc4f51abf34ac00241f60, type: 3} + m_Name: + m_EditorClassIdentifier: + nodeRect: + serializedVersion: 2 + x: 564 + y: 195 + width: 120 + height: 40 + tint: {r: 1, g: 1, b: 1, a: 1} + useCustomTint: 0 + itemId: 9 + blockName: Say Content + description: + eventHandler: {fileID: 0} + commandList: + - {fileID: 1515680109} + - {fileID: 1515680108} +--- !u!114 &1515680111 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 93cb9773f2ca04e2bbf7a68ccfc23267, type: 3} + m_Name: + m_EditorClassIdentifier: + itemId: 8 + indentLevel: 0 +--- !u!114 &1515680112 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70c5622b8a80845c980954170295f292, type: 3} + m_Name: + m_EditorClassIdentifier: + itemId: 7 + indentLevel: 0 + compareOperator: 0 + variable: {fileID: 1515680120} + booleanData: + booleanRef: {fileID: 0} + booleanVal: 0 + integerData: + integerRef: {fileID: 0} + integerVal: 0 + floatData: + floatRef: {fileID: 0} + floatVal: 0 + stringData: + stringRef: {fileID: 0} + stringVal: foo + animatorData: + animatorRef: {fileID: 0} + animatorVal: {fileID: 0} + audioSourceData: + audioSourceRef: {fileID: 0} + audioSourceVal: {fileID: 0} + colorData: + colorRef: {fileID: 0} + colorVal: {r: 0, g: 0, b: 0, a: 0} + gameObjectData: + gameObjectRef: {fileID: 0} + gameObjectVal: {fileID: 0} + materialData: + materialRef: {fileID: 0} + materialVal: {fileID: 0} + objectData: + objectRef: {fileID: 0} + objectVal: {fileID: 0} + rigidbody2DData: + rigidbody2DRef: {fileID: 0} + rigidbody2DVal: {fileID: 0} + spriteData: + spriteRef: {fileID: 0} + spriteVal: {fileID: 0} + textureData: + textureRef: {fileID: 0} + textureVal: {fileID: 0} + transformData: + transformRef: {fileID: 0} + transformVal: {fileID: 0} + vector2Data: + vector2Ref: {fileID: 0} + vector2Val: {x: 0, y: 0} + vector3Data: + vector3Ref: {fileID: 0} + vector3Val: {x: 0, y: 0, z: 0} +--- !u!114 &1515680113 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 93cb9773f2ca04e2bbf7a68ccfc23267, type: 3} + m_Name: + m_EditorClassIdentifier: + itemId: 6 + indentLevel: 1 +--- !u!114 &1515680114 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70c5622b8a80845c980954170295f292, type: 3} + m_Name: + m_EditorClassIdentifier: + itemId: 5 + indentLevel: 1 + compareOperator: 0 + variable: {fileID: 1515680121} + booleanData: + booleanRef: {fileID: 0} + booleanVal: 0 + integerData: + integerRef: {fileID: 0} + integerVal: 0 + floatData: + floatRef: {fileID: 0} + floatVal: 0 + stringData: + stringRef: {fileID: 0} + stringVal: + animatorData: + animatorRef: {fileID: 0} + animatorVal: {fileID: 0} + audioSourceData: + audioSourceRef: {fileID: 0} + audioSourceVal: {fileID: 0} + colorData: + colorRef: {fileID: 0} + colorVal: {r: 0, g: 0, b: 0, a: 0} + gameObjectData: + gameObjectRef: {fileID: 0} + gameObjectVal: {fileID: 0} + materialData: + materialRef: {fileID: 0} + materialVal: {fileID: 0} + objectData: + objectRef: {fileID: 0} + objectVal: {fileID: 0} + rigidbody2DData: + rigidbody2DRef: {fileID: 0} + rigidbody2DVal: {fileID: 0} + spriteData: + spriteRef: {fileID: 0} + spriteVal: {fileID: 0} + textureData: + textureRef: {fileID: 0} + textureVal: {fileID: 0} + transformData: + transformRef: {fileID: 0} + transformVal: {fileID: 0} + vector2Data: + vector2Ref: {fileID: 0} + vector2Val: {x: 0, y: 0} + vector3Data: + vector3Ref: {fileID: 0} + vector3Val: {x: 0, y: 0, z: 0} +--- !u!114 &1515680115 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 93cb9773f2ca04e2bbf7a68ccfc23267, type: 3} + m_Name: + m_EditorClassIdentifier: + itemId: 4 + indentLevel: 0 +--- !u!114 &1515680116 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70c5622b8a80845c980954170295f292, type: 3} + m_Name: + m_EditorClassIdentifier: + itemId: 3 + indentLevel: 0 + compareOperator: 0 + variable: {fileID: 1515680122} + booleanData: + booleanRef: {fileID: 0} + booleanVal: 0 + integerData: + integerRef: {fileID: 0} + integerVal: 0 + floatData: + floatRef: {fileID: 0} + floatVal: 0 + stringData: + stringRef: {fileID: 0} + stringVal: + animatorData: + animatorRef: {fileID: 0} + animatorVal: {fileID: 0} + audioSourceData: + audioSourceRef: {fileID: 0} + audioSourceVal: {fileID: 0} + colorData: + colorRef: {fileID: 0} + colorVal: {r: 0, g: 0, b: 0, a: 0} + gameObjectData: + gameObjectRef: {fileID: 0} + gameObjectVal: {fileID: 0} + materialData: + materialRef: {fileID: 0} + materialVal: {fileID: 0} + objectData: + objectRef: {fileID: 0} + objectVal: {fileID: 0} + rigidbody2DData: + rigidbody2DRef: {fileID: 0} + rigidbody2DVal: {fileID: 0} + spriteData: + spriteRef: {fileID: 0} + spriteVal: {fileID: 0} + textureData: + textureRef: {fileID: 0} + textureVal: {fileID: 0} + transformData: + transformRef: {fileID: 0} + transformVal: {fileID: 0} + vector2Data: + vector2Ref: {fileID: 0} + vector2Val: {x: 0, y: 0} + vector3Data: + vector3Ref: {fileID: 0} + vector3Val: {x: 0, y: 0, z: 0} +--- !u!114 &1515680117 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 93cb9773f2ca04e2bbf7a68ccfc23267, type: 3} + m_Name: + m_EditorClassIdentifier: + itemId: 2 + indentLevel: 0 +--- !u!114 &1515680118 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70c5622b8a80845c980954170295f292, type: 3} + m_Name: + m_EditorClassIdentifier: + itemId: 1 + indentLevel: 0 + compareOperator: 0 + variable: {fileID: 1515680123} + booleanData: + booleanRef: {fileID: 0} + booleanVal: 0 + integerData: + integerRef: {fileID: 0} + integerVal: 0 + floatData: + floatRef: {fileID: 0} + floatVal: 0 + stringData: + stringRef: {fileID: 0} + stringVal: + animatorData: + animatorRef: {fileID: 0} + animatorVal: {fileID: 0} + audioSourceData: + audioSourceRef: {fileID: 0} + audioSourceVal: {fileID: 0} + colorData: + colorRef: {fileID: 0} + colorVal: {r: 0, g: 0, b: 0, a: 0} + gameObjectData: + gameObjectRef: {fileID: 0} + gameObjectVal: {fileID: 0} + materialData: + materialRef: {fileID: 0} + materialVal: {fileID: 0} + objectData: + objectRef: {fileID: 0} + objectVal: {fileID: 0} + rigidbody2DData: + rigidbody2DRef: {fileID: 0} + rigidbody2DVal: {fileID: 0} + spriteData: + spriteRef: {fileID: 0} + spriteVal: {fileID: 0} + textureData: + textureRef: {fileID: 0} + textureVal: {fileID: 0} + transformData: + transformRef: {fileID: 0} + transformVal: {fileID: 0} + vector2Data: + vector2Ref: {fileID: 0} + vector2Val: {x: 0, y: 0} + vector3Data: + vector3Ref: {fileID: 0} + vector3Val: {x: 0, y: 0, z: 0} +--- !u!114 &1515680119 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3d3d73aef2cfc4f51abf34ac00241f60, type: 3} + m_Name: + m_EditorClassIdentifier: + nodeRect: + serializedVersion: 2 + x: 230 + y: 192 + width: 148.2857 + height: 40 + tint: {r: 1, g: 1, b: 1, a: 1} + useCustomTint: 0 + itemId: 0 + blockName: Uses All Variables + description: + eventHandler: {fileID: 0} + commandList: + - {fileID: 1515680118} + - {fileID: 1515680117} + - {fileID: 1515680116} + - {fileID: 1515680114} + - {fileID: 1515680113} + - {fileID: 1515680115} + - {fileID: 1515680112} + - {fileID: 1515680111} +--- !u!114 &1515680120 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4580f28dd8581476b810b38eea2f1316, type: 3} + m_Name: + m_EditorClassIdentifier: + scope: 0 + key: stringVar + value: +--- !u!114 &1515680121 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: afb91b566ceda411bad1e9d3c3243ecc, type: 3} + m_Name: + m_EditorClassIdentifier: + scope: 0 + key: intVar + value: 0 +--- !u!114 &1515680122 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 705fa1ac97df74e3a84ff952ffd923f1, type: 3} + m_Name: + m_EditorClassIdentifier: + scope: 0 + key: floatVar + value: 0 +--- !u!114 &1515680123 +MonoBehaviour: + m_ObjectHideFlags: 2 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5d02d9822eec54c98afe95bb497211b3, type: 3} + m_Name: + m_EditorClassIdentifier: + scope: 0 + key: boolVar + value: 0 +--- !u!114 &1515680124 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7a334fe2ffb574b3583ff3b18b4792d3, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 1 + scrollPos: {x: 0, y: 0} + variablesScrollPos: {x: 0, y: 0} + variablesExpanded: 1 + blockViewHeight: 400 + zoom: 1 + scrollViewRect: + serializedVersion: 2 + x: -343 + y: -340 + width: 1114 + height: 859 + selectedBlocks: [] + selectedCommands: [] + variables: + - {fileID: 1515680123} + - {fileID: 1515680122} + - {fileID: 1515680121} + - {fileID: 1515680120} + description: + stepPause: 0 + colorCommands: 1 + hideComponents: 1 + saveSelection: 1 + localizationId: + showLineNumbers: 0 + hideCommands: [] + luaEnvironment: {fileID: 0} + luaBindingName: flowchart +--- !u!4 &1515680125 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1515680107} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Tests/SearchableCommands.unity.meta b/Assets/Tests/SearchableCommands.unity.meta new file mode 100755 index 00000000..95161ca4 --- /dev/null +++ b/Assets/Tests/SearchableCommands.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 87fc82585f625a5488176c000a57429a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Packages/manifest.json b/Packages/manifest.json old mode 100644 new mode 100755 index 86a2af2c..d7bcbaa5 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -1,14 +1,12 @@ { "dependencies": { - "com.unity.ads": "2.3.1", + "com.unity.ads": "2.0.8", "com.unity.analytics": "3.3.2", "com.unity.collab-proxy": "1.2.16", - "com.unity.package-manager-ui": "2.2.0", + "com.unity.package-manager-ui": "2.1.2", "com.unity.purchasing": "2.0.6", - "com.unity.test-framework": "1.0.18", "com.unity.textmeshpro": "2.0.1", - "com.unity.timeline": "1.1.0", - "com.unity.xr.legacyinputhelpers": "2.0.2", + "com.unity.timeline": "1.0.0", "com.unity.modules.ai": "1.0.0", "com.unity.modules.animation": "1.0.0", "com.unity.modules.assetbundle": "1.0.0",