From 2cbc3e965da095b58cadacd2b89a1f4a1c46a96b Mon Sep 17 00:00:00 2001 From: Giovani Date: Sat, 1 Feb 2020 16:24:17 -0500 Subject: [PATCH 1/3] fixed camera issue --- Assets/Scenes/LevelOne.unity | 2 +- Assets/Scripts/CameraMovement.cs | 4 +++- Assets/Scripts/Player.cs | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Assets/Scenes/LevelOne.unity b/Assets/Scenes/LevelOne.unity index 4716232..5de9cc6 100644 --- a/Assets/Scenes/LevelOne.unity +++ b/Assets/Scenes/LevelOne.unity @@ -1080,7 +1080,7 @@ MonoBehaviour: jumpSpeed: 35 runFasterFactor: 1.5 groundErrorThreshold: 3 - wallLineCaseDistance: 1.5 + wallLineCaseDistance: 1 runErrorThreshold: 0.05 --- !u!95 &1671840923 Animator: diff --git a/Assets/Scripts/CameraMovement.cs b/Assets/Scripts/CameraMovement.cs index 477b215..e95bc62 100644 --- a/Assets/Scripts/CameraMovement.cs +++ b/Assets/Scripts/CameraMovement.cs @@ -6,7 +6,8 @@ public class CameraMovement : MonoBehaviour { [SerializeField] GameObject player; [SerializeField] float offsetY = 0; - [SerializeField] float interpolate = 0.2f; + [SerializeField] float offsetZ = -10; + [SerializeField] float interpolate = 0.2f; private void Start() { @@ -16,5 +17,6 @@ public class CameraMovement : MonoBehaviour private void Update() { transform.position = Vector2.Lerp(transform.position, player.transform.position + new Vector3(0, offsetY, 0), interpolate); + transform.position = new Vector3(transform.position.x, transform.position.y, offsetZ); } } diff --git a/Assets/Scripts/Player.cs b/Assets/Scripts/Player.cs index f7df07b..2b9ae61 100644 --- a/Assets/Scripts/Player.cs +++ b/Assets/Scripts/Player.cs @@ -116,7 +116,7 @@ public class Player : MonoBehaviour private void FlipSprite() { - if (Mathf.Abs(rigidBody.velocity.x) > Mathf.Epsilon && (Input.GetKey(KeyCode.RightArrow) || Input.GetKey(KeyCode.LeftArrow))) + if (Mathf.Abs(rigidBody.velocity.x) > runErrorThreshold && (Input.GetKey(KeyCode.RightArrow) || Input.GetKey(KeyCode.LeftArrow))) { transform.localScale = new Vector2(Mathf.Sign(rigidBody.velocity.x), 1f); } From 9304fac22a933e92f15f4720270c90ea90609634 Mon Sep 17 00:00:00 2001 From: Sweet Tini Date: Sat, 1 Feb 2020 17:35:21 -0500 Subject: [PATCH 2/3] Add bug fight animation --- Assets/Scenes/LevelOne.unity | 100 -------- Assets/Sprites/Player/BugFight.anim | 77 ++++++ Assets/Sprites/Player/BugFight.anim.meta | 8 + Assets/Sprites/Player/BugFight.png | Bin 0 -> 3701 bytes Assets/Sprites/Player/BugFight.png.meta | 223 ++++++++++++++++++ Assets/Sprites/Player/GameObject.controller | 72 ++++++ .../Sprites/Player/GameObject.controller.meta | 8 + 7 files changed, 388 insertions(+), 100 deletions(-) create mode 100644 Assets/Sprites/Player/BugFight.anim create mode 100644 Assets/Sprites/Player/BugFight.anim.meta create mode 100644 Assets/Sprites/Player/BugFight.png create mode 100644 Assets/Sprites/Player/BugFight.png.meta create mode 100644 Assets/Sprites/Player/GameObject.controller create mode 100644 Assets/Sprites/Player/GameObject.controller.meta diff --git a/Assets/Scenes/LevelOne.unity b/Assets/Scenes/LevelOne.unity index beb0f80..abed411 100644 --- a/Assets/Scenes/LevelOne.unity +++ b/Assets/Scenes/LevelOne.unity @@ -255,106 +255,6 @@ Tilemap: e31: 0 e32: 0 e33: 1 ---- !u!1 &136431330 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 136431333} - - component: {fileID: 136431332} - - component: {fileID: 136431331} - m_Layer: 0 - m_Name: GameObject - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!212 &136431331 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 136431330} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_Sprite: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 4, y: 4} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 0 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!95 &136431332 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 136431330} - m_Enabled: 1 - m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: 8b1593eba53dfd848ba134d626f63f6c, type: 2} - m_CullingMode: 0 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorControllerStateOnDisable: 0 ---- !u!4 &136431333 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 136431330} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -1.728933, y: -5.9760585, z: -27.586058} - 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!1 &367096168 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/Sprites/Player/BugFight.anim b/Assets/Sprites/Player/BugFight.anim new file mode 100644 index 0000000..e11feec --- /dev/null +++ b/Assets/Sprites/Player/BugFight.anim @@ -0,0 +1,77 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BugFight + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 324873849759012965, guid: 74e17f82f177d874bb8c8117a62939a5, + type: 3} + - time: 0.083333336 + value: {fileID: -4102844690915655467, guid: 74e17f82f177d874bb8c8117a62939a5, + type: 3} + - time: 0.16666667 + value: {fileID: -3465671070239941490, guid: 74e17f82f177d874bb8c8117a62939a5, + type: 3} + attribute: m_Sprite + path: + classID: 212 + script: {fileID: 0} + m_SampleRate: 12 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 0 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 324873849759012965, guid: 74e17f82f177d874bb8c8117a62939a5, type: 3} + - {fileID: -4102844690915655467, guid: 74e17f82f177d874bb8c8117a62939a5, type: 3} + - {fileID: -3465671070239941490, guid: 74e17f82f177d874bb8c8117a62939a5, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.25 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 1 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Sprites/Player/BugFight.anim.meta b/Assets/Sprites/Player/BugFight.anim.meta new file mode 100644 index 0000000..7913537 --- /dev/null +++ b/Assets/Sprites/Player/BugFight.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 784d0899d352c39428548fc7aa7de282 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Player/BugFight.png b/Assets/Sprites/Player/BugFight.png new file mode 100644 index 0000000000000000000000000000000000000000..77fda1ced66f696ddb4778edd6f8fb2b5a2c19ac GIT binary patch literal 3701 zcmaKvc{tSDAIEKzW$a~dOmd0Fl2Bc)Z6@a0vuErwOraQ~5VB9!DQgHbg@~~=vNa?{ z#?m)ywp{zjUW1J7=l=bBp8K5VocHH^KIb{l=b!U>-Y4;f1(J_Pl81$bh0pl!>((b4 zaxyo$*iP2#3s*0l2q(_i+>mpgja5`qes9NT_#`EUGrWnjx#x|0;DJT6AkD6yTyyR| z8hcJ%MI$i2c;@5?7cRg8c~Vh7iCIjd6rm@=;bUNKz`{~X03UdOPWGofO_A4Gj{hA* z>Z^=@GdODtn-e`?Iq(ir7e48#)%d!BZOHSrDf7CCYy2$k5RbG`G2qF%Nshkl8vd5%$Ze739s&+rEtR=LN!f_9Pb6^r1pBhc)hheCoFV~LV0Q^JmVzLMi; z#Z=I^Hs9goS|bbbqap6|-@w>mkCfu;5j7Olhc>!O&o?e_OyY z^B1AwIF>9QnHa392Kjy?RG7IaEp2N2*fPeOY7ajy7`Zp`UTi~MY3&6nuVyva=+DDP z)GACr!Yy;RXpB!#p{3(-@Y6cs>6(7mJY4=hm4Re(d?aRZeTmw>j23?(2P=ofdACqt zC@rF5v+awkFC1n^lCw4hmGf(Xq*bO$(y z$rK6$HEE}ZMQBaSFjJOa{Y_;|`4h1DCxHQrdX6{oQg>5C|B?fuQM}}GY&B$Vkx7n82yl^J z1MX!T@1Wu4qgT{%NRh=zAyEtt@G%fbt zds~u?c@r0}`PGOoB68$|f2TIJcJAOXat5BR!>=SKfCVZ?p01_)OmQ~YC8E%nEQ)I0 z_gwonD)3XBxARaDpud%qK-Fchu8+!aw5aipYcE2#Lvew$VM?yVGhAT3E)s|GlfbVvf!frt* zUWeIt)PaG)4-=0;S(VGZQviKA?o&J@=;>vh^SUHuJBMni=6VkD5YIyICD*}(ZaY$V z>vVo&)*9d^=b?$$ORrqhLaZb`+zL_QB$f!XuEbhrieT2^6On` z+jnGd*Ok~?Jt2OzV2Gquy*rcVqL~ACVhU;ja}5`M0Ru58MfsW=XAERP$@S=^+cbOn z>1tRC(Dg9(ap#K6#2P^BM9?*6#Thl%6i!~&v{6&4k(mDNQzi?)MqIEI1y-6;~Nf*&jMz^xwLBqQp zW##?cX#2{HEOua1_`bku*N%n+-%oC!17vnuV|1*i!NPCe{z{aJ-{0!AB965m7aZzK zx@)|O(0s3Qo?d`IBwz6P6p|-J5)+|2W0Hwidpv3PR}5*(0IiJvB|enQQ`7Rr2VK2bh9!vGNdAK-_H{ z3y>Gp|249^3oqm*3(DTO{|4o|J(@sN)?-0A=pr+$K;+1Z6gVvRJB#`8a#&gT_>pX` z1tyrSlxH`k&TwSHq$>Aib*2QVKG_F^EBI-AQIqN|J=yJrUu?5Hh0QKvFA0zuJg}lY zc53pjQw<~43hg?n&T3l-G3=^xjewIxaAbpp(Y{c!r|2RGB@0*9~T>0dwG zgTe2;st#wTWDZ%+k?_-dCClXq&dgf?xN^p)WNkwdJ`K~5ukHg5Y()$%ppH{?ciT>( z%9Ux{R$P6}z4`)eE;Hj&x7H5OvMQJgtR@95e|Inx{e67%p@h;S^sWuqylMNX6lqL4 zDw0$^m_`hK!1VDJO6QMw(sFtK9}zUS7I8I3dc-#@-b*EGSYi$GZVMKlK~vIbvkkc? zit(P~p?43Cu|YbAiLAR$r>_v>(U)vy@b&T4*D4} z%4aa)`Bale!LC6Er?6OjB7oakxon+TQNd}lws&i)ugibZqHYInwvN=}c>QVf@vnU! zClQSwYDBG-3hHM*tJ!|5pg-!VwE6FzH&!a!JAOF74zCZ#+<_#gP_0W4)mFO6M336E zc)NxjB692u3dL=U$U)@{(XHu|Th&d%g-}+VCS2{=vb*Q27h6KP5qR>OY!#*zy-v%w zVb!v0QXQCK9V+>yIK6&h{dokHLu;Y*<$58R(f&P>dxDTyWL(jWk%%4B9 z#oX_^8pmHfwv;My&(Hb$cO$7(UN`q9!gl7TX^w> zo7dFw5yuN7xxJh&J703(qb~sK2-sA)@wQz+rj!4peb!H&j2C`T($W2I-@>m$w<#NZ z@g7at41J%1?H%vEfDpegIz0i}i~z%|2_-1M!0O2Fs&LSt2_E`vAikD zBMi&$_}D;mORTk?AnG^?p_G2p@m_3yePn9n#(?Q>U60k9YII6gkq{Gkv>x2Jyuu?I zwsb{@9$8U*ee}j^@-S0K)50iw$OLArISll-4n)lYu}G<^IMa1r{N{m?aX}7 zrrrdTI656(bb9pr;ErH$YXmpr&n;;AN1{su*X~gpt7O`RCqwFLu*ou&2q~QVmM-+o zLgZ@>RPIdf*3AUT#vXC_glQah6b0)0-XnojN&R@)g82*`;(YkWC8NS}zc_Dv9vj)I zS0AR<@>;OM84Ip*+Q;z8dT=i4cxq`h*WzF;ME2YT$rR9d;}^#1K>IPah$pWE6KM`T zcDmiN{EZ#mH^Az7^%icwY6+2^z-o8l_BqlI&$6ZM@JSqt8hRn_Z`%ZtC>*gqIS}~z zws=CqelMTqBZ#u2W%lx%yHR9I%>^J}(?n$nUL+!rrcIga~&GCW3M9?L$ zR-P!))jX0gd)=R%H0_Gkq4=*VlsYX1y;HTyR$gc9@1DJlQfwbMuaRP*M%viF`KtZLl_FE3XjkuQwrVF9{|(GIHA$f<$Wu zr_ Date: Sat, 1 Feb 2020 17:41:50 -0500 Subject: [PATCH 3/3] Continued working on event controls --- Assets/Model/EventControlTile.cs | 5 +- Assets/Model/TileToKeyMappings.cs | 12 + Assets/Model/TileToKeyMappings.cs.meta | 11 + Assets/Prefabs/Bug.prefab | 2 +- Assets/Scenes/LevelOne.unity | 2050 ++++++++--------- Assets/Scripts/EventControls.cs | 40 +- ...ontrol W Success.asset => Buttons_0.asset} | 7 +- ...uccess.asset.meta => Buttons_0.asset.meta} | 2 +- Assets/Sprites/Controls/Buttons_1.asset | 37 + ...trol W.asset.meta => Buttons_1.asset.meta} | 2 +- Assets/Sprites/Controls/Buttons_10.asset | 37 + Assets/Sprites/Controls/Buttons_10.asset.meta | 8 + Assets/Sprites/Controls/Buttons_11.asset | 37 + Assets/Sprites/Controls/Buttons_11.asset.meta | 8 + Assets/Sprites/Controls/Buttons_2.asset | 37 + Assets/Sprites/Controls/Buttons_2.asset.meta | 8 + Assets/Sprites/Controls/Buttons_3.asset | 37 + Assets/Sprites/Controls/Buttons_3.asset.meta | 8 + Assets/Sprites/Controls/Buttons_4.asset | 37 + Assets/Sprites/Controls/Buttons_4.asset.meta | 8 + Assets/Sprites/Controls/Buttons_5.asset | 37 + Assets/Sprites/Controls/Buttons_5.asset.meta | 8 + Assets/Sprites/Controls/Buttons_6.asset | 37 + Assets/Sprites/Controls/Buttons_6.asset.meta | 8 + Assets/Sprites/Controls/Buttons_7.asset | 37 + Assets/Sprites/Controls/Buttons_7.asset.meta | 8 + Assets/Sprites/Controls/Buttons_8.asset | 37 + Assets/Sprites/Controls/Buttons_8.asset.meta | 8 + Assets/Sprites/Controls/Buttons_9.asset | 37 + Assets/Sprites/Controls/Buttons_9.asset.meta | 8 + Assets/Sprites/Controls/Control W.png | Bin 78 -> 0 bytes Assets/Sprites/Controls/Control W.png.meta | 103 - .../Controls/{Control W.asset => Plus.asset} | 4 +- Assets/Sprites/Controls/Plus.asset.meta | 8 + Assets/Sprites/Controls/Plus.png.meta | 2 +- Assets/Sprites/Palette/Event Controls.prefab | 187 +- 36 files changed, 1699 insertions(+), 1223 deletions(-) create mode 100644 Assets/Model/TileToKeyMappings.cs create mode 100644 Assets/Model/TileToKeyMappings.cs.meta rename Assets/Sprites/Controls/{Control W Success.asset => Buttons_0.asset} (78%) rename Assets/Sprites/Controls/{Control W Success.asset.meta => Buttons_0.asset.meta} (79%) create mode 100644 Assets/Sprites/Controls/Buttons_1.asset rename Assets/Sprites/Controls/{Control W.asset.meta => Buttons_1.asset.meta} (79%) create mode 100644 Assets/Sprites/Controls/Buttons_10.asset create mode 100644 Assets/Sprites/Controls/Buttons_10.asset.meta create mode 100644 Assets/Sprites/Controls/Buttons_11.asset create mode 100644 Assets/Sprites/Controls/Buttons_11.asset.meta create mode 100644 Assets/Sprites/Controls/Buttons_2.asset create mode 100644 Assets/Sprites/Controls/Buttons_2.asset.meta create mode 100644 Assets/Sprites/Controls/Buttons_3.asset create mode 100644 Assets/Sprites/Controls/Buttons_3.asset.meta create mode 100644 Assets/Sprites/Controls/Buttons_4.asset create mode 100644 Assets/Sprites/Controls/Buttons_4.asset.meta create mode 100644 Assets/Sprites/Controls/Buttons_5.asset create mode 100644 Assets/Sprites/Controls/Buttons_5.asset.meta create mode 100644 Assets/Sprites/Controls/Buttons_6.asset create mode 100644 Assets/Sprites/Controls/Buttons_6.asset.meta create mode 100644 Assets/Sprites/Controls/Buttons_7.asset create mode 100644 Assets/Sprites/Controls/Buttons_7.asset.meta create mode 100644 Assets/Sprites/Controls/Buttons_8.asset create mode 100644 Assets/Sprites/Controls/Buttons_8.asset.meta create mode 100644 Assets/Sprites/Controls/Buttons_9.asset create mode 100644 Assets/Sprites/Controls/Buttons_9.asset.meta delete mode 100644 Assets/Sprites/Controls/Control W.png delete mode 100644 Assets/Sprites/Controls/Control W.png.meta rename Assets/Sprites/Controls/{Control W.asset => Plus.asset} (87%) create mode 100644 Assets/Sprites/Controls/Plus.asset.meta diff --git a/Assets/Model/EventControlTile.cs b/Assets/Model/EventControlTile.cs index 95fd97f..ddbc868 100644 --- a/Assets/Model/EventControlTile.cs +++ b/Assets/Model/EventControlTile.cs @@ -14,13 +14,16 @@ namespace Assets.Model public Tile tile; public Tile successTile; public Vector3Int position; + public bool isPlusTile; + public bool isPerformed; - public EventControlTile(KeyCode keyCode, Tile tile, Tile successTile, Vector3Int position) + public EventControlTile(KeyCode keyCode, Tile tile, Tile successTile, Vector3Int position, bool isPlusTile = false) { this.keyCode = keyCode; this.tile = tile; this.successTile = successTile; this.position = position; + this.isPlusTile = isPlusTile; } } } diff --git a/Assets/Model/TileToKeyMappings.cs b/Assets/Model/TileToKeyMappings.cs new file mode 100644 index 0000000..e048e1e --- /dev/null +++ b/Assets/Model/TileToKeyMappings.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Assets.Model +{ + public static class TileToKeyMappings + { + } +} diff --git a/Assets/Model/TileToKeyMappings.cs.meta b/Assets/Model/TileToKeyMappings.cs.meta new file mode 100644 index 0000000..46557ca --- /dev/null +++ b/Assets/Model/TileToKeyMappings.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 20e8174d6ba84bf439ff63bfdcdc3389 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Prefabs/Bug.prefab b/Assets/Prefabs/Bug.prefab index bad02d9..b76863e 100644 --- a/Assets/Prefabs/Bug.prefab +++ b/Assets/Prefabs/Bug.prefab @@ -141,7 +141,7 @@ Rigidbody2D: m_Mass: 1 m_LinearDrag: 0 m_AngularDrag: 0.05 - m_GravityScale: 1 + m_GravityScale: 2 m_Material: {fileID: 0} m_Interpolate: 0 m_SleepingMode: 0 diff --git a/Assets/Scenes/LevelOne.unity b/Assets/Scenes/LevelOne.unity index 5de9cc6..e7f63b8 100644 --- a/Assets/Scenes/LevelOne.unity +++ b/Assets/Scenes/LevelOne.unity @@ -120,177 +120,6 @@ NavMeshSettings: debug: m_Flags: 0 m_NavMeshData: {fileID: 0} ---- !u!1 &1491653 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1491654} - - component: {fileID: 1491657} - - component: {fileID: 1491656} - - component: {fileID: 1491655} - m_Layer: 0 - m_Name: Event Controls - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1491654 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1491653} - 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: 1008122163} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1491655 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1491653} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 555a3f8aa89a0e84fb6c43249a117f93, type: 3} - m_Name: - m_EditorClassIdentifier: - camera: {fileID: 1337282922} - tile: {fileID: 11400000, guid: 7ece7857530facb42b843eed2526c86a, type: 2} - successTile: {fileID: 11400000, guid: 6cf7a50810d16f2468acc06180743d07, type: 2} - framesPerControlTile: 15 - nextControlYOffset: 2 - nextControlXOffset: -1 - tileMapClearDelayInSeconds: 0.5 ---- !u!483693784 &1491656 -TilemapRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1491653} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 0 - m_ReflectionProbeUsage: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_ChunkSize: {x: 32, y: 32, z: 32} - m_ChunkCullingBounds: {x: 0, y: 0, z: 0} - m_MaxChunkCount: 16 - m_MaxFrameAge: 16 - m_SortOrder: 0 - m_Mode: 0 - m_DetectChunkCullingBounds: 0 - m_MaskInteraction: 0 ---- !u!1839735485 &1491657 -Tilemap: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1491653} - m_Enabled: 1 - m_Tiles: {} - m_AnimatedTiles: {} - m_TileAssetArray: - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - m_TileSpriteArray: - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - m_TileMatrixArray: - - m_RefCount: 0 - m_Data: - e00: NaN - e01: NaN - e02: -0.0000000555834 - e03: 0 - e10: NaN - e11: NaN - e12: 1.18e-43 - e13: 0 - e20: 0 - e21: -0.000000055583342 - e22: 0 - e23: 0 - e30: 0 - e31: 1.18e-43 - e32: 0 - e33: 0 - m_TileColorArray: - - m_RefCount: 0 - m_Data: {r: 6.129018e-32, g: 6.129018e-32, b: 6.129018e-32, a: 6.129018e-32} - m_AnimationFrameRate: 1 - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_Origin: {x: 0, y: 0, z: 0} - m_Size: {x: 68, y: 6, z: 1} - m_TileAnchor: {x: 0.5, y: 0.5, z: 0} - m_TileOrientation: 0 - m_TileOrientationMatrix: - e00: 1 - e01: 0 - e02: 0 - e03: 0 - e10: 0 - e11: 1 - e12: 0 - e13: 0 - e20: 0 - e21: 0 - e22: 1 - e23: 0 - e30: 0 - e31: 0 - e32: 0 - e33: 1 --- !u!1 &136431330 GameObject: m_ObjectHideFlags: 0 @@ -389,7 +218,7 @@ Transform: m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 5 + m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &193535120 GameObject: @@ -421,7 +250,7 @@ Transform: m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 1008122163} - m_RootOrder: 4 + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!483693784 &193535122 TilemapRenderer: @@ -742,7 +571,7 @@ PrefabInstance: - target: {fileID: 8554420466772133694, guid: f859e1c9214db2c4eaaeff51febb3222, type: 3} propertyPath: m_RootOrder - value: 3 + value: 4 objectReference: {fileID: 0} - target: {fileID: 8554420466772133694, guid: f859e1c9214db2c4eaaeff51febb3222, type: 3} @@ -761,6 +590,50 @@ PrefabInstance: objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: f859e1c9214db2c4eaaeff51febb3222, type: 3} +--- !u!1 &827621095 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 827621097} + - component: {fileID: 827621096} + m_Layer: 0 + m_Name: Grid + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!156049354 &827621096 +Grid: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827621095} + m_Enabled: 1 + m_CellSize: {x: 1.45, y: 1.45, z: 0} + m_CellGap: {x: 0, y: 0, z: 0} + m_CellLayout: 0 + m_CellSwizzle: 0 +--- !u!4 &827621097 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827621095} + 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: 0} + m_Children: + - {fileID: 1759518264} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1008122161 GameObject: m_ObjectHideFlags: 0 @@ -804,7 +677,6 @@ Transform: - {fileID: 1713017494} - {fileID: 1671840917} - {fileID: 1247097598} - - {fileID: 1491654} - {fileID: 193535121} m_Father: {fileID: 0} m_RootOrder: 1 @@ -829,7 +701,8 @@ MonoBehaviour: m_EditorClassIdentifier: player: {fileID: 1671840916} offsetY: 2 - interpolate: 0.6 + offsetZ: -10 + interpolate: 0.3 --- !u!4 &1146013793 stripped Transform: m_CorrespondingSourceObject: {fileID: 5711328081315814049, guid: fe8fb0c1c30f84b43885e84de26e0f11, @@ -1151,7 +1024,7 @@ PrefabInstance: - target: {fileID: 8554420466772133694, guid: f859e1c9214db2c4eaaeff51febb3222, type: 3} propertyPath: m_RootOrder - value: 4 + value: 5 objectReference: {fileID: 0} - target: {fileID: 8554420466772133694, guid: f859e1c9214db2c4eaaeff51febb3222, type: 3} @@ -1310,6 +1183,192 @@ Tilemap: e31: 0 e32: 0 e33: 1 +--- !u!1 &1759518263 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1759518264} + - component: {fileID: 1759518267} + - component: {fileID: 1759518266} + - component: {fileID: 1759518265} + m_Layer: 0 + m_Name: Event Controls + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1759518264 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1759518263} + 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: 827621097} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1759518265 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1759518263} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 555a3f8aa89a0e84fb6c43249a117f93, type: 3} + m_Name: + m_EditorClassIdentifier: + camera: {fileID: 1337282922} + tile: {fileID: 11400000, guid: 1f7bfa5ee72002646806268d14bfeb3b, type: 2} + tiles: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + successTiles: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + successTile: {fileID: 11400000, guid: ae6e7a8b9fa2433448a66da4090e310c, type: 2} + plusTile: {fileID: 11400000, guid: ee14e10b7ac07bd449e0f1d5ea99eb42, type: 2} + framesPerControlTile: 15 + nextControlYOffset: 1 + nextControlXOffset: -1 + tileMapClearDelayInSeconds: 0.5 +--- !u!483693784 &1759518266 +TilemapRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1759518263} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_ChunkSize: {x: 32, y: 32, z: 32} + m_ChunkCullingBounds: {x: 0, y: 0, z: 0} + m_MaxChunkCount: 16 + m_MaxFrameAge: 16 + m_SortOrder: 0 + m_Mode: 0 + m_DetectChunkCullingBounds: 0 + m_MaskInteraction: 0 +--- !u!1839735485 &1759518267 +Tilemap: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1759518263} + m_Enabled: 1 + m_Tiles: {} + m_AnimatedTiles: {} + m_TileAssetArray: + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} + m_TileSpriteArray: + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 0 + m_Data: {fileID: 0} + m_TileMatrixArray: + - m_RefCount: 0 + m_Data: + e00: NaN + e01: NaN + e02: -0.0000000555834 + e03: 0 + e10: NaN + e11: NaN + e12: 1.18e-43 + e13: 0 + e20: 0 + e21: -0.000000055583342 + e22: 0 + e23: 0 + e30: 0 + e31: 1.18e-43 + e32: 0 + e33: 0 + m_TileColorArray: + - m_RefCount: 0 + m_Data: {r: 6.129018e-32, g: 6.129018e-32, b: 6.129018e-32, a: 6.129018e-32} + m_AnimationFrameRate: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Origin: {x: 0, y: 0, z: 0} + m_Size: {x: 68, y: 6, z: 1} + m_TileAnchor: {x: 0.5, y: 0.5, z: 0} + m_TileOrientation: 0 + m_TileOrientationMatrix: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 --- !u!1 &1882958979 GameObject: m_ObjectHideFlags: 0 @@ -1624,35 +1683,25 @@ CompositeCollider2D: - X: 2320000000 Y: 410000000 - X: 2320000000 - Y: 280000100 - - X: 2299999959 - Y: 280000100 - - X: 2299999900 - Y: 280000041 - - X: 2299999900 - Y: 260000100 - - X: 2270000087 - Y: 260000100 - - X: 2270000028 - Y: 260000041 - - X: 2270000028 - Y: 239999959 - - X: 2270000087 - Y: 239999900 + Y: 280000000 + - X: 2300000000 + Y: 280000000 + - X: 2300000000 + Y: 260000000 + - X: 2270000128 + Y: 260000000 + - X: 2270000128 + Y: 240000000 - X: 2320000000 - Y: 239999900 + Y: 240000000 - X: 2320000000 - Y: 120000100 - - X: 2299999959 - Y: 120000100 - - X: 2299999900 - Y: 120000041 - - X: 2299999900 - Y: 99999959 - - X: 2299999959 - Y: 99999900 + Y: 120000000 + - X: 2300000000 + Y: 120000000 + - X: 2300000000 + Y: 100000000 - X: 2320000000 - Y: 99999900 + Y: 100000000 - X: 2320000000 Y: -90000000 - X: 2310000128 @@ -1720,141 +1769,149 @@ CompositeCollider2D: - X: 1590000000 Y: 40000000 - X: 1590000000 - Y: -49999900 - - X: 1590000041 - Y: -49999900 - - X: 1590000100 - Y: -49999959 - - X: 1590000100 Y: -70000000 - X: 1620000000 Y: -70000000 - - X: 1710000000 - Y: 309999900 - - X: 1720000041 - Y: 309999900 - - X: 1720000100 - Y: 309999959 - - X: 1720000100 - Y: 310000100 + Y: 310000000 - X: 1730000000 - Y: 310000100 + Y: 310000000 - X: 1730000000 Y: 320000000 - - X: 1720000100 - Y: 320000000 - - X: 1720000100 - Y: 320000041 - - X: 1720000041 - Y: 320000100 - - X: 1709999959 - Y: 320000100 - - X: 1709999900 - Y: 320000041 - - X: 1709999900 - Y: 320000000 - X: 1700000000 Y: 320000000 - X: 1700000000 Y: 300000000 - X: 1710000000 Y: 300000000 - - - X: 2240000100 - Y: 309999959 - - X: 2240000100 - Y: 320000041 - - X: 2240000041 - Y: 320000100 - - X: 2230000087 - Y: 320000100 - - X: 2230000028 - Y: 320000041 - - X: 2230000028 + - - X: 2090000000 Y: 320000000 - - X: 2220000100 + - X: 2080000000 Y: 320000000 - - X: 2220000100 - Y: 310000100 - - X: 2230000028 - Y: 310000100 - - X: 2230000028 - Y: 309999959 - - X: 2230000087 - Y: 309999900 - - X: 2240000041 - Y: 309999900 - - - X: 2209999772 - Y: 320000000 - - X: 2200000100 - Y: 320000000 - - X: 2200000100 + - X: 2080000000 Y: 300000000 - - X: 2209999772 + - X: 2090000000 Y: 300000000 - - - X: 1750000000 + - - X: 2289999872 Y: 320000000 - - X: 1740000000 + - X: 2280000000 Y: 320000000 - - X: 1740000000 - Y: 310000100 - - X: 1750000000 - Y: 310000100 - - - X: 1770000000 - Y: 320000000 - - X: 1760000000 - Y: 320000000 - - X: 1760000000 + - X: 2280000000 Y: 300000000 - - X: 1770000000 + - X: 2289999872 Y: 300000000 - - - X: 2169999772 + - - X: 2240000000 Y: 320000000 - - X: 2160000100 + - X: 2220000000 Y: 320000000 - - X: 2160000100 + - X: 2220000000 + Y: 310000000 + - X: 2240000000 + Y: 310000000 + - - X: 2209999872 + Y: 320000000 + - X: 2200000000 + Y: 320000000 + - X: 2200000000 Y: 300000000 - - X: 2169999772 + - X: 2209999872 Y: 300000000 - - - X: 2190000028 + - - X: 2190000128 Y: 320000000 - - X: 2180000100 + - X: 2180000000 Y: 320000000 - - X: 2180000100 - Y: 310000100 - - X: 2190000028 - Y: 310000100 - - - X: 1989999900 + - X: 2180000000 + Y: 310000000 + - X: 2190000128 + Y: 310000000 + - - X: 2169999872 Y: 320000000 - - X: 1980000100 + - X: 2160000000 Y: 320000000 - - X: 1980000100 - Y: 310000100 - - X: 1989999900 - Y: 310000100 - - - X: 1969999900 + - X: 2160000000 + Y: 300000000 + - X: 2169999872 + Y: 300000000 + - - X: 2150000128 + Y: 320000000 + - X: 2140000000 + Y: 320000000 + - X: 2140000000 + Y: 310000000 + - X: 2150000128 + Y: 310000000 + - - X: 2130000000 + Y: 320000000 + - X: 2120000000 + Y: 320000000 + - X: 2120000000 + Y: 310000000 + - X: 2130000000 + Y: 310000000 + - - X: 2110000000 + Y: 320000000 + - X: 2100000000 + Y: 320000000 + - X: 2100000000 + Y: 310000000 + - X: 2110000000 + Y: 310000000 + - - X: 2070000000 + Y: 320000000 + - X: 2060000000 + Y: 320000000 + - X: 2060000000 + Y: 310000000 + - X: 2070000000 + Y: 310000000 + - - X: 2050000000 + Y: 320000000 + - X: 2040000000 + Y: 320000000 + - X: 2040000000 + Y: 300000000 + - X: 2050000000 + Y: 300000000 + - - X: 2030000000 + Y: 320000000 + - X: 2020000000 + Y: 320000000 + - X: 2020000000 + Y: 310000000 + - X: 2030000000 + Y: 310000000 + - - X: 2010000000 + Y: 320000000 + - X: 2000000000 + Y: 320000000 + - X: 2000000000 + Y: 310000000 + - X: 2010000000 + Y: 310000000 + - - X: 1990000000 + Y: 320000000 + - X: 1980000000 + Y: 320000000 + - X: 1980000000 + Y: 310000000 + - X: 1990000000 + Y: 310000000 + - - X: 1970000000 Y: 320000000 - X: 1960000000 Y: 320000000 - X: 1960000000 Y: 300000000 - - X: 1969999900 + - X: 1970000000 Y: 300000000 - - - X: 2109999900 + - - X: 1950000000 Y: 320000000 - - X: 2100000100 + - X: 1940000000 Y: 320000000 - - X: 2100000100 - Y: 310000100 - - X: 2109999900 - Y: 310000100 - - - X: 2089999900 - Y: 320000000 - - X: 2080000100 - Y: 320000000 - - X: 2080000100 - Y: 300000000 - - X: 2089999900 - Y: 300000000 + - X: 1940000000 + Y: 310000000 + - X: 1950000000 + Y: 310000000 - - X: 1930000000 Y: 320000000 - X: 1920000000 @@ -1863,30 +1920,6 @@ CompositeCollider2D: Y: 300000000 - X: 1930000000 Y: 300000000 - - - X: 2069999900 - Y: 320000000 - - X: 2060000100 - Y: 320000000 - - X: 2060000100 - Y: 310000100 - - X: 2069999900 - Y: 310000100 - - - X: 2289999872 - Y: 320000000 - - X: 2280000100 - Y: 320000000 - - X: 2280000100 - Y: 300000000 - - X: 2289999872 - Y: 300000000 - - - X: 2049999900 - Y: 320000000 - - X: 2040000100 - Y: 320000000 - - X: 2040000100 - Y: 300000000 - - X: 2049999900 - Y: 300000000 - - X: 1910000000 Y: 320000000 - X: 1900000000 @@ -1895,30 +1928,14 @@ CompositeCollider2D: Y: 310000000 - X: 1910000000 Y: 310000000 - - - X: 2150000028 - Y: 320000000 - - X: 2140000100 - Y: 320000000 - - X: 2140000100 - Y: 310000100 - - X: 2150000028 - Y: 310000100 - - - X: 2129999900 - Y: 320000000 - - X: 2120000100 - Y: 320000000 - - X: 2120000100 - Y: 310000100 - - X: 2129999900 - Y: 310000100 - - X: 1890000000 Y: 320000000 - X: 1880000000 Y: 320000000 - X: 1880000000 - Y: 310000100 + Y: 310000000 - X: 1890000000 - Y: 310000100 + Y: 310000000 - - X: 1870000000 Y: 320000000 - X: 1860000000 @@ -1935,22 +1952,6 @@ CompositeCollider2D: Y: 300000000 - X: 1850000000 Y: 300000000 - - - X: 1790000000 - Y: 320000000 - - X: 1780000000 - Y: 320000000 - - X: 1780000000 - Y: 310000000 - - X: 1790000000 - Y: 310000000 - - - X: 1950000000 - Y: 320000000 - - X: 1940000000 - Y: 320000000 - - X: 1940000000 - Y: 310000000 - - X: 1950000000 - Y: 310000000 - - X: 1830000000 Y: 320000000 - X: 1820000000 @@ -1967,22 +1968,30 @@ CompositeCollider2D: Y: 300000000 - X: 1810000000 Y: 300000000 - - - X: 2029999900 + - - X: 1790000000 Y: 320000000 - - X: 2020000100 + - X: 1780000000 Y: 320000000 - - X: 2020000100 - Y: 310000100 - - X: 2029999900 - Y: 310000100 - - - X: 2009999900 + - X: 1780000000 + Y: 310000000 + - X: 1790000000 + Y: 310000000 + - - X: 1770000000 Y: 320000000 - - X: 2000000100 + - X: 1760000000 Y: 320000000 - - X: 2000000100 - Y: 310000100 - - X: 2009999900 - Y: 310000100 + - X: 1760000000 + Y: 300000000 + - X: 1770000000 + Y: 300000000 + - - X: 1750000000 + Y: 320000000 + - X: 1740000000 + Y: 320000000 + - X: 1740000000 + Y: 310000000 + - X: 1750000000 + Y: 310000000 - - X: 1010000000 Y: 90000000 - X: 1020000000 @@ -2123,86 +2132,14 @@ CompositeCollider2D: Y: 280000000 - X: 410000000 Y: 280000000 - - - X: 2240000100 - Y: 239999959 - - X: 2240000100 - Y: 260000041 - - X: 2240000041 - Y: 260000100 - - X: 2169999831 - Y: 260000100 - - X: 2169999772 - Y: 260000041 - - X: 2169999772 - Y: 239999959 - - X: 2169999831 - Y: 239999900 - - X: 2240000041 - Y: 239999900 - - - X: 1430000000 - Y: 220000000 - - X: 1240000100 - Y: 220000000 - - X: 1240000100 - Y: 220000041 - - X: 1240000041 - Y: 220000100 - - X: 1219999959 - Y: 220000100 - - X: 1219999900 - Y: 220000041 - - X: 1219999900 - Y: 200000041 - - X: 1219999959 - Y: 200000100 - - X: 1240000041 - Y: 200000100 - - X: 1240000100 - Y: 200000041 - - X: 1240000100 - Y: 200000000 - - X: 1430000000 - Y: 200000000 - - - X: 1990000000 - Y: 220000000 - - X: 1980000000 - Y: 220000000 - - X: 1980000000 - Y: 210000000 - - X: 1990000000 - Y: 210000000 - - - X: 1900000000 - Y: 200000000 - - X: 1890000000 - Y: 200000000 - - X: 1890000000 - Y: 220000000 - - X: 1880000000 - Y: 220000000 - - X: 1880000000 - Y: 200000000 - - X: 1860000000 - Y: 200000000 - - X: 1860000000 - Y: 220000000 - - X: 1850000000 - Y: 220000000 - - X: 1850000000 - Y: 200000000 - - X: 1860000000 - Y: 200000000 - - X: 1860000000 - Y: 160000000 - - X: 1900000000 - Y: 160000000 - - - X: 2050000000 - Y: 220000000 - - X: 2040000000 - Y: 220000000 - - X: 2040000000 - Y: 210000000 - - X: 2050000000 - Y: 210000000 + - - X: 2240000000 + Y: 260000000 + - X: 2169999872 + Y: 260000000 + - X: 2169999872 + Y: 240000000 + - X: 2240000000 + Y: 240000000 - - X: 430000000 Y: 220000000 - X: 410000000 @@ -2211,6 +2148,22 @@ CompositeCollider2D: Y: 200000000 - X: 430000000 Y: 200000000 + - - X: 2050000000 + Y: 220000000 + - X: 2040000000 + Y: 220000000 + - X: 2040000000 + Y: 210000000 + - X: 2050000000 + Y: 210000000 + - - X: 1990000000 + Y: 220000000 + - X: 1980000000 + Y: 220000000 + - X: 1980000000 + Y: 210000000 + - X: 1990000000 + Y: 210000000 - - X: 1920000000 Y: 220000000 - X: 1910000000 @@ -2219,25 +2172,31 @@ CompositeCollider2D: Y: 210000000 - X: 1920000000 Y: 210000000 - - - X: 2040000000 - Y: 210000000 - - X: 2030000000 - Y: 210000000 - - X: 2030000000 - Y: 200000000 - - X: 2020000000 - Y: 200000000 - - X: 2020000000 + - - X: 1850000000 Y: 220000000 - - X: 2010000000 + - X: 1850000000 + Y: 200000000 + - X: 1860000000 + Y: 200000000 + - X: 1860000000 + Y: 160000000 + - X: 1900000000 + Y: 160000000 + - X: 1900000000 + Y: 200000000 + - X: 1890000000 + Y: 200000000 + - X: 1890000000 Y: 220000000 - - X: 2010000000 + - X: 1880000000 + Y: 220000000 + - X: 1880000000 Y: 200000000 - - X: 2000000000 + - X: 1860000000 Y: 200000000 - - X: 2000000000 - Y: 210000000 - - X: 1990000000 + - X: 1860000000 + Y: 220000000 + - - X: 1990000000 Y: 210000000 - X: 1990000000 Y: 200000000 @@ -2247,92 +2206,32 @@ CompositeCollider2D: Y: 160000000 - X: 2040000000 Y: 160000000 - - - X: 1770000100 - Y: 139999959 - - X: 1770000100 - Y: 159999900 - - X: 1780000041 - Y: 159999900 - - X: 1780000100 - Y: 159999959 - - X: 1780000100 - Y: 179999900 - - X: 1790000041 - Y: 179999900 - - X: 1790000100 - Y: 179999959 - - X: 1790000100 - Y: 190000041 - - X: 1790000041 - Y: 190000100 - - X: 1780000100 - Y: 190000100 - - X: 1780000100 - Y: 200000041 - - X: 1780000041 - Y: 200000100 - - X: 1770000100 - Y: 200000100 - - X: 1770000100 - Y: 210000041 - - X: 1770000041 - Y: 210000100 - - X: 1729999959 - Y: 210000100 - - X: 1729999900 - Y: 210000041 - - X: 1729999900 - Y: 149999959 - - X: 1729999959 - Y: 149999900 - - X: 1739999900 - Y: 149999900 - - X: 1739999900 - Y: 139999959 - - X: 1739999959 - Y: 139999900 - - X: 1770000041 - Y: 139999900 - - - X: 2160000100 - Y: 149999959 - - X: 2160000100 - Y: 210000041 - - X: 2160000041 - Y: 210000100 - - X: 2129999959 - Y: 210000100 - - X: 2129999900 - Y: 210000041 - - X: 2129999900 - Y: 200000100 - - X: 2119999959 - Y: 200000100 - - X: 2119999900 - Y: 200000041 - - X: 2119999900 - Y: 190000100 - - X: 2109999959 - Y: 190000100 - - X: 2109999900 - Y: 190000041 - - X: 2109999900 - Y: 179999959 - - X: 2109999959 - Y: 179999900 - - X: 2119999900 - Y: 179999900 - - X: 2119999900 - Y: 159999959 - - X: 2119999959 - Y: 159999900 - - X: 2129999900 - Y: 159999900 - - X: 2129999900 - Y: 149999959 - - X: 2129999959 - Y: 149999900 - - X: 2160000041 - Y: 149999900 + - X: 2040000000 + Y: 210000000 + - X: 2030000000 + Y: 210000000 + - X: 2030000000 + Y: 200000000 + - X: 2020000000 + Y: 200000000 + - X: 2020000000 + Y: 220000000 + - X: 2010000000 + Y: 220000000 + - X: 2010000000 + Y: 200000000 + - X: 2000000000 + Y: 200000000 + - X: 2000000000 + Y: 210000000 + - - X: 1430000000 + Y: 220000000 + - X: 1220000000 + Y: 220000000 + - X: 1220000000 + Y: 200000000 + - X: 1430000000 + Y: 200000000 - - X: 1910000000 Y: 210000000 - X: 1900000000 @@ -2341,6 +2240,74 @@ CompositeCollider2D: Y: 200000000 - X: 1910000000 Y: 200000000 + - - X: 1770000000 + Y: 160000000 + - X: 1780000000 + Y: 160000000 + - X: 1780000000 + Y: 180000000 + - X: 1790000000 + Y: 180000000 + - X: 1790000000 + Y: 190000000 + - X: 1780000000 + Y: 190000000 + - X: 1780000000 + Y: 200000000 + - X: 1770000000 + Y: 200000000 + - X: 1770000000 + Y: 210000000 + - X: 1730000000 + Y: 210000000 + - X: 1730000000 + Y: 150000000 + - X: 1740000000 + Y: 150000000 + - X: 1740000000 + Y: 140000000 + - X: 1770000000 + Y: 140000000 + - - X: 2160000000 + Y: 210000000 + - X: 2130000000 + Y: 210000000 + - X: 2130000000 + Y: 200000000 + - X: 2120000000 + Y: 200000000 + - X: 2120000000 + Y: 190000000 + - X: 2110000000 + Y: 190000000 + - X: 2110000000 + Y: 180000000 + - X: 2120000000 + Y: 180000000 + - X: 2120000000 + Y: 160000000 + - X: 2130000000 + Y: 160000000 + - X: 2130000000 + Y: 150000000 + - X: 2160000000 + Y: 150000000 + - - X: 2140000000 + Y: 170000000 + - X: 2140000000 + Y: 180000000 + - X: 2130000000 + Y: 180000000 + - X: 2130000000 + Y: 190000000 + - X: 2140000000 + Y: 190000000 + - X: 2140000000 + Y: 200000000 + - X: 2150000128 + Y: 200000000 + - X: 2150000128 + Y: 170000000 - - X: 710000000 Y: 200000000 - X: 690000000 @@ -2349,74 +2316,34 @@ CompositeCollider2D: Y: 180000000 - X: 710000000 Y: 180000000 - - - X: 2140000100 - Y: 170000100 - - X: 2140000100 - Y: 180000041 - - X: 2140000041 - Y: 180000100 - - X: 2130000100 - Y: 180000100 - - X: 2130000100 - Y: 189999900 - - X: 2140000041 - Y: 189999900 - - X: 2140000100 - Y: 189999959 - - X: 2140000100 - Y: 199999900 - - X: 2150000028 - Y: 199999900 - - X: 2150000028 - Y: 170000100 - - - X: 1750000100 - Y: 160000100 - - X: 1750000100 - Y: 190000041 - - X: 1750000041 - Y: 190000100 - - X: 1740000100 - Y: 190000100 - - X: 1740000100 - Y: 199999900 - - X: 1759999900 - Y: 199999900 - - X: 1759999900 - Y: 189999959 - - X: 1759999959 - Y: 189999900 - - X: 1769999900 - Y: 189999900 - - X: 1769999900 - Y: 180000100 - - X: 1759999959 - Y: 180000100 - - X: 1759999900 - Y: 180000041 - - X: 1759999900 - Y: 160000100 - - - X: 1960000100 - Y: 119999959 - - X: 1960000100 - Y: 130000041 - - X: 1960000041 - Y: 130000100 - - X: 1960000000 - Y: 130000100 - - X: 1960000000 + - - X: 1750000000 + Y: 160000000 + - X: 1750000000 + Y: 190000000 + - X: 1740000000 + Y: 190000000 + - X: 1740000000 + Y: 200000000 + - X: 1760000000 + Y: 200000000 + - X: 1760000000 + Y: 190000000 + - X: 1770000000 + Y: 190000000 + - X: 1770000000 + Y: 180000000 + - X: 1760000000 + Y: 180000000 + - X: 1760000000 + Y: 160000000 + - - X: 1960000000 Y: 190000000 - X: 1940000000 Y: 190000000 - X: 1940000000 - Y: 120000100 - - X: 1949999900 - Y: 120000100 - - X: 1949999900 - Y: 119999959 - - X: 1949999959 - Y: 119999900 - - X: 1960000041 - Y: 119999900 + Y: 120000000 + - X: 1960000000 + Y: 120000000 - - X: 1470000000 Y: 180000000 - X: 1450000000 @@ -2433,50 +2360,14 @@ CompositeCollider2D: Y: 130000000 - X: 730000000 Y: 130000000 - - - X: 1809999900 - Y: 119999959 - - X: 1809999900 - Y: 130000041 - - X: 1809999959 - Y: 130000100 - - X: 1810000100 - Y: 130000100 - - X: 1810000100 - Y: 140000041 - - X: 1810000041 - Y: 140000100 - - X: 1789999959 - Y: 140000100 - - X: 1789999900 - Y: 140000041 - - X: 1789999900 - Y: 119999959 - - X: 1789999959 - Y: 119999900 - - X: 1809999959 - Y: 119999900 - - - X: 2110000100 - Y: 119999959 - - X: 2110000100 - Y: 140000041 - - X: 2110000041 - Y: 140000100 - - X: 2089999959 - Y: 140000100 - - X: 2089999900 - Y: 140000041 - - X: 2089999900 - Y: 130000100 - - X: 2079999959 - Y: 130000100 - - X: 2079999900 - Y: 130000041 - - X: 2079999900 - Y: 119999959 - - X: 2079999959 - Y: 119999900 - - X: 2110000041 - Y: 119999900 + - - X: 520000000 + Y: 140000000 + - X: 480000000 + Y: 140000000 + - X: 480000000 + Y: 120000000 + - X: 520000000 + Y: 120000000 - - X: 1510000000 Y: 140000000 - X: 1490000000 @@ -2485,13 +2376,25 @@ CompositeCollider2D: Y: 120000000 - X: 1510000000 Y: 120000000 - - - X: 520000000 + - - X: 1810000000 Y: 140000000 - - X: 480000000 + - X: 1790000000 Y: 140000000 - - X: 480000000 + - X: 1790000000 Y: 120000000 - - X: 520000000 + - X: 1810000000 + Y: 120000000 + - - X: 2110000000 + Y: 140000000 + - X: 2090000000 + Y: 140000000 + - X: 2090000000 + Y: 130000000 + - X: 2080000000 + Y: 130000000 + - X: 2080000000 + Y: 120000000 + - X: 2110000000 Y: 120000000 - - X: 450000000 Y: 120000000 @@ -2501,14 +2404,6 @@ CompositeCollider2D: Y: 100000000 - X: 450000000 Y: 100000000 - - - X: 1550000000 - Y: 100000000 - - X: 1530000000 - Y: 100000000 - - X: 1530000000 - Y: 80000000 - - X: 1550000000 - Y: 80000000 - - X: 760000000 Y: 100000000 - X: 700000000 @@ -2517,6 +2412,14 @@ CompositeCollider2D: Y: 80000000 - X: 760000000 Y: 80000000 + - - X: 1550000000 + Y: 100000000 + - X: 1530000000 + Y: 100000000 + - X: 1530000000 + Y: 80000000 + - X: 1550000000 + Y: 80000000 - - X: 2040000000 Y: 50000000 - X: 2050000000 @@ -2557,22 +2460,6 @@ CompositeCollider2D: Y: 40000000 - X: 2040000000 Y: 40000000 - - - X: 2220000100 - Y: 49999959 - - X: 2220000100 - Y: 80000041 - - X: 2220000041 - Y: 80000100 - - X: 2169999831 - Y: 80000100 - - X: 2169999772 - Y: 80000041 - - X: 2169999772 - Y: 49999959 - - X: 2169999831 - Y: 49999900 - - X: 2220000041 - Y: 49999900 - - X: 290000000 Y: 80000000 - X: 240000000 @@ -2581,13 +2468,13 @@ CompositeCollider2D: Y: 60000000 - X: 290000000 Y: 60000000 - - - X: 1880000000 + - - X: 2220000000 + Y: 80000000 + - X: 2169999872 + Y: 80000000 + - X: 2169999872 Y: 50000000 - - X: 1880000000 - Y: 70000000 - - X: 2020000000 - Y: 70000000 - - X: 2020000000 + - X: 2220000000 Y: 50000000 - - X: 1290000000 Y: 30000000 @@ -2661,6 +2548,14 @@ CompositeCollider2D: Y: 20000000 - X: 1290000000 Y: 20000000 + - - X: 1880000000 + Y: 50000000 + - X: 1880000000 + Y: 70000000 + - X: 2020000000 + Y: 70000000 + - X: 2020000000 + Y: 50000000 - - X: 380000000 Y: 70000000 - X: 330000000 @@ -2669,22 +2564,6 @@ CompositeCollider2D: Y: 50000000 - X: 380000000 Y: 50000000 - - - X: 1800000100 - Y: 39999959 - - X: 1800000100 - Y: 60000041 - - X: 1800000041 - Y: 60000100 - - X: 1769999959 - Y: 60000100 - - X: 1769999900 - Y: 60000041 - - X: 1769999900 - Y: 39999959 - - X: 1769999959 - Y: 39999900 - - X: 1800000041 - Y: 39999900 - - X: 910000000 Y: -110000000 - X: 1030000000 @@ -2749,6 +2628,14 @@ CompositeCollider2D: Y: -200000000 - X: 910000000 Y: -200000000 + - - X: 1800000000 + Y: 60000000 + - X: 1770000000 + Y: 60000000 + - X: 1770000000 + Y: 40000000 + - X: 1800000000 + Y: 40000000 - - X: 840000000 Y: 50000000 - X: 760000000 @@ -2781,29 +2668,27 @@ CompositeCollider2D: Y: 10000000 - X: 250000000 Y: 10000000 - - - X: 2270000228 - Y: 9999959 - - X: 2270000228 - Y: 20000041 - - X: 2270000169 - Y: 20000100 - - X: 2259999959 - Y: 20000100 - - X: 2259999900 - Y: 20000041 - - X: 2259999900 - Y: 9999959 - - X: 2259999959 - Y: 9999900 - - X: 2270000169 - Y: 9999900 + - - X: 2270000128 + Y: 20000000 + - X: 2260000000 + Y: 20000000 + - X: 2260000000 + Y: 10000000 + - X: 2270000128 + Y: 10000000 + - - X: 1750000000 + Y: 10000000 + - X: 1670000000 + Y: 10000000 + - X: 1670000000 + Y: -20000000 + - X: 1750000000 + Y: -20000000 - - X: 2160000000 - Y: -40000100 - - X: 2150000087 - Y: -40000100 - - X: 2150000028 - Y: -40000041 - - X: 2150000028 + Y: -40000000 + - X: 2150000128 + Y: -40000000 + - X: 2150000128 Y: -30000000 - X: 2080000000 Y: -30000000 @@ -2859,14 +2744,6 @@ CompositeCollider2D: Y: -60000000 - X: 2160000000 Y: -60000000 - - - X: 1750000000 - Y: 10000000 - - X: 1670000000 - Y: 10000000 - - X: 1670000000 - Y: -20000000 - - X: 1750000000 - Y: -20000000 - - X: 1660000000 Y: -40000000 - X: 1640000000 @@ -2875,14 +2752,6 @@ CompositeCollider2D: Y: -140000000 - X: 1660000000 Y: -140000000 - - - X: 1430000000 - Y: -50000000 - - X: 1410000000 - Y: -50000000 - - X: 1410000000 - Y: -70000000 - - X: 1430000000 - Y: -70000000 - - X: 2270000128 Y: -50000000 - X: 2260000000 @@ -2891,6 +2760,14 @@ CompositeCollider2D: Y: -60000000 - X: 2270000128 Y: -60000000 + - - X: 1430000000 + Y: -50000000 + - X: 1410000000 + Y: -50000000 + - X: 1410000000 + Y: -70000000 + - X: 1430000000 + Y: -70000000 - - X: 1160000000 Y: -80000000 - X: 1130000000 @@ -2905,14 +2782,12 @@ CompositeCollider2D: Y: -110000000 - X: 2230000128 Y: -90000000 - - X: 2130000100 + - X: 2130000000 Y: -90000000 - - X: 2130000100 - Y: -100000041 - - X: 2130000041 - Y: -100000100 + - X: 2130000000 + Y: -100000000 - X: 2120000000 - Y: -100000100 + Y: -100000000 - X: 2120000000 Y: -150000000 - X: 2090000000 @@ -2921,14 +2796,6 @@ CompositeCollider2D: Y: -170000000 - X: 2140000000 Y: -170000000 - - - X: 1470000000 - Y: -90000000 - - X: 1450000000 - Y: -90000000 - - X: 1450000000 - Y: -110000000 - - X: 1470000000 - Y: -110000000 - - X: 1550000000 Y: -90000000 - X: 1530000000 @@ -2937,6 +2804,14 @@ CompositeCollider2D: Y: -110000000 - X: 1550000000 Y: -110000000 + - - X: 1470000000 + Y: -90000000 + - X: 1450000000 + Y: -90000000 + - X: 1450000000 + Y: -110000000 + - X: 1470000000 + Y: -110000000 - - X: 1780000000 Y: -120000000 - X: 1730000000 @@ -2945,14 +2820,6 @@ CompositeCollider2D: Y: -140000000 - X: 1780000000 Y: -140000000 - - - X: 1510000000 - Y: -130000000 - - X: 1490000000 - Y: -130000000 - - X: 1490000000 - Y: -150000000 - - X: 1510000000 - Y: -150000000 - - X: 1140000000 Y: -130000000 - X: 1050000000 @@ -2961,6 +2828,14 @@ CompositeCollider2D: Y: -150000000 - X: 1140000000 Y: -150000000 + - - X: 1510000000 + Y: -130000000 + - X: 1490000000 + Y: -130000000 + - X: 1490000000 + Y: -150000000 + - X: 1510000000 + Y: -150000000 - - X: 2270000128 Y: -140000000 - X: 2260000000 @@ -2977,14 +2852,6 @@ CompositeCollider2D: Y: -170000000 - X: 1970000000 Y: -170000000 - - - X: 2050000000 - Y: -150000000 - - X: 2010000000 - Y: -150000000 - - X: 2010000000 - Y: -170000000 - - X: 2050000000 - Y: -170000000 - - X: 1790000000 Y: -190000000 - X: 1810000000 @@ -3009,6 +2876,14 @@ CompositeCollider2D: Y: -200000000 - X: 1790000000 Y: -200000000 + - - X: 2050000000 + Y: -150000000 + - X: 2010000000 + Y: -150000000 + - X: 2010000000 + Y: -170000000 + - X: 2050000000 + Y: -170000000 - - X: 1720000000 Y: -170000000 - X: 1640000000 @@ -3025,22 +2900,6 @@ CompositeCollider2D: Y: -190000000 - X: 1550000000 Y: -190000000 - - - X: 990000000 - Y: -180000000 - - X: 930000000 - Y: -180000000 - - X: 930000000 - Y: -200000000 - - X: 990000000 - Y: -200000000 - - - X: 690000000 - Y: -180000000 - - X: 670000000 - Y: -180000000 - - X: 670000000 - Y: -200000000 - - X: 690000000 - Y: -200000000 - - X: 1110000000 Y: -180000000 - X: 1020000000 @@ -3049,45 +2908,13 @@ CompositeCollider2D: Y: -200000000 - X: 1110000000 Y: -200000000 - - - X: 840000000 + - - X: 990000000 Y: -180000000 - - X: 820000000 + - X: 930000000 Y: -180000000 - - X: 820000000 + - X: 930000000 Y: -200000000 - - X: 840000000 - Y: -200000000 - - - X: 640000000 - Y: -180000000 - - X: 620000000 - Y: -180000000 - - X: 620000000 - Y: -200000000 - - X: 640000000 - Y: -200000000 - - - X: 790000000 - Y: -180000000 - - X: 770000000 - Y: -180000000 - - X: 770000000 - Y: -200000000 - - X: 790000000 - Y: -200000000 - - - X: 740000000 - Y: -180000000 - - X: 720000000 - Y: -180000000 - - X: 720000000 - Y: -200000000 - - X: 740000000 - Y: -200000000 - - - X: 590000000 - Y: -180000000 - - X: 570000000 - Y: -180000000 - - X: 570000000 - Y: -200000000 - - X: 590000000 + - X: 990000000 Y: -200000000 - - X: 540000000 Y: -180000000 @@ -3097,13 +2924,65 @@ CompositeCollider2D: Y: -200000000 - X: 540000000 Y: -200000000 + - - X: 590000000 + Y: -180000000 + - X: 570000000 + Y: -180000000 + - X: 570000000 + Y: -200000000 + - X: 590000000 + Y: -200000000 + - - X: 640000000 + Y: -180000000 + - X: 620000000 + Y: -180000000 + - X: 620000000 + Y: -200000000 + - X: 640000000 + Y: -200000000 + - - X: 740000000 + Y: -180000000 + - X: 720000000 + Y: -180000000 + - X: 720000000 + Y: -200000000 + - X: 740000000 + Y: -200000000 + - - X: 790000000 + Y: -180000000 + - X: 770000000 + Y: -180000000 + - X: 770000000 + Y: -200000000 + - X: 790000000 + Y: -200000000 + - - X: 840000000 + Y: -180000000 + - X: 820000000 + Y: -180000000 + - X: 820000000 + Y: -200000000 + - X: 840000000 + Y: -200000000 + - - X: 690000000 + Y: -180000000 + - X: 670000000 + Y: -180000000 + - X: 670000000 + Y: -200000000 + - X: 690000000 + Y: -200000000 m_CompositePaths: m_Paths: - - {x: 234.99998, y: -26} - {x: 234.99998, y: 44} - {x: -18, y: 43.999973} - {x: -17.999971, y: -26} - - - {x: 159, y: -22.999971} + - - {x: 232, y: -22.999971} + - {x: 162, y: -22.999971} + - {x: 161.99997, y: -12} + - {x: 159, y: -12.00003} + - {x: 158.99997, y: -23} - {x: 139, y: -22.999971} - {x: 138.99997, y: -3} - {x: 119, y: -3.0000293} @@ -3159,24 +3038,20 @@ CompositeCollider2D: - {x: -15, y: -3.9999704} - {x: -14.999971, y: 41} - {x: 232, y: 40.999973} - - {x: 231.99997, y: 28.00001} - - {x: 230, y: 27.999975} - - {x: 229.99995, y: 26.00001} - - {x: 227.00002, y: 25.999975} - - {x: 227.00005, y: 23.99999} - - {x: 232, y: 23.99996} - - {x: 231.99997, y: 12.00001} - - {x: 230, y: 11.999974} - - {x: 230.00003, y: 9.99999} - - {x: 232, y: 9.999961} + - {x: 231.99997, y: 28} + - {x: 230, y: 27.999971} + - {x: 229.99997, y: 26} + - {x: 227.00002, y: 25.999971} + - {x: 227.00005, y: 24} + - {x: 232, y: 23.999971} + - {x: 231.99997, y: 12} + - {x: 230, y: 11.99997} + - {x: 230.00003, y: 10} + - {x: 232, y: 9.99997} - {x: 231.99997, y: -9} - {x: 231.00002, y: -9.00003} - {x: 231.00005, y: -11} - {x: 232, y: -11.00003} - - {x: 231.99997, y: -23} - - {x: 162, y: -22.999971} - - {x: 161.99997, y: -12} - - {x: 159, y: -12.00003} - - {x: 161.99997, y: -7} - {x: 162.00003, y: 30} - {x: 166, y: 30.000029} @@ -3192,117 +3067,117 @@ CompositeCollider2D: - {x: 157, y: 5.999971} - {x: 157.00003, y: 4} - {x: 159, y: 3.9999704} - - {x: 159.00005, y: -7} - - - {x: 223.99997, y: 30.99999} - - {x: 223.99997, y: 32.00001} - - {x: 222, y: 31.999971} - - {x: 222.00006, y: 31.00001} - - - {x: 214.99997, y: 31.00001} - - {x: 214.99997, y: 32} - - {x: 214.00002, y: 31.999971} - - {x: 214.00005, y: 31.00001} - - - {x: 218.99997, y: 31.00001} - - {x: 218.99997, y: 32} - - {x: 218, y: 31.999971} - - {x: 218.00006, y: 31.00001} - - - {x: 228.99997, y: 30} - - {x: 228.99997, y: 32} - - {x: 228, y: 31.999971} - - {x: 228.00006, y: 30} - - - {x: 174.99997, y: 31.00001} - - {x: 174.99997, y: 32} - - {x: 174, y: 31.999971} - - {x: 174.00003, y: 31.00001} - - - {x: 170.99997, y: 30} - - {x: 171.00003, y: 30.99999} - - {x: 173, y: 31.000038} - - {x: 172.99997, y: 32} - - {x: 170, y: 31.999971} - - {x: 170.00003, y: 30} - - - {x: 212.99997, y: 31.00001} - - {x: 212.99997, y: 32} - - {x: 212.00002, y: 31.999971} - - {x: 212.00005, y: 31.00001} - - - {x: 176.99997, y: 30} - - {x: 176.99997, y: 32} - - {x: 176, y: 31.999971} - - {x: 176.00003, y: 30} + - {x: 159.00003, y: -7} - - {x: 178.99997, y: 31} - {x: 178.99997, y: 32} - {x: 178, y: 31.999971} - {x: 178.00003, y: 31} + - - {x: 176.99997, y: 30} + - {x: 176.99997, y: 32} + - {x: 176, y: 31.999971} + - {x: 176.00003, y: 30} + - - {x: 174.99997, y: 31} + - {x: 174.99997, y: 32} + - {x: 174, y: 31.999971} + - {x: 174.00003, y: 31} - - {x: 180.99997, y: 30} - {x: 180.99997, y: 32} - {x: 180, y: 31.999971} - {x: 180.00003, y: 30} - - - {x: 182.99997, y: 31} - - {x: 182.99997, y: 32} - - {x: 182, y: 31.999971} - - {x: 182.00003, y: 31} - - - {x: 184.99997, y: 30} - - {x: 184.99997, y: 32} - - {x: 184, y: 31.999971} - - {x: 184.00003, y: 30} - - - {x: 186.99997, y: 31} - - {x: 186.99997, y: 32} - - {x: 186, y: 31.999971} - - {x: 186.00003, y: 31} - - - {x: 188.99997, y: 31.00001} - - {x: 188.99997, y: 32} - - {x: 188, y: 31.999971} - - {x: 188.00003, y: 31.00001} - - - {x: 190.99997, y: 31} - - {x: 190.99997, y: 32} - - {x: 190, y: 31.999971} - - {x: 190.00003, y: 31} - - - {x: 192.99997, y: 30} - - {x: 192.99997, y: 32} - - {x: 192, y: 31.999971} - - {x: 192.00003, y: 30} - - - {x: 196.99997, y: 30} - - {x: 196.99997, y: 32} - - {x: 196, y: 31.999971} - - {x: 196.00003, y: 30} - - - {x: 198.99997, y: 31.00001} - - {x: 198.99997, y: 32} - - {x: 198.00002, y: 31.999971} - - {x: 198.00005, y: 31.00001} - - - {x: 200.99997, y: 31.00001} - - {x: 200.99997, y: 32} - - {x: 200.00002, y: 31.999971} - - {x: 200.00005, y: 31.00001} - - - {x: 202.99997, y: 31.00001} - - {x: 202.99997, y: 32} - - {x: 202.00002, y: 31.999971} - - {x: 202.00005, y: 31.00001} - - - {x: 204.99997, y: 30} - - {x: 204.99997, y: 32} - - {x: 204.00002, y: 31.999971} - - {x: 204.00005, y: 30} - - - {x: 220.99994, y: 30} - - {x: 220.99994, y: 32} - - {x: 220, y: 31.999971} - - {x: 220.00006, y: 30} - - {x: 194.99997, y: 31} - {x: 194.99997, y: 32} - {x: 194, y: 31.999971} - {x: 194.00003, y: 31} - - - {x: 206.99997, y: 31.00001} - - {x: 206.99997, y: 32} - - {x: 206.00002, y: 31.999971} - - {x: 206.00005, y: 31.00001} + - - {x: 170.99997, y: 30} + - {x: 171.00003, y: 31} + - {x: 173, y: 31.000029} + - {x: 172.99997, y: 32} + - {x: 170, y: 31.999971} + - {x: 170.00003, y: 30} + - - {x: 228.99997, y: 30} + - {x: 228.99997, y: 32} + - {x: 228, y: 31.999971} + - {x: 228.00003, y: 30} + - - {x: 223.99997, y: 31} + - {x: 223.99997, y: 32} + - {x: 222, y: 31.999971} + - {x: 222.00003, y: 31} + - - {x: 220.99997, y: 30} + - {x: 220.99997, y: 32} + - {x: 220, y: 31.999971} + - {x: 220.00003, y: 30} + - - {x: 218.99998, y: 31} + - {x: 218.99998, y: 32} + - {x: 218, y: 31.999971} + - {x: 218.00003, y: 31} + - - {x: 216.99997, y: 30} + - {x: 216.99997, y: 32} + - {x: 216, y: 31.999971} + - {x: 216.00003, y: 30} + - - {x: 214.99998, y: 31} + - {x: 214.99998, y: 32} + - {x: 214, y: 31.999971} + - {x: 214.00003, y: 31} + - - {x: 212.99997, y: 31} + - {x: 212.99997, y: 32} + - {x: 212, y: 31.999971} + - {x: 212.00003, y: 31} + - - {x: 210.99997, y: 31} + - {x: 210.99997, y: 32} + - {x: 210, y: 31.999971} + - {x: 210.00003, y: 31} - - {x: 208.99997, y: 30} - {x: 208.99997, y: 32} - - {x: 208.00002, y: 31.999971} - - {x: 208.00005, y: 30} - - - {x: 210.99997, y: 31.00001} - - {x: 210.99997, y: 32} - - {x: 210.00002, y: 31.999971} - - {x: 210.00005, y: 31.00001} - - - {x: 216.99994, y: 30} - - {x: 216.99994, y: 32} - - {x: 216, y: 31.999971} - - {x: 216.00006, y: 30} + - {x: 208, y: 31.999971} + - {x: 208.00003, y: 30} + - - {x: 206.99997, y: 31} + - {x: 206.99997, y: 32} + - {x: 206, y: 31.999971} + - {x: 206.00003, y: 31} + - - {x: 204.99997, y: 30} + - {x: 204.99997, y: 32} + - {x: 204, y: 31.999971} + - {x: 204.00003, y: 30} + - - {x: 202.99997, y: 31} + - {x: 202.99997, y: 32} + - {x: 202, y: 31.999971} + - {x: 202.00003, y: 31} + - - {x: 200.99997, y: 31} + - {x: 200.99997, y: 32} + - {x: 200, y: 31.999971} + - {x: 200.00003, y: 31} + - - {x: 196.99997, y: 30} + - {x: 196.99997, y: 32} + - {x: 196, y: 31.999971} + - {x: 196.00003, y: 30} + - - {x: 192.99997, y: 30} + - {x: 192.99997, y: 32} + - {x: 192, y: 31.999971} + - {x: 192.00003, y: 30} + - - {x: 190.99997, y: 31} + - {x: 190.99997, y: 32} + - {x: 190, y: 31.999971} + - {x: 190.00003, y: 31} + - - {x: 188.99997, y: 31} + - {x: 188.99997, y: 32} + - {x: 188, y: 31.999971} + - {x: 188.00003, y: 31} + - - {x: 186.99997, y: 31} + - {x: 186.99997, y: 32} + - {x: 186, y: 31.999971} + - {x: 186.00003, y: 31} + - - {x: 184.99997, y: 30} + - {x: 184.99997, y: 32} + - {x: 184, y: 31.999971} + - {x: 184.00003, y: 30} + - - {x: 182.99997, y: 31} + - {x: 182.99997, y: 32} + - {x: 182, y: 31.999971} + - {x: 182.00003, y: 31} + - - {x: 198.99997, y: 31} + - {x: 198.99997, y: 32} + - {x: 198, y: 31.999971} + - {x: 198.00003, y: 31} - - {x: 100.99997, y: 7} - {x: 101.00003, y: 9} - {x: 102, y: 9.00003} @@ -3373,30 +3248,10 @@ CompositeCollider2D: - {x: 40.999973, y: 30} - {x: 27, y: 29.999971} - {x: 27.000029, y: 28} - - - {x: 223.99997, y: 23.99999} - - {x: 223.99997, y: 26.00001} - - {x: 216.99998, y: 25.999975} - - {x: 217.00002, y: 23.99999} - - - {x: 142.99997, y: 20} - - {x: 142.99997, y: 22} - - {x: 121.99999, y: 21.999975} - - {x: 122.00003, y: 20.00001} - - - {x: 191.99997, y: 21} - - {x: 191.99997, y: 22} - - {x: 191, y: 21.999971} - - {x: 191.00003, y: 21} - - - {x: 198.99997, y: 21} - - {x: 198.99997, y: 22} - - {x: 198, y: 21.999971} - - {x: 198.00003, y: 21} - - - {x: 189.99997, y: 16} - - {x: 189.99997, y: 20} - - {x: 189, y: 20.000029} - - {x: 188.99997, y: 22} - - {x: 188, y: 21.999971} - - {x: 187.99997, y: 20} - - {x: 186, y: 19.999971} - - {x: 186.00003, y: 16} + - - {x: 223.99997, y: 24} + - {x: 223.99997, y: 26} + - {x: 216.99998, y: 25.999971} + - {x: 217.00002, y: 24} - - {x: 203.99997, y: 16} - {x: 203.99997, y: 21} - {x: 203, y: 20.999971} @@ -3407,78 +3262,98 @@ CompositeCollider2D: - {x: 200.99997, y: 20} - {x: 200, y: 19.999971} - {x: 200.00003, y: 16} - - - {x: 185.99997, y: 20} - - {x: 185.99997, y: 22} - - {x: 185, y: 21.999971} - - {x: 185.00003, y: 20} + - - {x: 189.99997, y: 16} + - {x: 189.99997, y: 20} + - {x: 189, y: 20.000029} + - {x: 188.99997, y: 22} + - {x: 188, y: 21.999971} + - {x: 187.99997, y: 20} + - {x: 186, y: 19.999971} + - {x: 186.00003, y: 16} + - - {x: 142.99997, y: 20} + - {x: 142.99997, y: 22} + - {x: 122, y: 21.999971} + - {x: 122.00003, y: 20} - - {x: 42.999973, y: 20} - {x: 42.999973, y: 22} - {x: 41, y: 21.999971} - {x: 41.00003, y: 20} + - - {x: 185.99997, y: 20} + - {x: 185.99997, y: 22} + - {x: 185, y: 21.999971} + - {x: 185.00003, y: 20} - - {x: 204.99997, y: 21} - {x: 204.99997, y: 22} - {x: 204, y: 21.999971} - {x: 204.00003, y: 21} - - - {x: 176.99997, y: 13.99999} - - {x: 177.00005, y: 15.99999} - - {x: 178.00002, y: 16.000027} - - {x: 178.00005, y: 17.99999} - - {x: 179.00002, y: 18.000027} - - {x: 178.99997, y: 19.00001} - - {x: 178.00002, y: 19.00004} - - {x: 177.99997, y: 20.00001} - - {x: 177.00002, y: 20.00004} - - {x: 176.99997, y: 21.00001} - - {x: 172.99998, y: 20.999975} - - {x: 173.00003, y: 14.99999} - - {x: 173.99998, y: 14.99996} - - {x: 174.00003, y: 13.99999} - - - {x: 215.99997, y: 14.99999} - - {x: 215.99997, y: 21.00001} - - {x: 212.99998, y: 20.999975} - - {x: 212.99997, y: 20.00001} - - {x: 211.99998, y: 19.999975} - - {x: 211.99997, y: 19.00001} - - {x: 210.99998, y: 18.999975} - - {x: 211.00003, y: 17.99999} - - {x: 211.99998, y: 17.99996} - - {x: 212.00003, y: 15.99999} - - {x: 212.99998, y: 15.99996} - - {x: 213.00003, y: 14.99999} - - - {x: 190.99997, y: 20} - - {x: 190.99997, y: 21} - - {x: 190, y: 20.999971} - - {x: 190.00003, y: 20} + - - {x: 198.99997, y: 21} + - {x: 198.99997, y: 22} + - {x: 198, y: 21.999971} + - {x: 198.00003, y: 21} + - - {x: 191.99997, y: 21} + - {x: 191.99997, y: 22} + - {x: 191, y: 21.999971} + - {x: 191.00003, y: 21} + - - {x: 176.99997, y: 14} + - {x: 177.00003, y: 16} + - {x: 178, y: 16.000029} + - {x: 178.00003, y: 18} + - {x: 179, y: 18.000029} + - {x: 178.99997, y: 19} + - {x: 178, y: 19.000029} + - {x: 177.99997, y: 20} + - {x: 177, y: 20.000029} + - {x: 176.99997, y: 21} + - {x: 173, y: 20.999971} + - {x: 173.00003, y: 15} + - {x: 174, y: 14.999971} + - {x: 174.00003, y: 14} - - {x: 199.99997, y: 20} - {x: 199.99997, y: 21} - {x: 199, y: 20.999971} - {x: 199.00003, y: 20} + - - {x: 215.99997, y: 15} + - {x: 215.99997, y: 21} + - {x: 213, y: 20.999971} + - {x: 212.99997, y: 20} + - {x: 212, y: 19.999971} + - {x: 211.99997, y: 19} + - {x: 211, y: 18.999971} + - {x: 211.00003, y: 18} + - {x: 212, y: 17.999971} + - {x: 212.00003, y: 16} + - {x: 213, y: 15.999971} + - {x: 213.00003, y: 15} + - - {x: 190.99997, y: 20} + - {x: 190.99997, y: 21} + - {x: 190, y: 20.999971} + - {x: 190.00003, y: 20} + - - {x: 215.00002, y: 17.000029} + - {x: 214, y: 17.000029} + - {x: 213.99997, y: 18} + - {x: 213, y: 18.000029} + - {x: 213.00003, y: 19} + - {x: 214, y: 19.000029} + - {x: 214.00003, y: 20} + - {x: 215.00002, y: 19.999971} + - - {x: 176, y: 16.000029} + - {x: 175, y: 16.000029} + - {x: 174.99997, y: 19} + - {x: 174, y: 19.000029} + - {x: 174.00003, y: 20} + - {x: 176, y: 19.999971} + - {x: 176.00003, y: 19} + - {x: 177, y: 18.999971} + - {x: 176.99997, y: 18} + - {x: 176, y: 17.999971} - - {x: 70.99997, y: 18} - {x: 70.99997, y: 20} - {x: 69, y: 19.999971} - {x: 69.00003, y: 18} - - - {x: 215.00002, y: 17.00004} - - {x: 214.00002, y: 17.00004} - - {x: 213.99997, y: 18.00001} - - {x: 213.00002, y: 18.00004} - - {x: 213.00005, y: 18.99999} - - {x: 214.00002, y: 19.000027} - - {x: 214.00005, y: 19.99999} - - {x: 215.00002, y: 19.99996} - - - {x: 175.99998, y: 16.00004} - - {x: 175.00002, y: 16.00004} - - {x: 174.99997, y: 19.00001} - - {x: 174.00002, y: 19.00004} - - {x: 174.00005, y: 19.99999} - - {x: 175.99998, y: 19.99996} - - {x: 176.00003, y: 18.99999} - - {x: 176.99998, y: 18.99996} - - {x: 176.99997, y: 18.00001} - - {x: 175.99998, y: 17.999975} - - - {x: 195.99997, y: 11.99999} + - - {x: 195.99997, y: 12} - {x: 195.99997, y: 19} - {x: 194, y: 18.999971} - - {x: 194.00003, y: 12.00001} + - {x: 194.00003, y: 12} - - {x: 146.99997, y: 16} - {x: 146.99997, y: 18} - {x: 145, y: 17.999971} @@ -3487,16 +3362,12 @@ CompositeCollider2D: - {x: 72.99997, y: 15} - {x: 71, y: 14.999971} - {x: 71.00003, y: 13} - - - {x: 180.99997, y: 11.99999} - - {x: 180.99997, y: 14.00001} - - {x: 178.99998, y: 13.999974} - - {x: 179.00003, y: 11.99999} - - - {x: 210.99997, y: 11.99999} - - {x: 210.99997, y: 14.00001} - - {x: 208.99998, y: 13.999974} - - {x: 208.99997, y: 13.00001} - - {x: 207.99998, y: 12.999974} - - {x: 208.00003, y: 11.99999} + - - {x: 210.99997, y: 12} + - {x: 210.99997, y: 14} + - {x: 209, y: 13.999971} + - {x: 208.99997, y: 13} + - {x: 208, y: 12.99997} + - {x: 208.00003, y: 12} - - {x: 51.999973, y: 12} - {x: 51.999973, y: 14} - {x: 48, y: 13.999971} @@ -3505,6 +3376,10 @@ CompositeCollider2D: - {x: 150.99997, y: 14} - {x: 149, y: 13.999971} - {x: 149.00003, y: 12} + - - {x: 180.99997, y: 12} + - {x: 180.99997, y: 14} + - {x: 179, y: 13.999971} + - {x: 179.00003, y: 12} - - {x: 44.999973, y: 10} - {x: 44.999973, y: 12} - {x: 37, y: 11.99997} @@ -3537,10 +3412,10 @@ CompositeCollider2D: - {x: 185.00003, y: 5} - {x: 186, y: 4.9999704} - {x: 186.00003, y: 4} - - - {x: 221.99997, y: 4.99999} - - {x: 221.99997, y: 8.00001} - - {x: 216.99998, y: 7.9999747} - - {x: 217.00002, y: 4.99999} + - - {x: 221.99997, y: 5} + - {x: 221.99997, y: 8} + - {x: 216.99998, y: 7.9999704} + - {x: 217.00002, y: 5} - - {x: 28.999971, y: 6} - {x: 28.999971, y: 8} - {x: 24, y: 7.9999704} @@ -3589,10 +3464,10 @@ CompositeCollider2D: - {x: 37.999973, y: 7} - {x: 33, y: 6.9999704} - {x: 33.00003, y: 5} - - - {x: 179.99997, y: 3.99999} - - {x: 179.99997, y: 6.00001} - - {x: 176.99998, y: 5.9999747} - - {x: 177.00003, y: 3.99999} + - - {x: 179.99997, y: 4} + - {x: 179.99997, y: 6} + - {x: 177, y: 5.999971} + - {x: 177.00003, y: 4} - - {x: 90.99997, y: -20} - {x: 91.00003, y: -11} - {x: 103, y: -10.99997} @@ -3641,14 +3516,14 @@ CompositeCollider2D: - {x: 24.999971, y: 3} - {x: 16, y: 2.999971} - {x: 16.000029, y: 1} - - - {x: 226.99998, y: 0.99999} - - {x: 226.99998, y: 2.00001} - - {x: 226, y: 1.9999748} - - {x: 226.00003, y: 0.99999} + - - {x: 226.99998, y: 1} + - {x: 226.99998, y: 2} + - {x: 226, y: 1.9999708} + - {x: 226.00003, y: 1} - - {x: 215.99997, y: -6} - - {x: 215.99997, y: -4.00001} - - {x: 215.00002, y: -3.9999747} - - {x: 214.99997, y: -3} + - {x: 215.99997, y: -4} + - {x: 215.00002, y: -3.9999704} + - {x: 214.99998, y: -3} - {x: 208, y: -2.9999707} - {x: 207.99997, y: 1} - {x: 205, y: 0.99997073} @@ -3695,24 +3570,24 @@ CompositeCollider2D: - {x: 115.99998, y: -8} - {x: 113, y: -8.00003} - {x: 113.00003, y: -11} - - - {x: 213.99997, y: -17} - - {x: 214.00003, y: -11} - - {x: 223.00002, y: -10.99997} - - {x: 222.99998, y: -9} - - {x: 213.00002, y: -9.00003} - - {x: 212.99997, y: -10.00001} - - {x: 212, y: -10.000039} - - {x: 211.99997, y: -15} - - {x: 209, y: -15.000029} - - {x: 209.00003, y: -17} - - - {x: 146.99997, y: -11} - - {x: 146.99997, y: -9} - - {x: 145, y: -9.00003} - - {x: 145.00003, y: -11} - - {x: 154.99997, y: -11} - {x: 154.99997, y: -9} - {x: 153, y: -9.00003} - {x: 153.00003, y: -11} + - - {x: 146.99997, y: -11} + - {x: 146.99997, y: -9} + - {x: 145, y: -9.00003} + - {x: 145.00003, y: -11} + - - {x: 213.99997, y: -17} + - {x: 214.00003, y: -11} + - {x: 223.00002, y: -10.99997} + - {x: 222.99998, y: -9} + - {x: 213, y: -9.00003} + - {x: 212.99997, y: -10} + - {x: 212, y: -10.00003} + - {x: 211.99997, y: -15} + - {x: 209, y: -15.000029} + - {x: 209.00003, y: -17} - - {x: 177.99997, y: -14} - {x: 177.99997, y: -12} - {x: 173, y: -12.00003} @@ -3733,6 +3608,10 @@ CompositeCollider2D: - {x: 196.99997, y: -15} - {x: 193, y: -15.000029} - {x: 193.00003, y: -17} + - - {x: 204.99997, y: -17} + - {x: 204.99997, y: -15} + - {x: 201, y: -15.000029} + - {x: 201.00003, y: -17} - - {x: 178.99997, y: -20} - {x: 179.00003, y: -19} - {x: 181, y: -18.999971} @@ -3745,18 +3624,30 @@ CompositeCollider2D: - {x: 176.99997, y: -18} - {x: 175, y: -18.000029} - {x: 175.00003, y: -20} - - - {x: 204.99997, y: -17} - - {x: 204.99997, y: -15} - - {x: 201, y: -15.000029} - - {x: 201.00003, y: -17} - - - {x: 154.99997, y: -19} - - {x: 154.99997, y: -17} - - {x: 153, y: -17.000029} - - {x: 153.00003, y: -19} - - {x: 171.99997, y: -20} - {x: 171.99997, y: -17} - {x: 164, y: -17.000029} - {x: 164.00003, y: -20} + - - {x: 154.99997, y: -19} + - {x: 154.99997, y: -17} + - {x: 153, y: -17.000029} + - {x: 153.00003, y: -19} + - - {x: 98.99997, y: -20} + - {x: 98.99997, y: -18} + - {x: 93, y: -18.000029} + - {x: 93.00003, y: -20} + - - {x: 110.99998, y: -20} + - {x: 110.99998, y: -18} + - {x: 102, y: -18.000029} + - {x: 102.00003, y: -20} + - - {x: 83.99997, y: -20} + - {x: 83.99997, y: -18} + - {x: 82, y: -18.000029} + - {x: 82.00003, y: -20} + - - {x: 78.99997, y: -20} + - {x: 78.99997, y: -18} + - {x: 77, y: -18.000029} + - {x: 77.00003, y: -20} - - {x: 73.99997, y: -20} - {x: 73.99997, y: -18} - {x: 72, y: -18.000029} @@ -3777,22 +3668,6 @@ CompositeCollider2D: - {x: 53.99997, y: -18} - {x: 52, y: -18.000029} - {x: 52.00003, y: -20} - - - {x: 110.99998, y: -20} - - {x: 110.99998, y: -18} - - {x: 102, y: -18.000029} - - {x: 102.00003, y: -20} - - - {x: 98.99997, y: -20} - - {x: 98.99997, y: -18} - - {x: 93, y: -18.000029} - - {x: 93.00003, y: -20} - - - {x: 83.99997, y: -20} - - {x: 83.99997, y: -18} - - {x: 82, y: -18.000029} - - {x: 82.00003, y: -20} - - - {x: 78.99997, y: -20} - - {x: 78.99997, y: -18} - - {x: 77, y: -18.000029} - - {x: 77.00003, y: -20} m_VertexDistance: 0.0005 m_OffsetDistance: 0.00005 --- !u!50 &2120494079 @@ -40264,7 +40139,7 @@ PrefabInstance: - target: {fileID: 8554420466772133694, guid: f859e1c9214db2c4eaaeff51febb3222, type: 3} propertyPath: m_RootOrder - value: 2 + value: 3 objectReference: {fileID: 0} - target: {fileID: 8554420466772133694, guid: f859e1c9214db2c4eaaeff51febb3222, type: 3} @@ -40375,11 +40250,6 @@ PrefabInstance: propertyPath: m_BodyType value: 0 objectReference: {fileID: 0} - - target: {fileID: 3827363133515929334, guid: ef13d4cb4d0a2b043b4f2a6cc75ca48a, - type: 3} - propertyPath: m_GravityScale - value: 2 - objectReference: {fileID: 0} - target: {fileID: 3827363133515929335, guid: ef13d4cb4d0a2b043b4f2a6cc75ca48a, type: 3} propertyPath: movementSpeed @@ -40404,6 +40274,6 @@ PrefabInstance: type: 3} propertyPath: eventControls value: - objectReference: {fileID: 1491655} + objectReference: {fileID: 1759518265} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: ef13d4cb4d0a2b043b4f2a6cc75ca48a, type: 3} diff --git a/Assets/Scripts/EventControls.cs b/Assets/Scripts/EventControls.cs index 6eadd5b..bcd1ece 100644 --- a/Assets/Scripts/EventControls.cs +++ b/Assets/Scripts/EventControls.cs @@ -1,6 +1,7 @@ using Assets.Model; using System.Collections; using System.Collections.Generic; +using System.Linq; using UnityEngine; using UnityEngine.Tilemaps; @@ -8,7 +9,10 @@ public class EventControls : MonoBehaviour { [SerializeField] private Camera camera; [SerializeField] private Tile tile; + [SerializeField] private List tiles; + [SerializeField] private List successTiles; [SerializeField] private Tile successTile; + [SerializeField] private Tile plusTile; [SerializeField] private float framesPerControlTile = 15; [SerializeField] private int nextControlYOffset = 0; [SerializeField] private int nextControlXOffset = 0; @@ -32,7 +36,9 @@ public class EventControls : MonoBehaviour private Collider2D currentPlayerCollider; private Collider2D currentEnemyCollider; - private Queue eventControlTilesInCycle; + private List eventControlTilesInCycle; + private Queue eventControlTilesInCycleQueue; + private bool? isControlTile = null; private int framesPerSecond => 60; private Vector3Int nextControlOffSetAsVector => new Vector3Int(nextControlXOffset, nextControlYOffset, 0); @@ -55,7 +61,7 @@ public class EventControls : MonoBehaviour private void Start() { tilemap = GetComponent(); - eventControlTilesInCycle = new Queue(); + eventControlTilesInCycle = new List(); } private void Update() @@ -85,10 +91,28 @@ public class EventControls : MonoBehaviour initialCameraPosition = GetCameraPosition(); // Store tiles for event cycle - var eventControlTile = new EventControlTile(KeyCode.W, tile, successTile, GetNextTilePosition() + nextControlOffSetAsVector); /* TODO: Hard code */ - eventControlTilesInCycle.Enqueue(eventControlTile); + EventControlTile eventControlTile = null; + if (isControlTile == null || isControlTile.GetValueOrDefault()) + { + eventControlTile = new EventControlTile(KeyCode.Q, + tile, + successTile, + GetNextTilePosition() + nextControlOffSetAsVector); /* TODO: Hard code */ + isControlTile = false; + } + else + { + eventControlTile = new EventControlTile(KeyCode.Escape, + plusTile, + null, + GetNextTilePosition() + nextControlOffSetAsVector, + true); /* TODO: Hard code */ + isControlTile = true; + } - tilemap.SetTile(eventControlTile.position, tile); + eventControlTilesInCycle.Add(eventControlTile); + + tilemap.SetTile(eventControlTile.position, eventControlTile.tile); nextControlAccumalator = 0; numberOfControlTilesSet++; @@ -96,6 +120,7 @@ public class EventControls : MonoBehaviour else if (numberOfControlTilesSet == maxNumberOfControlTiles) { initialCameraPosition = null; + isControlTile = null; eventDrawn = true; } else @@ -122,14 +147,15 @@ public class EventControls : MonoBehaviour nextControlAccumalator = 0; if (currentEventControl == null) - currentEventControl = eventControlTilesInCycle.Dequeue(); + currentEventControl = eventControlTilesInCycle.First(x => !x.isPlusTile && !x.isPerformed); if (Input.GetKeyDown(currentEventControl.keyCode)) { + currentEventControl.isPerformed = true; tilemap.SetTile(currentEventControl.position, currentEventControl.successTile); currentEventControl = null; - if (eventControlTilesInCycle.Count == 0) + if (eventControlTilesInCycle.Where(x => !x.isPlusTile && !x.isPerformed).Count() == 0) { eventTriggered = false; eventCycleAccumalator = 0; diff --git a/Assets/Sprites/Controls/Control W Success.asset b/Assets/Sprites/Controls/Buttons_0.asset similarity index 78% rename from Assets/Sprites/Controls/Control W Success.asset rename to Assets/Sprites/Controls/Buttons_0.asset index 4bedf93..3bf0b9c 100644 --- a/Assets/Sprites/Controls/Control W Success.asset +++ b/Assets/Sprites/Controls/Buttons_0.asset @@ -10,10 +10,11 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} - m_Name: Control W Success + m_Name: Buttons_0 m_EditorClassIdentifier: - m_Sprite: {fileID: 21300000, guid: 7c63d0c80ca19b944a6838f2becbc094, type: 3} - m_Color: {r: 0.066082224, g: 0.9339623, b: 0.12693371, a: 1} + m_Sprite: {fileID: 8894201953851282084, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_Transform: e00: 1 e01: 0 diff --git a/Assets/Sprites/Controls/Control W Success.asset.meta b/Assets/Sprites/Controls/Buttons_0.asset.meta similarity index 79% rename from Assets/Sprites/Controls/Control W Success.asset.meta rename to Assets/Sprites/Controls/Buttons_0.asset.meta index 8f04672..a37018d 100644 --- a/Assets/Sprites/Controls/Control W Success.asset.meta +++ b/Assets/Sprites/Controls/Buttons_0.asset.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 6cf7a50810d16f2468acc06180743d07 +guid: 1f7bfa5ee72002646806268d14bfeb3b NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/Sprites/Controls/Buttons_1.asset b/Assets/Sprites/Controls/Buttons_1.asset new file mode 100644 index 0000000..cca6acc --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_1.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_1 + m_EditorClassIdentifier: + m_Sprite: {fileID: 7664807735657788756, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Control W.asset.meta b/Assets/Sprites/Controls/Buttons_1.asset.meta similarity index 79% rename from Assets/Sprites/Controls/Control W.asset.meta rename to Assets/Sprites/Controls/Buttons_1.asset.meta index bbef4c4..015031a 100644 --- a/Assets/Sprites/Controls/Control W.asset.meta +++ b/Assets/Sprites/Controls/Buttons_1.asset.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 7ece7857530facb42b843eed2526c86a +guid: ae6e7a8b9fa2433448a66da4090e310c NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/Sprites/Controls/Buttons_10.asset b/Assets/Sprites/Controls/Buttons_10.asset new file mode 100644 index 0000000..f4a78fa --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_10.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_10 + m_EditorClassIdentifier: + m_Sprite: {fileID: 3100856887975758742, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Buttons_10.asset.meta b/Assets/Sprites/Controls/Buttons_10.asset.meta new file mode 100644 index 0000000..2a5201e --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_10.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c5438b1315e8d840b6c482e9710993c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Controls/Buttons_11.asset b/Assets/Sprites/Controls/Buttons_11.asset new file mode 100644 index 0000000..5cd37ef --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_11.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_11 + m_EditorClassIdentifier: + m_Sprite: {fileID: 4520375771122408675, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Buttons_11.asset.meta b/Assets/Sprites/Controls/Buttons_11.asset.meta new file mode 100644 index 0000000..fc245fe --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_11.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e3c7dcade26bec746bd38fb794264216 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Controls/Buttons_2.asset b/Assets/Sprites/Controls/Buttons_2.asset new file mode 100644 index 0000000..c04b907 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_2.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_2 + m_EditorClassIdentifier: + m_Sprite: {fileID: -5402412272178277761, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Buttons_2.asset.meta b/Assets/Sprites/Controls/Buttons_2.asset.meta new file mode 100644 index 0000000..cd5c463 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_2.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c2678bd928e9a0943ad5fadb602db819 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Controls/Buttons_3.asset b/Assets/Sprites/Controls/Buttons_3.asset new file mode 100644 index 0000000..ca7ba58 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_3.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_3 + m_EditorClassIdentifier: + m_Sprite: {fileID: 2013261503205373015, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Buttons_3.asset.meta b/Assets/Sprites/Controls/Buttons_3.asset.meta new file mode 100644 index 0000000..f730292 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_3.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2144cee47e8929f4cb0ce23b78f8f4ad +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Controls/Buttons_4.asset b/Assets/Sprites/Controls/Buttons_4.asset new file mode 100644 index 0000000..46be870 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_4.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_4 + m_EditorClassIdentifier: + m_Sprite: {fileID: 3760674464881954987, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Buttons_4.asset.meta b/Assets/Sprites/Controls/Buttons_4.asset.meta new file mode 100644 index 0000000..3f4ce51 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_4.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e85f8319cdf4358448a9002845cfbd5a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Controls/Buttons_5.asset b/Assets/Sprites/Controls/Buttons_5.asset new file mode 100644 index 0000000..af8935f --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_5.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_5 + m_EditorClassIdentifier: + m_Sprite: {fileID: -7811504096720598664, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Buttons_5.asset.meta b/Assets/Sprites/Controls/Buttons_5.asset.meta new file mode 100644 index 0000000..f1e6da4 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_5.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ccb4ffcdbc096b448881b3a12ed1bfce +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Controls/Buttons_6.asset b/Assets/Sprites/Controls/Buttons_6.asset new file mode 100644 index 0000000..3157be7 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_6.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_6 + m_EditorClassIdentifier: + m_Sprite: {fileID: -7814535901586335685, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Buttons_6.asset.meta b/Assets/Sprites/Controls/Buttons_6.asset.meta new file mode 100644 index 0000000..503d9d5 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_6.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: db1d65b4da209fa489ba3d7582dbff24 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Controls/Buttons_7.asset b/Assets/Sprites/Controls/Buttons_7.asset new file mode 100644 index 0000000..03e387b --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_7.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_7 + m_EditorClassIdentifier: + m_Sprite: {fileID: -3243065930256096816, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Buttons_7.asset.meta b/Assets/Sprites/Controls/Buttons_7.asset.meta new file mode 100644 index 0000000..0eac61a --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_7.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb7c540b9df3b994fb4320684eb0ff65 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Controls/Buttons_8.asset b/Assets/Sprites/Controls/Buttons_8.asset new file mode 100644 index 0000000..0de1b89 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_8.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_8 + m_EditorClassIdentifier: + m_Sprite: {fileID: -5316896731886317114, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Buttons_8.asset.meta b/Assets/Sprites/Controls/Buttons_8.asset.meta new file mode 100644 index 0000000..b7c2838 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_8.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: daea938cbd864e0479f663f746bb9950 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Controls/Buttons_9.asset b/Assets/Sprites/Controls/Buttons_9.asset new file mode 100644 index 0000000..8758748 --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_9.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13312, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Buttons_9 + m_EditorClassIdentifier: + m_Sprite: {fileID: 7219830438018454713, guid: 41e19859471e9554081441f3912fd642, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Transform: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_InstancedGameObject: {fileID: 0} + m_Flags: 1 + m_ColliderType: 1 diff --git a/Assets/Sprites/Controls/Buttons_9.asset.meta b/Assets/Sprites/Controls/Buttons_9.asset.meta new file mode 100644 index 0000000..8103cbe --- /dev/null +++ b/Assets/Sprites/Controls/Buttons_9.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f3b494a9dede1e34cbf612b95ee136ec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Sprites/Controls/Control W.png b/Assets/Sprites/Controls/Control W.png deleted file mode 100644 index 8eb1b1ecc13b6e1d2375151866134cd7a040340c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 78 zcmeAS@N?(olHy`uVBq!ia0vp^EFjFm1|(O0oL2{=L_J*`LpWrU|M0W$cr!i aF)*;jval%k