From bcdb47ff2ce957180eb89c6c32aeb9ac408fa55e Mon Sep 17 00:00:00 2001 From: Julius <juliusfe@stud.ntnu.no> Date: Fri, 9 Dec 2022 13:22:35 +0100 Subject: [PATCH] merge main into julius --- MrBigsock/Assets/Code/FollowPlayer.cs | 84 +++- .../Assets/Code/InteractionSystem/Door.cs | 3 + .../Assets/Code/InteractionSystem/Stairs.cs | 27 ++ .../Code/InteractionSystem/Stairs.cs.meta | 11 + .../Assets/Code/Map/NeighbourMapGenerator.cs | 4 +- MrBigsock/Assets/Code/Map/TilemapGenerator.cs | 19 +- MrBigsock/Assets/Code/UI/ChestDisplay.cs | 3 +- .../Assets/Prefabs/MapObjects/Stairs.prefab | 127 ++++++ .../Prefabs/MapObjects/Stairs.prefab.meta | 7 + .../orc_warrior/bow/Bow and Arrows.png.meta | 2 +- .../Enemy_sprites/Archer Skeleton.png.meta | 2 +- .../Assets/Resources/Sprites/Item/coffee.png | Bin 0 -> 1304 bytes .../Resources/Sprites/Item/coffee.png.meta | 145 +++++++ .../Resources/Sprites/Item/elixirofspeed.png | Bin 0 -> 1152 bytes .../Sprites/Item/elixirofspeed.png.meta | 169 ++++++++ .../Resources/Sprites/Item/foureyes.png | Bin 0 -> 166 bytes .../Resources/Sprites/Item/foureyes.png.meta | 145 +++++++ .../Assets/Resources/Sprites/Item/lunch.png | Bin 0 -> 4761 bytes .../Resources/Sprites/Item/lunch.png.meta | 145 +++++++ .../Resources/Sprites/Item/plasticstraw.png | Bin 0 -> 192 bytes .../Sprites/Item/plasticstraw.png.meta | 145 +++++++ .../Resources/Sprites/Item/premature.png | Bin 0 -> 286 bytes .../Resources/Sprites/Item/premature.png.meta | 145 +++++++ .../Resources/Sprites/Item/runningshoes.png | Bin 0 -> 7135 bytes .../Sprites/Item/runningshoes.png.meta | 145 +++++++ .../Sprites/Item/tilesetNice.png.meta | 22 +- .../Assets/Tilemaps/Dungeon/Dungeon.png.meta | 382 ++++++++++++------ .../Assets/Tilemaps/Dungeon/Dungeon_77.asset | 2 +- .../Assets/Tilemaps/Dungeon/Dungeon_78.asset | 2 +- MrBigsock/Packages/packages-lock.json | 22 +- MrBigsock/ProjectSettings/ProjectVersion.txt | 4 +- MrBigsock/ProjectSettings/TagManager.asset | 1 + 32 files changed, 1612 insertions(+), 151 deletions(-) create mode 100644 MrBigsock/Assets/Code/InteractionSystem/Stairs.cs create mode 100644 MrBigsock/Assets/Code/InteractionSystem/Stairs.cs.meta create mode 100644 MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab create mode 100644 MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab.meta create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/coffee.png create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/coffee.png.meta create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png.meta create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/foureyes.png create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/foureyes.png.meta create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/lunch.png create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/lunch.png.meta create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png.meta create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/premature.png create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/premature.png.meta create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png create mode 100644 MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png.meta diff --git a/MrBigsock/Assets/Code/FollowPlayer.cs b/MrBigsock/Assets/Code/FollowPlayer.cs index 6f178e01..89d4fe1e 100644 --- a/MrBigsock/Assets/Code/FollowPlayer.cs +++ b/MrBigsock/Assets/Code/FollowPlayer.cs @@ -1,9 +1,7 @@ -using System.Collections; using System.Collections.Generic; +using BigSock.Interact; using Cinemachine; using UnityEngine; -using UnityEngine.Tilemaps; -using static System.Net.WebRequestMethods; namespace Bigsock @@ -15,27 +13,103 @@ namespace Bigsock [SerializeField] private CinemachineConfiner2D cameraMap; + private int levels = 1; + + Vector3 offset = new Vector3(0, 0, -10); int i = 0; + GameObject[] boss; + GameObject player; + GameObject[] enemies; + GameObject[] Chest; + List<GameObject> chests; + GameObject stair; + private int roomNr = 0; + bool stairs_down; void Start() { + chests = new List<GameObject>(); neighborMapGenerator.RunProceduralGeneration(); - + player = GameObject.Find("BigSock"); + stair = GameObject.Find("Stairs(Clone)"); + Chest = GameObject.FindGameObjectsWithTag("Chest"); + foreach(GameObject c in Chest) + { + chests.Add(c); + c.SetActive(false); + } + stairs_down = stair.GetComponent<Stairs>().stairs_touch; + stair.SetActive(false); } void LateUpdate() { + boss = GameObject.FindGameObjectsWithTag("Boss"); + enemies = GameObject.FindGameObjectsWithTag((roomNr).ToString()); + if (boss.Length == 0 && levels <= 1) + { + stair.SetActive(true); + stairs_down = stair.GetComponent<Stairs>().stairs_touch; + } + + + if (stairs_down) + { + roomNr = 0; + foreach(GameObject c in chests) + { + DestroyImmediate(c); + } + DestroyImmediate(stair); + chests.Clear(); + TilemapGenerator.resetMaps(); + TilemapGenerator.SetRoomIDZero(); + player.transform.position = new Vector3(9,5,0); + neighborMapGenerator.RunProceduralGeneration(); + Chest = GameObject.FindGameObjectsWithTag("Chest"); + stair = GameObject.Find("Stairs(Clone)"); + stairs_down = stair.GetComponent<Stairs>().stairs_touch; + foreach (GameObject c in Chest) + { + if(c != null) + { + c.SetActive(false); + chests.Add(c); + } + } + stair.SetActive(false); + levels++; + } + int i = 0; if(i == 0) { cameraMap.InvalidateCache(); - i++; + } + + if (enemies.Length == 0) + { + chests[roomNr].SetActive(true); + if(roomNr + 1 < NeighbourMapGenerator.GetRoomListCount() - 1) + { + roomNr++; + } + } + if(boss.Length == 0) + { + chests[1 + roomNr].SetActive(true); } } private void OnDestroy() { + roomNr = 0; + foreach (GameObject c in chests) + { + DestroyImmediate(c); + } + DestroyImmediate(stair); NeighbourMapGenerator.ClearRoomList(); TilemapGenerator.SetRoomIDZero(); TilemapGenerator.resetMaps(); diff --git a/MrBigsock/Assets/Code/InteractionSystem/Door.cs b/MrBigsock/Assets/Code/InteractionSystem/Door.cs index 7ce964c2..604867d6 100644 --- a/MrBigsock/Assets/Code/InteractionSystem/Door.cs +++ b/MrBigsock/Assets/Code/InteractionSystem/Door.cs @@ -14,6 +14,7 @@ namespace BigSock.Interact { private GameObject cameraPlayer; private int i = TilemapGenerator.NextRoom(); private GameObject boundary; + GameObject door; public string InteractionPrompt => _prompt; @@ -30,6 +31,8 @@ namespace BigSock.Interact { player.transform.position = TilemapGenerator.DoorLocaitonTransport(i); cameraPlayer.transform.position = player.transform.position; boundary.GetComponent<PolygonCollider2D>().SetPath(0, TilemapGenerator.GetRoomBoundary(i)); + door = GameObject.Find("ClosedDoor(Clone)"); + Destroy(door); return true; } return false; diff --git a/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs b/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs new file mode 100644 index 00000000..01e072dd --- /dev/null +++ b/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs @@ -0,0 +1,27 @@ +using Bigsock; +using System; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + + +namespace BigSock.Interact +{ + public class Stairs : MonoBehaviour, IInteractable + { + [SerializeField] private string _prompt; + + public string InteractionPrompt => _prompt; + public bool stairs_touch = false; + + public bool Interact(Interactor interactor) + { + if (!stairs_touch) + { + stairs_touch = true; + return true; + } + return false; + } + } +} \ No newline at end of file diff --git a/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs.meta b/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs.meta new file mode 100644 index 00000000..bf55bda4 --- /dev/null +++ b/MrBigsock/Assets/Code/InteractionSystem/Stairs.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4a3905e3d079fb64ca71936a1caba90d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/MrBigsock/Assets/Code/Map/NeighbourMapGenerator.cs b/MrBigsock/Assets/Code/Map/NeighbourMapGenerator.cs index 4dd6c90b..5d253d85 100644 --- a/MrBigsock/Assets/Code/Map/NeighbourMapGenerator.cs +++ b/MrBigsock/Assets/Code/Map/NeighbourMapGenerator.cs @@ -1,5 +1,6 @@ using System.Collections; using System.Collections.Generic; +using System.Security.Cryptography; using UnityEngine; namespace Bigsock @@ -15,7 +16,7 @@ namespace Bigsock public override void RunProceduralGeneration() { roomList.Clear(); - + for (int i = 0; i <= RoomCount - 1; i++) { int randomMap = Random.Range(0, mapParam.Length); @@ -29,6 +30,7 @@ namespace Bigsock roomList.Add(bossMap); tilemapGenerator.RenderMap(roomList[roomList.Count - 1],roomList.Count - 1, true); tilemapGenerator.SpawnBoss(bossMap, roomList.Count - 1); + tilemapGenerator.SpawnStairs(bossMap, roomList.Count - 1); tilemapGenerator.polyCollider(roomList[0], 0); } diff --git a/MrBigsock/Assets/Code/Map/TilemapGenerator.cs b/MrBigsock/Assets/Code/Map/TilemapGenerator.cs index 7b73c785..2cf2f94a 100644 --- a/MrBigsock/Assets/Code/Map/TilemapGenerator.cs +++ b/MrBigsock/Assets/Code/Map/TilemapGenerator.cs @@ -15,6 +15,8 @@ namespace Bigsock [SerializeField] GameObject Door; [SerializeField] GameObject[] Enemy; [SerializeField] GameObject Boss; + [SerializeField] GameObject Stairs; + [SerializeField] GameObject Chest; private int z_value = 0; private static int roomID = 0; @@ -197,6 +199,7 @@ namespace Bigsock fast++; } } + spawnChest(map, roomNr); SetMapBoundary(map, roomNr); } @@ -232,7 +235,7 @@ namespace Bigsock } public static void SetRoomIDZero() { - roomID = 0; + roomID = 1; } public static void resetMaps() @@ -349,5 +352,19 @@ namespace Bigsock WallTop[roomNr].ClearAllTiles(); } } + + public void SpawnStairs(int[,] bossRoom, int roomNr) + { + Instantiate(Stairs, new Vector3(FloorTilemap[roomNr].transform.position.x + bossRoom.GetUpperBound(0) / 2 + 0.5f, + FloorTilemap[roomNr].transform.position.y + bossRoom.GetUpperBound(1) - 3 + 0.5f, 0), Quaternion.identity); + } + + //Spawns a chest in the middle of the room + public void spawnChest(int[,] room, int roomNr) + { + Chest.tag = "Chest"; + Instantiate(Chest, new Vector3(FloorTilemap[roomNr].transform.position.x + room.GetUpperBound(0) / 2, + FloorTilemap[roomNr].transform.position.y + room.GetUpperBound(1) / 2, 0), Quaternion.identity); + } } } \ No newline at end of file diff --git a/MrBigsock/Assets/Code/UI/ChestDisplay.cs b/MrBigsock/Assets/Code/UI/ChestDisplay.cs index 08839c01..b28b01df 100644 --- a/MrBigsock/Assets/Code/UI/ChestDisplay.cs +++ b/MrBigsock/Assets/Code/UI/ChestDisplay.cs @@ -28,7 +28,8 @@ namespace BigSock.UI { // Gets button gameobjects and adds onClick listener for (int i = 0; i < 3; i++) { var button = itemButtonLocation.transform.Find("ButtonItem"+(i+1).ToString()).GetComponent<Button>(); - button.onClick.AddListener(delegate {ItemPicked(i); }); + int j = i; + button.onClick.AddListener(delegate {ItemPicked(j); }); buttons.Add(button); } diff --git a/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab b/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab new file mode 100644 index 00000000..1bc17042 --- /dev/null +++ b/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab @@ -0,0 +1,127 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4409019817617405666 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8860318727928166917} + - component: {fileID: -6422210887197446182} + - component: {fileID: 1254199348833719201} + - component: {fileID: 4770025611691691476} + m_Layer: 11 + m_Name: Stairs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8860318727928166917 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4409019817617405666} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.49, y: -0.45, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &-6422210887197446182 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4409019817617405666} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4a3905e3d079fb64ca71936a1caba90d, type: 3} + m_Name: + m_EditorClassIdentifier: + _prompt: +--- !u!212 &1254199348833719201 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4409019817617405666} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 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: 1 + m_Sprite: {fileID: 2090772569, guid: 0a806eb0d25e11c48b5dee57fb9339b5, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!61 &4770025611691691476 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4409019817617405666} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 0, y: 0} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0.5, y: 0.5} + oldSize: {x: 1, y: 1} + newSize: {x: 1, y: 1} + adaptiveTilingThreshold: 0.5 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 1, y: 1} + m_EdgeRadius: 0 diff --git a/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab.meta b/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab.meta new file mode 100644 index 00000000..d8093fc2 --- /dev/null +++ b/MrBigsock/Assets/Prefabs/MapObjects/Stairs.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b4bdc0b7e656c1c498446d9f7bcda837 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta index 7cc7910d..76610ac4 100644 --- a/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta +++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta @@ -33,7 +33,7 @@ TextureImporter: maxTextureSize: 2048 textureSettings: serializedVersion: 2 - filterMode: 1 + filterMode: 0 aniso: 1 mipBias: 0 wrapU: 1 diff --git a/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta index 7e32f60d..5d0b346a 100644 --- a/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta +++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta @@ -33,7 +33,7 @@ TextureImporter: maxTextureSize: 2048 textureSettings: serializedVersion: 2 - filterMode: 1 + filterMode: 0 aniso: 1 mipBias: 0 wrapU: 1 diff --git a/MrBigsock/Assets/Resources/Sprites/Item/coffee.png b/MrBigsock/Assets/Resources/Sprites/Item/coffee.png new file mode 100644 index 0000000000000000000000000000000000000000..26efebd6050b64dad3a5402e82b86bc350c31ec3 GIT binary patch literal 1304 zcmeAS@N?(olHy`uVBq!ia0y~yV0gvAz@Wsz#=yW3sP8(Rfq{XsILO_JVcj{ImkbOn zmpok@Ln`LHo#U7x6DrZL-@G$t_ECW>j;745?B6$8zfjcLBImVWTl+m5PNDvT^Y(P@ zjQpVX_0`7d4-Pg@YE~6!^5wdgz?{F`$*XhWYsH0G(lZ}4?LL3_olkoDb~WSAW}A2a zwdc4w_e_oP@4A1L|EoWnDR49?a5z<kToa$b8kOz*V)O2Gvu7?(GV@tH=WyxW=SE`9 zE%$D={1r@A4vTsnG4J9Q^)pOsw<hjccSGKDTFTkv-v3eAxkrWL8C*@3Ii(!4c^`kh z;+c3_c!Pb?oFLt;Yzpg+Z!Ef&d`$D|2Vs|N+20kVhaODHvi->MlH<_?Bh8%3Ll#S= zo^>WaJtp;?&31zAs+-b*4VizB<XM=8vIji#XV;#$SMa{_je`yX&+9%g+zhj4p1I<} zp53OWEKisx$w!A6GfXLeAN6s|1fgqeKiMk$Hh<5$$FTY97f$BLU#nJH9Sc6CdG$cC z(D#&WHchTJ$1Rph9SdF+x-sSTOW{7-K<zZ<y_;X2pP{yBMOwhmFO{jMl}*%td^x8k zx;gRa@=t0}8&h7LoaIv$^8C#HNwUrzN4A#pq`b_Yee4^z(LNccHqCYJvwT*~;5~DX z<5=;5Vj=s<t7h=_EDxGKdz;M#o%+c(vn0i~Tx+XwURlFz8tNabCgmS!DE;^0$2ki% zsvmOLuCjj?5L`Mr?U3q+C%u_diakvkx7jc~uypgi$~z&e=cdN<fXd{nlSQtVhF%g) z|9c`({(OtHuCHa{QQ?=q!PCvxHt_k*6cPSE(?q3a-W~1!N+o6E`OeXYD$aiMyIp<r zlfw%0v*z=zKiSkLFK+Mm_rXM$+EWX41vL$Yx9`*CZ<%zrSV(_`_^p71rBAlJO054N zu60A{+$j~-llwC-Y4=ayyI%VD<d%Y$vsNx|J!0O{w4C|>)2OMFce>~H)~x%(x82*G z_5JhwH%tY;uI{PY@%W(oeAaqvK7WyqH@><&p0f4$wdYbL=QR!}%Nd_+**RnOvWUBR z)&b0)ukLUDE`Me&Yr@B4+cftYE<Clcw*RoOt4*2hMT^w88^7*kyKBs4aIz&bd2;^x znnTk!C;!<{bl~Z=_fK!?SLlEFcj(gBXA_IlBY%JG-!@sMUHw-yRO`#_-%g&oY&P@D zze`{LPmP%;%l$2O&AUS(-w*DqIHD}KTduyR>cxZl-m?$3#$TFaH#3-DeLdUlqsnq0 zzZ?@*d1bndA!5OW&`qZzj(@ZMUKh^)F6`mq^-bJD{S`-&?_d5{p*H8H-TO~!tJey* zRvOr4{rG79!f2|V+{cdN^VF}^S46CNcjy!&!_=MLIzHkW^Xwbe@9$nL*k5r(`10kA zMlUz+I^Ov^c}}qS?QPpjZ@w<qI9GqK#`gBj)NXg1M;l+i+|}|SWMQ%GyR8M+YyQ1m zC$1>>v17UUJmvLOeQ7m8N0jA09{FC<6BvJQ*2Arbc=qS4-JaW@wr79Sq4g`lUO0Do z;)?%!>JH>?zEjx5%4NXIUCg>}<54EouB*{8Rj)-$H=kzh1X=aGP+`*9^9jAaVykzH ztlrM><IBJEuU`F-Ed6|Re^V{UqA$lDe_zpFXQ~;Iu(#;IqhIDz)`|Sw_o1-F{9}i^ zjqQgP?|4(kxuM6H9<t8*x^e!~H8LjbyY%M<JzaWg^EpkByUXPq1%6Ha&+z-|%3BQg T-+W|XU|{fc^>bP0l+XkKg8z_n literal 0 HcmV?d00001 diff --git a/MrBigsock/Assets/Resources/Sprites/Item/coffee.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/coffee.png.meta new file mode 100644 index 00000000..47e4f1ed --- /dev/null +++ b/MrBigsock/Assets/Resources/Sprites/Item/coffee.png.meta @@ -0,0 +1,145 @@ +fileFormatVersion: 2 +guid: 8f2199ff336579b40a72e81b29a26ea2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 16 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: coffee_0 + rect: + serializedVersion: 2 + x: 107 + y: 0 + width: 19 + height: 19 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0863da5608d79a242839f94c1263717b + internalID: -1441320517 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + coffee_0: -1441320517 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png b/MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png new file mode 100644 index 0000000000000000000000000000000000000000..68d21865ceb654d2fa2aa14920126573a3eabfbf GIT binary patch literal 1152 zcmeAS@N?(olHy`uVBq!ia0y~yU~phyU?|{VV_;xdCtOy{z`)|}>EaktaqDgL*)9=7 zfqUtaA0Nnl(bD^OM}&2+ZiTSCWBxCmUGBBafgfJ^+EhkeY<`gVQS^%zhfxr3e6;YS zlF*>sa-+}>hI8kISlyq#WO;CKZNY<Q&z>F2*?cpn_{H7&j0aDSwKB@f&$-{Yg<1DE zKkuKPUz2~o`*ND^#T<};yL6ys`2%~ig0k<Q8ZPnOv9GgVaOMB2$JNYUf9vPRNe7tx zQdlS2I9Xp1g2THfDDnTPsWZIo(PdNc=hNg9_A2~$DocZ($WLNl_RHSPL3AgFhBvFi zq8OGbOPK@$^_WftF|L>&!!qS4(+5HJ%C|fWi4(4$V-R42FvU3qR!KN*W^<h9{Fwif zjMV>2|I+6#%bKqi{jt2bxcGBL!*OOCxd$H^`q|&4+9+(*TqWqRi~mG!R~E~KZ}z)% z^<FaE7n}a$b8ca${e7|3tQT^clmE@iEjSaunb+^@{wlUNUxhU8d2g0n(97Cl>>$m( z;Z^;Y&Q;$!H<{L(Z?84kRm?Q$bN1);YV{QrsVsWatoEDL3xE0(uMneC8uz&V^$Yo; ze;ccW{ztMfbl$M+WLR<9dc7b+sp`MYoC3{m3{Jfah9;^FQw}_0@^GDS=SY!~#~*P; zeL=^fj~C)^|D40IdGho-7rp;%o%=t(yiT)oQg^YC_mA0K0aYKD{ypoGar6G!v%cvf z)~DC*Ua70eG-2smeZP7CCr`S)db!6FmKj;~rcZ+BmN3RN^s(OfUET1XYsXFqFwMCY z^C*vFfsg-8{`0Z7{8YVzWuNfO<k~30I8Vr(^U}uYOD$IT1wOkWqL>xp)$l4xP$59g zVxM!Gh3w_691km3X`hpu&T+t6UGYHh^&plY4o-&}o`z>Pd>CHwNX=Jj;45G<RX&j} zSSzkKwIJ=#{Wo$OzHmJHwesn-sA<c*7nHGG=}GWwkU7J;V&)-J<sDp%&t@GGVp=V5 zAc<@GfkXA}En**@vIJi?vyuON@z9}q5r*}%63@0BPn^juu&zALZ|?KWt?|yx-1WkY zhpL2Hly^+oKa;`R_hG0`<Fr6s2l0;$rW_kGYz{azEPKo-_8mlSynbfc0oDvVxqwdw z2SK!e-C18nHHXU|8T1(BAKobRYS?;&Ic`p@e38Jm{C>6%OL+FU*mg6BePnp0AgIt_ z(b!@0>szJDv|D`b{}kqaHWxgQ#PxalT*E4XhJDIRECSrD8eh!?7j#!RyeYTe+TE4g zwyT5PV?N`qKK3a#>?MNyD|kCiW%)PUIBF`(|KShAc_bpk+@9ff%-QEpgns;b`1RY_ z&Fae6=ExuT{_|2%7=zOJiNXhyxUTmkXeoX9`|Yyqihpv;^*b!IoLhE&Vy@W2cKk(! z#L0*2-?n^Ys5#&HxyZ+7BSVYjXJ&&{v;4XLKM{IxB+!rZLXC}r8iTmf_sJJsZ5Dh> m-|(}dp_M_7KSQLRF<<WejN`A{9x*U5FnGH9xvX<aXaWEs&IS$u literal 0 HcmV?d00001 diff --git a/MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png.meta new file mode 100644 index 00000000..4a70b5a6 --- /dev/null +++ b/MrBigsock/Assets/Resources/Sprites/Item/elixirofspeed.png.meta @@ -0,0 +1,169 @@ +fileFormatVersion: 2 +guid: 97451641256620a45a7d902a82eb7d58 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 16 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: chest_3 + rect: + serializedVersion: 2 + x: 48 + y: 96 + width: 16 + height: 16 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a8e6efcf64d196846befa21a2890a76a + internalID: -1310151336 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + chest_18: 76109953 + chest_7: -866377811 + chest_0: 1856409934 + chest_21: 1005141044 + chest_22: -240853165 + chest_3: -1310151336 + chest_10: -1593485246 + chest_24: 746258729 + chest_15: 769776556 + chest_16: 453606183 + chest_13: 447216546 + chest_8: 992366502 + chest_19: -239743868 + chest_20: 617207669 + chest_23: 1205359815 + chest_5: 107204761 + chest_14: -1476513711 + chest_6: -1448534554 + chest_1: -698650373 + chest_17: 2077912087 + chest_11: -407677634 + chest_12: 407419430 + chest_9: -348577375 + chest_4: 1342639699 + chest_2: 616990432 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/MrBigsock/Assets/Resources/Sprites/Item/foureyes.png b/MrBigsock/Assets/Resources/Sprites/Item/foureyes.png new file mode 100644 index 0000000000000000000000000000000000000000..c03777e230ef0acdd5aff430589ab747876ac71c GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s77>k44ofy`glX=O&z>whS z;uvD#e{@nH7lQ(a^VfgvW=2YZ+S-ct?RMJ~4?TYH*memchXRXn^`(QNF76g>6|x~7 zB?W8=b2}v3a?f6!*1$KBVQnts)s7R%Ui1GRe6`}U+q#V8dvUka<7WSOzkuOtqMTq; TK-N751_lOCS3j3^P6<r_z;QY5 literal 0 HcmV?d00001 diff --git a/MrBigsock/Assets/Resources/Sprites/Item/foureyes.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/foureyes.png.meta new file mode 100644 index 00000000..d7dd68d6 --- /dev/null +++ b/MrBigsock/Assets/Resources/Sprites/Item/foureyes.png.meta @@ -0,0 +1,145 @@ +fileFormatVersion: 2 +guid: 4b905ca6d8388824a90f45e33958838e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 16 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: foureyes_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 16 + height: 16 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 655dd3560a03ef64c900ab4b5296b0ff + internalID: 880566551 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + foureyes_0: 880566551 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/MrBigsock/Assets/Resources/Sprites/Item/lunch.png b/MrBigsock/Assets/Resources/Sprites/Item/lunch.png new file mode 100644 index 0000000000000000000000000000000000000000..0d100f6b10d3a25f45b54a64b9605c93a088686b GIT binary patch literal 4761 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 Q1_lNOPgg&ebxsLQ0RJrhUjP6A literal 0 HcmV?d00001 diff --git a/MrBigsock/Assets/Resources/Sprites/Item/lunch.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/lunch.png.meta new file mode 100644 index 00000000..eb415963 --- /dev/null +++ b/MrBigsock/Assets/Resources/Sprites/Item/lunch.png.meta @@ -0,0 +1,145 @@ +fileFormatVersion: 2 +guid: 5ac1bfe01a62be74b976428bfe896e94 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 16 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: Foods_0 + rect: + serializedVersion: 2 + x: 0 + y: 16 + width: 16 + height: 16 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fb88e420bb13c6843ace33311ea9078b + internalID: -1040748114 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + Foods_0: -1040748114 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png b/MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png new file mode 100644 index 0000000000000000000000000000000000000000..4672611ce60f5cd96cb2750c6e824c4d0bfa6a29 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s77>k44ofy`glX=O&z)<Ds z;uvD#zw~k-*8v3%h5%cCdq?)SJaawrpG4#YZVZZ!SN!S`+%lhg_wP?{e$P0yzg_hh zhYL%GX^NXvfLG%bp%#Id6B7<`8rg^LIT5~2FC|pRc+=`_oEP_byP7<B*QuMtxUEAp vLP>6cqGfu*vs<6y7AXC_Fqh$QOWZ3?Q^AV0amyGO7#KWV{an^LB{Ts5y`@D2 literal 0 HcmV?d00001 diff --git a/MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png.meta new file mode 100644 index 00000000..c94b1832 --- /dev/null +++ b/MrBigsock/Assets/Resources/Sprites/Item/plasticstraw.png.meta @@ -0,0 +1,145 @@ +fileFormatVersion: 2 +guid: 26f37d49585023b4cb888e18fbe8eddf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 16 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: plasticstraw_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 16 + height: 16 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 39fca3deafd0a034ba4fe84a71ab7542 + internalID: -530846067 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + plasticstraw_0: -530846067 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/MrBigsock/Assets/Resources/Sprites/Item/premature.png b/MrBigsock/Assets/Resources/Sprites/Item/premature.png new file mode 100644 index 0000000000000000000000000000000000000000..3742c3153d2ba3bbd2e09271cd1f29d3ce4ff096 GIT binary patch literal 286 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s77>k44ofy`glX=O&z;MIU z#WBRfKRHE#!DM^wZ~ma7yWQP_%S0l1^g7PUOmH%db88b(4Qt!fz5hVlg6@YV4AY;z zj*CgyZL+<VS-RsYL(VKo35f%78>c*GlP>skF<iiP3u8iW{JwuJzrTFCZGS}af%aLZ z>wkXzj^DwkuaMY%pH({7^5Lw7W`}qWNV5fm{!cvDW+@(h<3Sgz$XSEi3l{bZZN0(c zaB<Jim+}=-3da~k&i-rPzgR`di7mlmc7T?PpGQh2+i_)`Bc-j85)L1Ey5pT@a)`}8 p(a7N^>Cq;1YQ+-mV`)kZ+RYadwMCZSVPIfj@O1TaS?83{1OQSYZ%_aL literal 0 HcmV?d00001 diff --git a/MrBigsock/Assets/Resources/Sprites/Item/premature.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/premature.png.meta new file mode 100644 index 00000000..cb94e1ae --- /dev/null +++ b/MrBigsock/Assets/Resources/Sprites/Item/premature.png.meta @@ -0,0 +1,145 @@ +fileFormatVersion: 2 +guid: e40e526a01f47224ebd72e2d4b93a59d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 16 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: premature_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 16 + height: 16 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 94ea58ade1ddd8941ba524448c42eeb2 + internalID: -1092222898 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + premature_0: -1092222898 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png b/MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png new file mode 100644 index 0000000000000000000000000000000000000000..2cef32f127845b17b4ac5214e244bf9e35d1014a GIT binary patch literal 7135 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 J%Q~loCIG7u>Mj5P literal 0 HcmV?d00001 diff --git a/MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png.meta new file mode 100644 index 00000000..6ecd8363 --- /dev/null +++ b/MrBigsock/Assets/Resources/Sprites/Item/runningshoes.png.meta @@ -0,0 +1,145 @@ +fileFormatVersion: 2 +guid: ad70dad86bef68d4b9c5d007b9ffd2c8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 16 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: runningshoes_0 + rect: + serializedVersion: 2 + x: 80 + y: 80 + width: 16 + height: 16 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8f66359af190951498370cfeb429db4c + internalID: -2008356127 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + runningshoes_0: -2008356127 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta index 959418ad..15af2050 100644 --- a/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta +++ b/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta @@ -581,7 +581,11 @@ TextureImporter: pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: 0, y: 4} + - {x: 0, y: -16} + - {x: 16, y: -16} + - {x: 16, y: 4} tessellationDetail: 0 bones: [] spriteID: d76be1ed7b11f6a44a42ed64755574ef @@ -602,7 +606,11 @@ TextureImporter: pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -16, y: 4} + - {x: -16, y: -16} + - {x: 16, y: -16} + - {x: 16, y: 4} tessellationDetail: 0 bones: [] spriteID: e913d1eb61c36db44b54a48ea80056d7 @@ -623,7 +631,15 @@ TextureImporter: pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -16, y: 4} + - {x: -16, y: -16} + - {x: 16, y: -16} + - {x: 16, y: 4} + - - {x: -9, y: 4} + - {x: 13, y: 4} + - {x: 13, y: -16} + - {x: -9, y: -16} tessellationDetail: 0 bones: [] spriteID: 464d7b3c235cf0f4cac86cdf34beb2f0 diff --git a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon.png.meta b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon.png.meta index 89add8b3..a00350e0 100644 --- a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon.png.meta +++ b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon.png.meta @@ -113,10 +113,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} + - {x: -8, y: -4} tessellationDetail: 0 bones: [] spriteID: bc0a1787ed5cb8342bd04f794cfb2a1a @@ -134,10 +138,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} + - {x: -8, y: -4} tessellationDetail: 0 bones: [] spriteID: 68e3a54768e5ea045ac1c2dff3cab4e0 @@ -155,10 +163,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} + - {x: -8, y: -4} tessellationDetail: 0 bones: [] spriteID: f6fab432826c0d046a83e5a950ae3166 @@ -176,7 +188,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -197,7 +209,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -218,7 +230,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -239,7 +251,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -260,7 +272,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -281,7 +293,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -302,7 +314,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -323,7 +335,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -344,7 +356,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -365,7 +377,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -386,7 +398,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -407,7 +419,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -428,10 +440,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -8, y: -1} + - {x: 8, y: -1} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: a4239a45296b80f4a86faf11e0e5828c @@ -449,10 +465,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -8, y: -1} + - {x: 8, y: -1} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: 480dec6ec0684a348a714326de31b451 @@ -470,10 +490,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -8, y: -1} + - {x: 8, y: -1} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: 495b21167f6b3fd4d922579972f1b6ab @@ -491,7 +515,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -512,7 +536,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -533,7 +557,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -554,7 +578,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -575,7 +599,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -596,7 +620,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -617,7 +641,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -638,7 +662,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -659,7 +683,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -680,10 +704,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -8, y: -1} + - {x: 8, y: -1} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: c79bbfe12c65fb24696d2fa62468b4be @@ -701,10 +729,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -8, y: -1} + - {x: 8, y: -1} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: cfaa11c808708be41a8227a53c94c7bb @@ -722,10 +754,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -8, y: -1} + - {x: 8, y: -1} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: 4d8069dc6a9194144b8a749b36bf9362 @@ -743,7 +779,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -764,7 +800,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -785,7 +821,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -806,7 +842,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -827,7 +863,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -848,7 +884,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -869,7 +905,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -890,7 +926,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -911,7 +947,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -932,7 +968,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -953,7 +989,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -974,7 +1010,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -995,10 +1031,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: 3, y: -4} + - {x: 3, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} tessellationDetail: 0 bones: [] spriteID: 302f114cdf21bcf41bb067a33eac78ad @@ -1016,10 +1056,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -8} + - {x: -3, y: -8} + - {x: -3, y: -4} + - {x: -8, y: -4} tessellationDetail: 0 bones: [] spriteID: f76ba334a7a6333449e2755ccdcea25f @@ -1037,10 +1081,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} + - {x: -8, y: -4} tessellationDetail: 0 bones: [] spriteID: 9881fa91a8e725240b67935319713c09 @@ -1058,10 +1106,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} + - {x: -8, y: -4} tessellationDetail: 0 bones: [] spriteID: f6d97ddf698b1ac47b708682454d08a5 @@ -1079,10 +1131,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -4, y: 4} + - {x: 4, y: 4} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: 808eea3cd265fc84bbe544158a5dad0a @@ -1100,10 +1156,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -3, y: 4} + - {x: 3, y: 4} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: 730499fc0651a2347ab744a7b9eca7b8 @@ -1121,10 +1181,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: 3, y: 8} + - {x: 3, y: -8} + - {x: 8, y: -8} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: a563291a358926b45b4d66ae59d25fca @@ -1142,10 +1206,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -3, y: -8} + - {x: -3, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} tessellationDetail: 0 bones: [] spriteID: 1e30bb0edb68627499dcd04ef9884eac @@ -1163,7 +1231,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1184,7 +1252,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1205,10 +1273,16 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: 3, y: 8} + - {x: 3, y: -4} + - {x: -8, y: -4} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: 052d5d89c450f9a42878932054a50c19 @@ -1226,10 +1300,16 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} + - {x: -3, y: -4} + - {x: -3, y: 8} tessellationDetail: 0 bones: [] spriteID: 3fea9c9692a4fc24e9a31a9ba5056ba0 @@ -1247,7 +1327,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1268,10 +1348,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: 3, y: 8} + - {x: 3, y: -8} + - {x: 8, y: -8} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: d442e7bcd1f277e44a247494fa851675 @@ -1289,10 +1373,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -3, y: -8} + - {x: -3, y: 8} + - {x: -8, y: 8} + - {x: -8, y: -8} tessellationDetail: 0 bones: [] spriteID: 15407da73b9c97443bc11a04287e0180 @@ -1310,10 +1398,16 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} + - {x: -3, y: -4} + - {x: -3, y: 8} tessellationDetail: 0 bones: [] spriteID: fd087ee39935470409472dd50b9f7410 @@ -1331,10 +1425,16 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: 3, y: 8} + - {x: 3, y: -4} + - {x: -8, y: -4} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: b255fcab2b253ef46b7d5bd54074536b @@ -1352,7 +1452,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1373,10 +1473,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: 8} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: 8} tessellationDetail: 0 bones: [] spriteID: 7a477f36df9ca9a4e9885ae8d66eac01 @@ -1394,7 +1498,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1415,7 +1519,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1436,7 +1540,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1457,10 +1561,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} + - {x: -8, y: -4} tessellationDetail: 0 bones: [] spriteID: f89aaff1ea7ccd844a0e0ba5603af8d0 @@ -1478,10 +1586,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} + - {x: -8, y: -4} tessellationDetail: 0 bones: [] spriteID: 4080ed98fd7a6354aaeb0dbc74da61d6 @@ -1499,7 +1611,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1520,7 +1632,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1541,7 +1653,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1562,7 +1674,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1583,7 +1695,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1604,7 +1716,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1625,7 +1737,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1646,7 +1758,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1667,7 +1779,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1688,7 +1800,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1709,7 +1821,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1730,7 +1842,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1751,7 +1863,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1772,10 +1884,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -4} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} tessellationDetail: 0 bones: [] spriteID: e8753b2ce8551154dac73185900a57fa @@ -1793,10 +1909,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -4} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} tessellationDetail: 0 bones: [] spriteID: 3fb64f1629d468a45a69f5f2d03e236f @@ -1814,10 +1934,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -4} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} tessellationDetail: 0 bones: [] spriteID: a8d64ec0744f3b64cac5cea0c22b25ac @@ -1835,10 +1959,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -4} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} tessellationDetail: 0 bones: [] spriteID: 1dd3af11184c04345ae15d2626c3fe5d @@ -1856,10 +1984,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -4} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} tessellationDetail: 0 bones: [] spriteID: 21233572fdc354640a8bd268ea347480 @@ -1877,10 +2009,14 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] - physicsShape: [] + physicsShape: + - - {x: -8, y: -4} + - {x: -8, y: -8} + - {x: 8, y: -8} + - {x: 8, y: -4} tessellationDetail: 0 bones: [] spriteID: 4f777125b847a264b98de302daca646e @@ -1898,7 +2034,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1919,7 +2055,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1940,7 +2076,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1961,7 +2097,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -1982,7 +2118,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -2003,7 +2139,7 @@ TextureImporter: width: 16 height: 16 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] diff --git a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_77.asset b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_77.asset index 51d53638..8c87b285 100644 --- a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_77.asset +++ b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_77.asset @@ -33,4 +33,4 @@ MonoBehaviour: e33: 1 m_InstancedGameObject: {fileID: 0} m_Flags: 1 - m_ColliderType: 1 + m_ColliderType: 0 diff --git a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_78.asset b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_78.asset index 8ef55b27..42c696ce 100644 --- a/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_78.asset +++ b/MrBigsock/Assets/Tilemaps/Dungeon/Dungeon_78.asset @@ -33,4 +33,4 @@ MonoBehaviour: e33: 1 m_InstancedGameObject: {fileID: 0} m_Flags: 1 - m_ColliderType: 1 + m_ColliderType: 0 diff --git a/MrBigsock/Packages/packages-lock.json b/MrBigsock/Packages/packages-lock.json index f7cc4843..3b65785c 100644 --- a/MrBigsock/Packages/packages-lock.json +++ b/MrBigsock/Packages/packages-lock.json @@ -1,11 +1,11 @@ { "dependencies": { "com.unity.2d.animation": { - "version": "7.0.7", + "version": "7.0.6", "depth": 1, "source": "registry", "dependencies": { - "com.unity.2d.common": "6.0.4", + "com.unity.2d.common": "6.0.3", "com.unity.2d.sprite": "1.0.0", "com.unity.modules.animation": "1.0.0", "com.unity.modules.uielements": "1.0.0" @@ -13,7 +13,7 @@ "url": "https://packages.unity.com" }, "com.unity.2d.common": { - "version": "6.0.4", + "version": "6.0.3", "depth": 2, "source": "registry", "dependencies": { @@ -39,12 +39,12 @@ "url": "https://packages.unity.com" }, "com.unity.2d.psdimporter": { - "version": "6.0.5", + "version": "6.0.4", "depth": 1, "source": "registry", "dependencies": { - "com.unity.2d.animation": "7.0.7", - "com.unity.2d.common": "6.0.4", + "com.unity.2d.animation": "7.0.6", + "com.unity.2d.common": "6.0.3", "com.unity.2d.sprite": "1.0.0" }, "url": "https://packages.unity.com" @@ -56,12 +56,12 @@ "dependencies": {} }, "com.unity.2d.spriteshape": { - "version": "7.0.6", + "version": "7.0.5", "depth": 1, "source": "registry", "dependencies": { "com.unity.mathematics": "1.1.0", - "com.unity.2d.common": "6.0.4", + "com.unity.2d.common": "6.0.3", "com.unity.2d.path": "5.0.2", "com.unity.modules.physics2d": "1.0.0" }, @@ -123,11 +123,11 @@ "depth": 0, "source": "builtin", "dependencies": { - "com.unity.2d.animation": "7.0.7", + "com.unity.2d.animation": "7.0.6", "com.unity.2d.pixel-perfect": "5.0.1", - "com.unity.2d.psdimporter": "6.0.5", + "com.unity.2d.psdimporter": "6.0.4", "com.unity.2d.sprite": "1.0.0", - "com.unity.2d.spriteshape": "7.0.6", + "com.unity.2d.spriteshape": "7.0.5", "com.unity.2d.tilemap": "1.0.0", "com.unity.2d.tilemap.extras": "2.2.3" } diff --git a/MrBigsock/ProjectSettings/ProjectVersion.txt b/MrBigsock/ProjectSettings/ProjectVersion.txt index 1f883d75..8d9054dc 100644 --- a/MrBigsock/ProjectSettings/ProjectVersion.txt +++ b/MrBigsock/ProjectSettings/ProjectVersion.txt @@ -1,2 +1,2 @@ -m_EditorVersion: 2021.3.10f1 -m_EditorVersionWithRevision: 2021.3.10f1 (1c7d0df0160b) +m_EditorVersion: 2021.3.9f1 +m_EditorVersionWithRevision: 2021.3.9f1 (ad3870b89536) diff --git a/MrBigsock/ProjectSettings/TagManager.asset b/MrBigsock/ProjectSettings/TagManager.asset index 31a12849..7ae2110e 100644 --- a/MrBigsock/ProjectSettings/TagManager.asset +++ b/MrBigsock/ProjectSettings/TagManager.asset @@ -11,6 +11,7 @@ TagManager: - 4 - 5 - Boss + - Chest layers: - Default - TransparentFX -- GitLab