diff --git a/Assets/Editor/SpritesheetScaler.cs b/Assets/Editor/SpritesheetScaler.cs index 9f4d4cf9b..7b9c451e0 100644 --- a/Assets/Editor/SpritesheetScaler.cs +++ b/Assets/Editor/SpritesheetScaler.cs @@ -1,78 +1,111 @@ using UnityEngine; using UnityEditor; using System.Collections.Generic; - -public class SpritesheetScaler : EditorWindow { - - Object source; - int multiplier = 1; - - // Creates a new option in "Windows" - [MenuItem ("Window/Scale spritesheet pivots and slices")] - static void Init () { - // Get existing open window or if none, make a new one: - SpritesheetScaler window = (SpritesheetScaler)EditorWindow.GetWindow (typeof (SpritesheetScaler)); - window.Show(); - } - - void OnGUI () { - GUILayout.BeginHorizontal (); - GUILayout.Label ("Source texture:", EditorStyles.boldLabel); - source = EditorGUILayout.ObjectField(source, typeof(Texture2D), false, GUILayout.Width(220)); - GUILayout.EndHorizontal (); - - GUILayout.BeginHorizontal (); - GUILayout.Label ("Multiplier:", EditorStyles.boldLabel); - multiplier = EditorGUILayout.IntField(multiplier, GUILayout.Width(220)); - GUILayout.EndHorizontal (); - - GUILayout.Space (25f); - if (GUILayout.Button ("Scale pivots and slices")) { - ScalePivotsAndSlices(); - } - } - - void ScalePivotsAndSlices() - { - if (!source || (multiplier <= 0)) { - Debug.Log("Missing one object"); - return; - } - - if (source.GetType () != typeof(Texture2D)) { - Debug.Log (source + "needs to be Texture2D!"); - return; - } - - string sourcePath = AssetDatabase.GetAssetPath(source); - TextureImporter ti1 = AssetImporter.GetAtPath(sourcePath) as TextureImporter; - bool wasReadable = ti1.isReadable; - ti1.isReadable = true; - ti1.spritePixelsPerUnit *= multiplier; - - List newData = new List (); - - Debug.Log ("Amount of slices found: " + ti1.spritesheet.Length); - - for (int i = 0; i < ti1.spritesheet.Length; i++) { - SpriteMetaData d = ti1.spritesheet[i]; - d.rect = ScaleRect(d.rect, multiplier); - d.border *= multiplier; - newData.Add(d); - } +public class SpritesheetScaler : EditorWindow +{ - ti1.spritesheet = newData.ToArray(); + Object source; + int multiplier = 1; + int inflateX = 0; + int inflateY = 0; - ti1.isReadable = wasReadable; - - AssetDatabase.ImportAsset(sourcePath, ImportAssetOptions.ForceUpdate); - } + // Creates a new option in "Windows" + [MenuItem("Window/Scale spritesheet pivots and slices")] + static void Init() + { + // Get existing open window or if none, make a new one: + SpritesheetScaler window = (SpritesheetScaler)EditorWindow.GetWindow(typeof(SpritesheetScaler)); + window.Show(); + } - Rect ScaleRect(Rect source, int mult) - { - var newRect = new Rect(); - newRect.Set(source.x * mult, source.y * mult, source.width * mult, source.height * mult); - return newRect; - } + void OnGUI() + { + GUILayout.BeginHorizontal(); + GUILayout.Label("Source texture:", EditorStyles.boldLabel); + source = EditorGUILayout.ObjectField(source, typeof(Texture2D), false, GUILayout.Width(220)); + GUILayout.EndHorizontal(); + + GUILayout.BeginHorizontal(); + GUILayout.Label("Multiplier:", EditorStyles.boldLabel); + multiplier = EditorGUILayout.IntField(multiplier, GUILayout.Width(220)); + GUILayout.EndHorizontal(); + + GUILayout.Space(5f); + GUILayout.BeginHorizontal(); + GUILayout.Label("Inflate Quads:", EditorStyles.boldLabel); + GUILayout.EndHorizontal(); + GUILayout.BeginHorizontal(); + GUILayout.Label("X", EditorStyles.label); + inflateX = EditorGUILayout.IntField(inflateX, GUILayout.Width(220/2)); + GUILayout.Label("Y", EditorStyles.label); + inflateY = EditorGUILayout.IntField(inflateY, GUILayout.Width(220/2)); + GUILayout.EndHorizontal(); + + GUILayout.Space(25f); + if (GUILayout.Button("Scale pivots and slices")) + { + ScalePivotsAndSlices(); + } + } + + void ScalePivotsAndSlices() + { + if (!source || (multiplier <= 0)) + { + Debug.Log("Missing one object"); + return; + } + + if (source.GetType() != typeof(Texture2D)) + { + Debug.Log(source + "needs to be Texture2D!"); + return; + } + + string sourcePath = AssetDatabase.GetAssetPath(source); + TextureImporter ti1 = AssetImporter.GetAtPath(sourcePath) as TextureImporter; + bool wasReadable = ti1.isReadable; + ti1.isReadable = true; + + ti1.spritePixelsPerUnit *= multiplier; + + List newData = new List(); + + Debug.Log("Amount of slices found: " + ti1.spritesheet.Length); + + for (int i = 0; i < ti1.spritesheet.Length; i++) + { + SpriteMetaData d = ti1.spritesheet[i]; + Vector2 oldPivot = Rect.NormalizedToPoint(d.rect, d.pivot) * multiplier; + d.rect = ScaleRect(d.rect, multiplier, inflateX, inflateY); + + d.border.x += d.border.x > 0 ? inflateX : 0; + d.border.y += d.border.y > 0 ? inflateY : 0; + d.border.z += d.border.z > 0 ? inflateX : 0; + d.border.w += d.border.w > 0 ? inflateY : 0; + + if (inflateX > 0 || inflateY > 0) + { + d.alignment = (int)SpriteAlignment.Custom; + d.pivot = Rect.PointToNormalized(d.rect, oldPivot); + } + + d.border *= multiplier; + newData.Add(d); + } + + ti1.spritesheet = newData.ToArray(); + + ti1.isReadable = wasReadable; + + AssetDatabase.ImportAsset(sourcePath, ImportAssetOptions.ForceUpdate); + } + + Rect ScaleRect(Rect source, int mult, int inflateX, int inflateY) + { + var newRect = new Rect(); + newRect.Set((source.x - inflateX) * mult, (source.y - inflateY) * mult, (source.width + inflateX*2) * mult, (source.height + inflateY*2) * mult); + return newRect; + } } diff --git a/Assets/Resources/Sprites/Games/FanClub/fanClub_IdolParts.png.meta b/Assets/Resources/Sprites/Games/FanClub/fanClub_IdolParts.png.meta index 39de3029e..38989099a 100644 --- a/Assets/Resources/Sprites/Games/FanClub/fanClub_IdolParts.png.meta +++ b/Assets/Resources/Sprites/Games/FanClub/fanClub_IdolParts.png.meta @@ -209,6 +209,30 @@ TextureImporter: - first: 213: 4845979151013781269 second: idol_Arm_08 + - first: + 213: -3805976302117807119 + second: idol_Shs_beat00 + - first: + 213: 4127508232476086834 + second: idol_Shs_beat01 + - first: + 213: 3350420420849732999 + second: idol_Shs_beat02 + - first: + 213: 6316182542933813096 + second: idol_Shs_peace00 + - first: + 213: 8620145076672222142 + second: idol_Shs_wink00 + - first: + 213: -6230933788977649903 + second: idol_Shs_wink01 + - first: + 213: 8222091356637492441 + second: idol_Shs_wink02 + - first: + 213: -3891623105835644282 + second: idol_Shs_squat00 externalObjects: {} serializedVersion: 11 mipmaps: @@ -301,16 +325,16 @@ TextureImporter: name: idol_Hed_neutral rect: serializedVersion: 2 - x: 39 - y: 1850 - width: 161 - height: 177 - alignment: 0 + x: 23 + y: 1842 + width: 193 + height: 193 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 2370b38482b2f7640800000000000000 internalID: 5079826356707723058 @@ -322,16 +346,16 @@ TextureImporter: name: idol_Hed_halfClose rect: serializedVersion: 2 - x: 278 - y: 1853 - width: 160 - height: 176 - alignment: 0 + x: 262 + y: 1845 + width: 192 + height: 192 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 253456fef31acf1e0800000000000000 internalID: -2162676425073278126 @@ -343,16 +367,16 @@ TextureImporter: name: idol_Hed_close rect: serializedVersion: 2 - x: 518 - y: 1852 - width: 160 - height: 177 - alignment: 0 + x: 502 + y: 1844 + width: 192 + height: 193 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 1c61f700fed7a34d0800000000000000 internalID: -3154070123560626495 @@ -364,16 +388,16 @@ TextureImporter: name: idol_Hed_startOpen rect: serializedVersion: 2 - x: 761 - y: 1850 - width: 161 - height: 177 - alignment: 0 + x: 745 + y: 1842 + width: 193 + height: 193 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 67630fb26b6273d90800000000000000 internalID: -7118178122172713354 @@ -385,16 +409,16 @@ TextureImporter: name: idol_Hed_fullOpen rect: serializedVersion: 2 - x: 999 - y: 1848 - width: 161 - height: 177 - alignment: 0 + x: 983 + y: 1840 + width: 193 + height: 193 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d2b06915409bb1240800000000000000 internalID: 4763604459074226989 @@ -406,16 +430,16 @@ TextureImporter: name: idol_Hed_open rect: serializedVersion: 2 - x: 1239 - y: 1848 - width: 161 - height: 177 - alignment: 0 + x: 1223 + y: 1840 + width: 193 + height: 193 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: b40c99e1429441db0800000000000000 internalID: -4822148881525915573 @@ -427,16 +451,16 @@ TextureImporter: name: idol_Hed_oh rect: serializedVersion: 2 - x: 1479 - y: 1850 - width: 161 - height: 176 - alignment: 0 + x: 1463 + y: 1842 + width: 193 + height: 192 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 134ca778dced6e2b0800000000000000 internalID: -5555508115992296399 @@ -448,16 +472,16 @@ TextureImporter: name: idol_Hed_frown rect: serializedVersion: 2 - x: 1718 - y: 1850 - width: 160 - height: 179 - alignment: 0 + x: 1702 + y: 1842 + width: 192 + height: 195 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: b84bd247771553140800000000000000 internalID: 4698751359723091083 @@ -469,16 +493,16 @@ TextureImporter: name: idol_Clt_body rect: serializedVersion: 2 - x: 47 - y: 1682 - width: 81 - height: 105 - alignment: 0 + x: 31 + y: 1674 + width: 113 + height: 121 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: a546779a3e30e8780800000000000000 internalID: -8678995155560733606 @@ -490,16 +514,16 @@ TextureImporter: name: idol_Hed_hair00 rect: serializedVersion: 2 - x: 35 - y: 500 - width: 169 - height: 217 - alignment: 0 + x: 19 + y: 492 + width: 201 + height: 233 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 51bf9dafbc0b442f0800000000000000 internalID: -989471627981227243 @@ -511,16 +535,16 @@ TextureImporter: name: idol_mike00 rect: serializedVersion: 2 - x: 283 - y: 614 - width: 41 - height: 83 - alignment: 0 + x: 267 + y: 606 + width: 73 + height: 99 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: ce6e4f0591c05cda0800000000000000 internalID: -5925316431864076564 @@ -532,16 +556,16 @@ TextureImporter: name: idol_Hed_hair01 rect: serializedVersion: 2 - x: 35 - y: 1506 - width: 137 - height: 107 - alignment: 0 + x: 19 + y: 1498 + width: 169 + height: 123 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d1debea81f3d002e0800000000000000 internalID: -2161494786766541539 @@ -553,16 +577,16 @@ TextureImporter: name: idol_mike01 rect: serializedVersion: 2 - x: 169 - y: 1018 - width: 43 - height: 75 - alignment: 0 + x: 153 + y: 1010 + width: 75 + height: 91 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: aa1b406439ca60c30800000000000000 internalID: 4325334240670822826 @@ -574,19 +598,19 @@ TextureImporter: name: idol_Shs_beat00 rect: serializedVersion: 2 - x: 33 - y: 1278 - width: 47 - height: 137 - alignment: 0 + x: 17 + y: 1270 + width: 79 + height: 153 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] - spriteID: 624ecf51fccfd7c60800000000000000 - internalID: 7817682494542373926 + spriteID: 1fb96b8d7b47e2bc0800000000000000 + internalID: -3805976302117807119 vertices: [] indices: edges: [] @@ -595,19 +619,19 @@ TextureImporter: name: idol_Shs_beat01 rect: serializedVersion: 2 - x: 149 - y: 1280 - width: 41 - height: 135 - alignment: 0 + x: 133 + y: 1272 + width: 73 + height: 151 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] - spriteID: 642239b86b868a470800000000000000 - internalID: 8406083837722042950 + spriteID: 232dc347edad74930800000000000000 + internalID: 4127508232476086834 vertices: [] indices: edges: [] @@ -616,19 +640,19 @@ TextureImporter: name: idol_Shs_beat02 rect: serializedVersion: 2 - x: 253 - y: 1280 - width: 35 - height: 145 - alignment: 0 + x: 237 + y: 1272 + width: 67 + height: 161 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] - spriteID: 123b6ffc9ba491c50800000000000000 - internalID: 6636417687825593121 + spriteID: 78d86f81f951f7e20800000000000000 + internalID: 3350420420849732999 vertices: [] indices: edges: [] @@ -637,19 +661,19 @@ TextureImporter: name: idol_Shs_peace00 rect: serializedVersion: 2 - x: 349 - y: 1280 - width: 75 - height: 139 - alignment: 0 + x: 333 + y: 1272 + width: 107 + height: 155 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] - spriteID: 1898fb500b96041f0800000000000000 - internalID: -1062733307327837823 + spriteID: 867e718ee8697a750800000000000000 + internalID: 6316182542933813096 vertices: [] indices: edges: [] @@ -658,19 +682,19 @@ TextureImporter: name: idol_Shs_wink00 rect: serializedVersion: 2 - x: 791 - y: 1280 - width: 61 - height: 127 - alignment: 0 + x: 775 + y: 1272 + width: 93 + height: 143 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] - spriteID: 3b8490d153ef1bac0800000000000000 - internalID: -3841009503096452941 + spriteID: eb351679648e0a770800000000000000 + internalID: 8620145076672222142 vertices: [] indices: edges: [] @@ -679,19 +703,19 @@ TextureImporter: name: idol_Shs_wink01 rect: serializedVersion: 2 - x: 647 - y: 1280 - width: 63 - height: 133 - alignment: 0 + x: 631 + y: 1272 + width: 95 + height: 149 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] - spriteID: aac14f99b2445dfb0800000000000000 - internalID: -4623714488368751446 + spriteID: 11722095bb64789a0800000000000000 + internalID: -6230933788977649903 vertices: [] indices: edges: [] @@ -700,19 +724,19 @@ TextureImporter: name: idol_Shs_wink02 rect: serializedVersion: 2 - x: 509 - y: 1280 - width: 55 - height: 137 - alignment: 0 + x: 493 + y: 1272 + width: 87 + height: 153 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] - spriteID: 55b40ffee685f13c0800000000000000 - internalID: -4386690278540424363 + spriteID: 9d4ff2fb68cba1270800000000000000 + internalID: 8222091356637492441 vertices: [] indices: edges: [] @@ -721,19 +745,19 @@ TextureImporter: name: idol_Shs_squat00 rect: serializedVersion: 2 - x: 938 - y: 1278 - width: 54 - height: 123 - alignment: 0 + x: 922 + y: 1270 + width: 86 + height: 139 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] - spriteID: b22cf328fce2c5d40800000000000000 - internalID: 5574381907556155947 + spriteID: 68ac6f8676d2ef9c0800000000000000 + internalID: -3891623105835644282 vertices: [] indices: edges: [] @@ -742,16 +766,16 @@ TextureImporter: name: idol_Shs_squat01 rect: serializedVersion: 2 - x: 1087 - y: 1278 - width: 47 - height: 135 - alignment: 0 + x: 1071 + y: 1270 + width: 79 + height: 151 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 2e310a77c9659e370800000000000000 internalID: 8352302213957161954 @@ -763,16 +787,16 @@ TextureImporter: name: idol_Shs_squat02 rect: serializedVersion: 2 - x: 1235 - y: 1278 - width: 43 - height: 149 - alignment: 0 + x: 1219 + y: 1270 + width: 75 + height: 165 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 42ac89b3eed8a38b0800000000000000 internalID: -5171665167739991516 @@ -784,16 +808,16 @@ TextureImporter: name: idol_Clt_collar rect: serializedVersion: 2 - x: 33 - y: 918 - width: 63 - height: 29 - alignment: 0 + x: 17 + y: 910 + width: 95 + height: 45 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 569a67fb6b859a370800000000000000 internalID: 8334290127345330533 @@ -805,16 +829,16 @@ TextureImporter: name: idol_Hnd_00 rect: serializedVersion: 2 - x: 33 - y: 1032 - width: 61 - height: 47 - alignment: 0 + x: 17 + y: 1024 + width: 93 + height: 63 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 63e5f2d339aa6fb70800000000000000 internalID: 8932514460299386422 @@ -826,16 +850,16 @@ TextureImporter: name: idol_Hnd_01 rect: serializedVersion: 2 - x: 291 - y: 946 - width: 71 - height: 61 - alignment: 0 + x: 275 + y: 938 + width: 103 + height: 77 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: eb882b4acbd49a780800000000000000 internalID: -8671314134912825154 @@ -847,16 +871,16 @@ TextureImporter: name: idol_Hnd_02 rect: serializedVersion: 2 - x: 443 - y: 1016 - width: 57 - height: 69 - alignment: 0 + x: 427 + y: 1008 + width: 89 + height: 85 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 6bffbbd4b3b324340800000000000000 internalID: 4846501274897350582 @@ -868,16 +892,16 @@ TextureImporter: name: idol_Hnd_03 rect: serializedVersion: 2 - x: 585 - y: 1014 - width: 59 - height: 71 - alignment: 0 + x: 569 + y: 1006 + width: 91 + height: 87 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 0f92c7be94cf2fe40800000000000000 internalID: 5688886673735952880 @@ -889,16 +913,16 @@ TextureImporter: name: idol_Hnd_04 rect: serializedVersion: 2 - x: 725 - y: 1012 - width: 69 - height: 69 - alignment: 0 + x: 709 + y: 1004 + width: 101 + height: 85 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 185083e2383b3e7c0800000000000000 internalID: -4043190664451062399 @@ -910,16 +934,16 @@ TextureImporter: name: idol_Hnd_05 rect: serializedVersion: 2 - x: 871 - y: 1016 - width: 63 - height: 63 - alignment: 0 + x: 855 + y: 1008 + width: 95 + height: 79 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 43bb8bd360b375960800000000000000 internalID: 7590600594947619636 @@ -931,16 +955,16 @@ TextureImporter: name: idol_Hnd_06 rect: serializedVersion: 2 - x: 1022 - y: 1018 - width: 53 - height: 59 - alignment: 0 + x: 1006 + y: 1010 + width: 85 + height: 75 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 87b1a3e3a0f3342f0800000000000000 internalID: -989878179865158792 @@ -952,16 +976,16 @@ TextureImporter: name: idol_Hnd_07 rect: serializedVersion: 2 - x: 1167 - y: 1024 - width: 51 - height: 53 - alignment: 0 + x: 1151 + y: 1016 + width: 83 + height: 69 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 3dd2ca2f130d9d1e0800000000000000 internalID: -2172476432286208557 @@ -973,16 +997,16 @@ TextureImporter: name: idol_Shadow rect: serializedVersion: 2 - x: 703 - y: 1160 - width: 161 - height: 49 - alignment: 0 + x: 687 + y: 1152 + width: 193 + height: 65 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 71338781a05aea580800000000000000 internalID: -8813925957938695401 @@ -994,16 +1018,16 @@ TextureImporter: name: idol_Arm_00 rect: serializedVersion: 2 - x: 35 - y: 1160 - width: 57 - height: 47 - alignment: 0 + x: 19 + y: 1152 + width: 89 + height: 63 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 0827d9eba0c905860800000000000000 internalID: 7516679348042953344 @@ -1015,16 +1039,16 @@ TextureImporter: name: idol_Arm_01 rect: serializedVersion: 2 - x: 171 - y: 1154 - width: 41 - height: 59 - alignment: 0 + x: 155 + y: 1146 + width: 73 + height: 75 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: acbdde07ef8114e30800000000000000 internalID: 4485894184933120970 @@ -1036,16 +1060,16 @@ TextureImporter: name: idol_Arm_02 rect: serializedVersion: 2 - x: 291 - y: 1078 - width: 73 - height: 135 - alignment: 0 + x: 275 + y: 1070 + width: 105 + height: 151 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 263d85eb362720a80800000000000000 internalID: -8502107373801254046 @@ -1057,16 +1081,16 @@ TextureImporter: name: idol_Arm_03 rect: serializedVersion: 2 - x: 435 - y: 1158 - width: 57 - height: 51 - alignment: 0 + x: 419 + y: 1150 + width: 89 + height: 67 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: f6d5b9cebbbc54cc0800000000000000 internalID: -3727349108590289553 @@ -1078,16 +1102,16 @@ TextureImporter: name: idol_Arm_04 rect: serializedVersion: 2 - x: 561 - y: 1166 - width: 69 - height: 41 - alignment: 0 + x: 545 + y: 1158 + width: 101 + height: 57 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 6781c4743c0d466d0800000000000000 internalID: -2998041914788538250 @@ -1099,16 +1123,16 @@ TextureImporter: name: idol_Arm_05 rect: serializedVersion: 2 - x: 923 - y: 1170 - width: 45 - height: 45 - alignment: 0 + x: 907 + y: 1162 + width: 77 + height: 61 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 5e58414e6689c9710800000000000000 internalID: 1701402326919841253 @@ -1120,16 +1144,16 @@ TextureImporter: name: ntrIdol_handCrapEffect rect: serializedVersion: 2 - x: 35 - y: 800 - width: 41 - height: 49 - alignment: 0 + x: 19 + y: 792 + width: 73 + height: 65 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d776cd784f7315b70800000000000000 internalID: 8885945063169615741 @@ -1141,16 +1165,16 @@ TextureImporter: name: fan_Face00 rect: serializedVersion: 2 - x: 271 - y: 1642 - width: 173 - height: 125 - alignment: 7 - pivot: {x: 0.5, y: 0} + x: 255 + y: 1634 + width: 205 + height: 141 + alignment: 9 + pivot: {x: 0.5, y: 0.056737587} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: bb03c62a93543f7e0800000000000000 internalID: -1732965317767057221 @@ -1162,16 +1186,16 @@ TextureImporter: name: fan_Face01 rect: serializedVersion: 2 - x: 539 - y: 1642 - width: 123 - height: 125 - alignment: 7 - pivot: {x: 0.5, y: 0} + x: 523 + y: 1634 + width: 155 + height: 141 + alignment: 9 + pivot: {x: 0.5, y: 0.056737587} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 684eb6c3eb2513a40800000000000000 internalID: 5346145209676457094 @@ -1183,16 +1207,16 @@ TextureImporter: name: fan_Face02 rect: serializedVersion: 2 - x: 781 - y: 1642 - width: 123 - height: 125 - alignment: 7 - pivot: {x: 0.5, y: 0} + x: 765 + y: 1634 + width: 155 + height: 141 + alignment: 9 + pivot: {x: 0.5, y: 0.056737587} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 04c773e9ec7f7fed0800000000000000 internalID: -2380161411252257728 @@ -1204,16 +1228,16 @@ TextureImporter: name: impact_effect rect: serializedVersion: 2 - x: 437 - y: 786 - width: 319 - height: 157 - alignment: 0 + x: 421 + y: 778 + width: 351 + height: 173 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 18c8e46fead7f7bc0800000000000000 internalID: -3783166971557802879 @@ -1225,16 +1249,16 @@ TextureImporter: name: fan_Body00 rect: serializedVersion: 2 - x: 1481 - y: 1350 - width: 155 - height: 197 - alignment: 0 + x: 1465 + y: 1342 + width: 187 + height: 213 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: c1f31fbc1e1e82d10800000000000000 internalID: 2101177586073812764 @@ -1246,16 +1270,16 @@ TextureImporter: name: fan_Body01 rect: serializedVersion: 2 - x: 997 - y: 1610 - width: 165 - height: 183 - alignment: 0 + x: 981 + y: 1602 + width: 197 + height: 199 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 4fc76534bbf26aa40800000000000000 internalID: 5379039286275767540 @@ -1267,16 +1291,16 @@ TextureImporter: name: fan_Body02 rect: serializedVersion: 2 - x: 1235 - y: 1608 - width: 167 - height: 181 - alignment: 0 + x: 1219 + y: 1600 + width: 199 + height: 197 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 4d52731da343d3e00800000000000000 internalID: 1026033717333140948 @@ -1288,16 +1312,16 @@ TextureImporter: name: fan_Body03 rect: serializedVersion: 2 - x: 1475 - y: 1608 - width: 167 - height: 179 - alignment: 0 + x: 1459 + y: 1600 + width: 199 + height: 195 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: b7404a9aab0645520800000000000000 internalID: 2689881232273310843 @@ -1309,16 +1333,16 @@ TextureImporter: name: fan_Body04 rect: serializedVersion: 2 - x: 1715 - y: 1608 - width: 167 - height: 173 - alignment: 0 + x: 1699 + y: 1600 + width: 199 + height: 189 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 4028311050dc23810800000000000000 internalID: 1743681427122389508 @@ -1330,16 +1354,16 @@ TextureImporter: name: fan_Body05 rect: serializedVersion: 2 - x: 1731 - y: 1330 - width: 139 - height: 215 - alignment: 0 + x: 1715 + y: 1322 + width: 171 + height: 231 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: de550ca8b080d3df0800000000000000 internalID: -198993962868910611 @@ -1351,16 +1375,16 @@ TextureImporter: name: fan_Body06 rect: serializedVersion: 2 - x: 1753 - y: 712 - width: 97 - height: 233 - alignment: 0 + x: 1737 + y: 704 + width: 129 + height: 249 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 2a1afccc6a840ef00800000000000000 internalID: 1143994186590036386 @@ -1372,16 +1396,16 @@ TextureImporter: name: fan_Body07 rect: serializedVersion: 2 - x: 1853 - y: 496 - width: 163 - height: 139 - alignment: 0 + x: 1837 + y: 488 + width: 195 + height: 155 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 6fa86639d87a7aa70800000000000000 internalID: 8838217020243086070 @@ -1393,16 +1417,16 @@ TextureImporter: name: fan_Arm00 rect: serializedVersion: 2 - x: 851 - y: 790 - width: 75 - height: 127 - alignment: 0 + x: 835 + y: 782 + width: 107 + height: 143 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 45544fe249b7286d0800000000000000 internalID: -2989691326247451308 @@ -1414,16 +1438,16 @@ TextureImporter: name: fan_Arm01 rect: serializedVersion: 2 - x: 993 - y: 790 - width: 75 - height: 133 - alignment: 0 + x: 977 + y: 782 + width: 107 + height: 149 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: a5340b5f385fb9430800000000000000 internalID: 3790893458473894746 @@ -1435,16 +1459,16 @@ TextureImporter: name: fan_Arm02 rect: serializedVersion: 2 - x: 1133 - y: 788 - width: 67 - height: 141 - alignment: 0 + x: 1117 + y: 780 + width: 99 + height: 157 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 81671e10b88cf3560800000000000000 internalID: 7295770420721055256 @@ -1456,16 +1480,16 @@ TextureImporter: name: fan_Arm03 rect: serializedVersion: 2 - x: 1293 - y: 776 - width: 59 - height: 173 - alignment: 0 + x: 1277 + y: 768 + width: 91 + height: 189 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: f56b0def85f06c190800000000000000 internalID: -7942644017914661281 @@ -1477,16 +1501,16 @@ TextureImporter: name: fan_Arm04 rect: serializedVersion: 2 - x: 1423 - y: 776 - width: 65 - height: 163 - alignment: 0 + x: 1407 + y: 768 + width: 97 + height: 179 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 6f89d012d0c0d2bc0800000000000000 internalID: -3806372859529553674 @@ -1498,16 +1522,16 @@ TextureImporter: name: fan_Arm05 rect: serializedVersion: 2 - x: 1699 - y: 536 - width: 93 - height: 103 - alignment: 0 + x: 1683 + y: 528 + width: 125 + height: 119 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 9f62b02ee927127f0800000000000000 internalID: -639103645387118855 @@ -1519,16 +1543,16 @@ TextureImporter: name: fan_Hand00 rect: serializedVersion: 2 - x: 1289 - y: 1002 - width: 71 - height: 91 - alignment: 0 + x: 1273 + y: 994 + width: 103 + height: 107 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 3adda2b5282571aa0800000000000000 internalID: -6190388442968695389 @@ -1540,16 +1564,16 @@ TextureImporter: name: fan_Hand01 rect: serializedVersion: 2 - x: 1437 - y: 1004 - width: 87 - height: 91 - alignment: 0 + x: 1421 + y: 996 + width: 119 + height: 107 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: dd3f33e033a696d20800000000000000 internalID: 3272263371775538141 @@ -1561,16 +1585,16 @@ TextureImporter: name: fan_Hand04 rect: serializedVersion: 2 - x: 1443 - y: 1142 - width: 71 - height: 97 - alignment: 0 + x: 1427 + y: 1134 + width: 103 + height: 113 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 64980800b24f07f60800000000000000 internalID: 8030186601130789190 @@ -1582,16 +1606,16 @@ TextureImporter: name: fan_Hand05 rect: serializedVersion: 2 - x: 1589 - y: 1148 - width: 67 - height: 93 - alignment: 0 + x: 1573 + y: 1140 + width: 99 + height: 109 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 53f4233ce88bb60a0800000000000000 internalID: -6887208281833320651 @@ -1603,16 +1627,16 @@ TextureImporter: name: fan_Hand02 rect: serializedVersion: 2 - x: 1591 - y: 1006 - width: 61 - height: 85 - alignment: 0 + x: 1575 + y: 998 + width: 93 + height: 101 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 802c1828650465af0800000000000000 internalID: -408067975929544184 @@ -1624,16 +1648,16 @@ TextureImporter: name: fan_Hand06 rect: serializedVersion: 2 - x: 1727 - y: 1140 - width: 83 - height: 93 - alignment: 0 + x: 1711 + y: 1132 + width: 115 + height: 109 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 10ef2aa445a27c250800000000000000 internalID: 5964782772993326593 @@ -1645,16 +1669,16 @@ TextureImporter: name: fan_Hand03 rect: serializedVersion: 2 - x: 1725 - y: 1006 - width: 93 - height: 73 - alignment: 0 + x: 1709 + y: 998 + width: 125 + height: 89 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 23e8ad39b561c13f0800000000000000 internalID: -928842840566755790 @@ -1666,16 +1690,16 @@ TextureImporter: name: idol_Clt_body_up rect: serializedVersion: 2 - x: 388 - y: 1496 - width: 65 - height: 67 - alignment: 0 + x: 372 + y: 1488 + width: 97 + height: 83 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 0c8ad0e1e22b459e0800000000000000 internalID: -1633484853686196032 @@ -1687,16 +1711,16 @@ TextureImporter: name: idol_Clt_body_down0 rect: serializedVersion: 2 - x: 563 - y: 1505 - width: 66 - height: 53 - alignment: 0 + x: 547 + y: 1497 + width: 98 + height: 69 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 6736bee6f63c4a8e0800000000000000 internalID: -1683005477360016522 @@ -1708,16 +1732,16 @@ TextureImporter: name: idol_Clt_body_down1 rect: serializedVersion: 2 - x: 732 - y: 1516 - width: 80 - height: 50 - alignment: 0 + x: 716 + y: 1508 + width: 112 + height: 66 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 4135e7183ac4b33a0800000000000000 internalID: -6684664956765449452 @@ -1729,16 +1753,16 @@ TextureImporter: name: psyllium rect: serializedVersion: 2 - x: 1967 - y: 1818 - width: 49 - height: 139 - alignment: 0 + x: 1951 + y: 1810 + width: 81 + height: 155 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: a7ef48d9c8177d7c0800000000000000 internalID: -4046640891417002374 @@ -1750,16 +1774,16 @@ TextureImporter: name: idol_mike02 rect: serializedVersion: 2 - x: 1505 - y: 660 - width: 59 - height: 45 - alignment: 0 + x: 1489 + y: 652 + width: 91 + height: 61 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: aaacc03768d132760800000000000000 internalID: 7431816273384491690 @@ -1771,16 +1795,16 @@ TextureImporter: name: idol_Hnd_08 rect: serializedVersion: 2 - x: 1047 - y: 1152 - width: 67 - height: 61 - alignment: 0 + x: 1031 + y: 1144 + width: 99 + height: 77 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: e38d4fa6093f1a590800000000000000 internalID: -7664577289212602306 @@ -1792,16 +1816,16 @@ TextureImporter: name: idol_Hnd_09 rect: serializedVersion: 2 - x: 1183 - y: 1152 - width: 47 - height: 67 - alignment: 0 + x: 1167 + y: 1144 + width: 79 + height: 83 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 08501e4f4fa2a09c0800000000000000 internalID: -3960305690750155392 @@ -1813,16 +1837,16 @@ TextureImporter: name: idol_Hnd_10 rect: serializedVersion: 2 - x: 1301 - y: 1152 - width: 53 - height: 69 - alignment: 0 + x: 1285 + y: 1144 + width: 85 + height: 85 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: ef5705f59286b68f0800000000000000 internalID: -546228402893326850 @@ -1834,16 +1858,16 @@ TextureImporter: name: ntrIdol_heartEffect rect: serializedVersion: 2 - x: 1569 - y: 756 - width: 67 - height: 69 - alignment: 0 + x: 1553 + y: 748 + width: 99 + height: 85 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 8a09fb4ff8680adf0800000000000000 internalID: -170988832995438424 @@ -1855,16 +1879,16 @@ TextureImporter: name: idol_Arm_06 rect: serializedVersion: 2 - x: 1359 - y: 1298 - width: 45 - height: 111 - alignment: 0 + x: 1343 + y: 1290 + width: 77 + height: 127 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: ef6c55e48322efeb0800000000000000 internalID: -4684268937190979842 @@ -1876,16 +1900,16 @@ TextureImporter: name: idol_Arm_07 rect: serializedVersion: 2 - x: 1868 - y: 1134 - width: 49 - height: 95 - alignment: 0 + x: 1852 + y: 1126 + width: 81 + height: 111 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: f85d41b325d0d3b30800000000000000 internalID: 4268582668646798735 @@ -1897,16 +1921,16 @@ TextureImporter: name: idol_Arm_08 rect: serializedVersion: 2 - x: 1872 - y: 1010 - width: 27 - height: 63 - alignment: 0 + x: 1856 + y: 1002 + width: 59 + height: 79 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 51f102ddc50604340800000000000000 internalID: 4845979151013781269 diff --git a/Assets/Resources/Sprites/Games/PajamaParty/pillow_obj.png.meta b/Assets/Resources/Sprites/Games/PajamaParty/pillow_obj.png.meta index 497862089..164a14291 100644 --- a/Assets/Resources/Sprites/Games/PajamaParty/pillow_obj.png.meta +++ b/Assets/Resources/Sprites/Games/PajamaParty/pillow_obj.png.meta @@ -361,16 +361,16 @@ TextureImporter: name: pillow_obj_0 rect: serializedVersion: 2 - x: 141 - y: 1932 - width: 116 - height: 85 - alignment: 0 + x: 125 + y: 1916 + width: 148 + height: 117 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: c8fe9efcf40bb6b40800000000000000 internalID: 5434631232189755276 @@ -382,16 +382,16 @@ TextureImporter: name: pillow_obj_1 rect: serializedVersion: 2 - x: 314 - y: 1977 - width: 107 - height: 46 - alignment: 0 + x: 298 + y: 1961 + width: 139 + height: 78 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 162b5dec3f3141170800000000000000 internalID: 8148159563688161889 @@ -403,16 +403,16 @@ TextureImporter: name: pillow_obj_2 rect: serializedVersion: 2 - x: 483 - y: 1887 - width: 106 - height: 122 - alignment: 0 + x: 467 + y: 1871 + width: 138 + height: 154 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: f593925358b5edb00800000000000000 internalID: 855221606927645023 @@ -424,16 +424,16 @@ TextureImporter: name: pillow_obj_3 rect: serializedVersion: 2 - x: 39 - y: 1699 - width: 100 - height: 154 - alignment: 0 + x: 23 + y: 1683 + width: 132 + height: 186 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 0c4ffc2d48bddb150800000000000000 internalID: 5890105251189486784 @@ -445,16 +445,16 @@ TextureImporter: name: pillow_obj_4 rect: serializedVersion: 2 - x: 210 - y: 1794 - width: 76 - height: 60 - alignment: 0 + x: 194 + y: 1778 + width: 108 + height: 92 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 7343c7161e6b1fa40800000000000000 internalID: 5400298507313361975 @@ -466,16 +466,16 @@ TextureImporter: name: pillow_obj_5 rect: serializedVersion: 2 - x: 358 - y: 1787 - width: 51 - height: 67 - alignment: 0 + x: 342 + y: 1771 + width: 83 + height: 99 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 381d239fd044fd560800000000000000 internalID: 7340660744443318659 @@ -487,16 +487,16 @@ TextureImporter: name: pillow_obj_6 rect: serializedVersion: 2 - x: 210 - y: 1591 - width: 107 - height: 132 - alignment: 0 + x: 194 + y: 1575 + width: 139 + height: 164 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 678f0219f6e24c8b0800000000000000 internalID: -5132926618584418186 @@ -508,16 +508,16 @@ TextureImporter: name: pillow_obj_7 rect: serializedVersion: 2 - x: 486 - y: 1697 - width: 147 - height: 128 - alignment: 0 + x: 470 + y: 1681 + width: 179 + height: 160 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 6c42447a70616fc60800000000000000 internalID: 7851487222493881542 @@ -529,16 +529,16 @@ TextureImporter: name: pillow_obj_8 rect: serializedVersion: 2 - x: 486 - y: 1545 - width: 168 - height: 88 - alignment: 0 + x: 470 + y: 1529 + width: 200 + height: 120 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 29ff49b8c8c404ac0800000000000000 internalID: -3873011513017696366 @@ -550,16 +550,16 @@ TextureImporter: name: pillow_obj_9 rect: serializedVersion: 2 - x: 486 - y: 1429 - width: 35 - height: 32 - alignment: 0 + x: 470 + y: 1413 + width: 67 + height: 64 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 6b6ac07fd21656530800000000000000 internalID: 3847588306704180918 @@ -571,16 +571,16 @@ TextureImporter: name: pillow_obj_10 rect: serializedVersion: 2 - x: 608 - y: 1435 - width: 17 - height: 27 - alignment: 0 + x: 592 + y: 1419 + width: 49 + height: 59 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 0e81fad4426920810800000000000000 internalID: 1730110289530001632 @@ -592,16 +592,16 @@ TextureImporter: name: pillow_obj_11 rect: serializedVersion: 2 - x: 708 - y: 1431 - width: 53 - height: 35 - alignment: 0 + x: 692 + y: 1415 + width: 85 + height: 67 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 4d661f6f7ee460460800000000000000 internalID: 7207535011840485076 @@ -613,16 +613,16 @@ TextureImporter: name: pillow_obj_12 rect: serializedVersion: 2 - x: 838 - y: 1418 - width: 31 - height: 60 - alignment: 0 + x: 822 + y: 1402 + width: 63 + height: 92 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 7ce71649e4ada54e0800000000000000 internalID: -1992039854126301497 @@ -634,16 +634,16 @@ TextureImporter: name: pillow_obj_13 rect: serializedVersion: 2 - x: 957 - y: 1427 - width: 24 - height: 42 - alignment: 0 + x: 941 + y: 1411 + width: 56 + height: 74 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 45b81067371a94f80800000000000000 internalID: -8121782935712855212 @@ -655,16 +655,16 @@ TextureImporter: name: pillow_obj_14 rect: serializedVersion: 2 - x: 1064 - y: 1431 - width: 57 - height: 137 - alignment: 0 + x: 1048 + y: 1415 + width: 89 + height: 169 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: f928d74c4f9be0800800000000000000 internalID: 580605862897091231 @@ -676,16 +676,16 @@ TextureImporter: name: pillow_obj_15 rect: serializedVersion: 2 - x: 723 - y: 1586 - width: 56 - height: 124 - alignment: 0 + x: 707 + y: 1570 + width: 88 + height: 156 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 13a68ff6f9dc5fa90800000000000000 internalID: -7280687137912493519 @@ -697,16 +697,16 @@ TextureImporter: name: pillow_obj_16 rect: serializedVersion: 2 - x: 856 - y: 1647 - width: 242 - height: 54 - alignment: 0 + x: 840 + y: 1631 + width: 274 + height: 86 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: f2f99ab38b230c470800000000000000 internalID: 8412779870784429871 @@ -718,16 +718,16 @@ TextureImporter: name: pillow_obj_17 rect: serializedVersion: 2 - x: 1173 - y: 1631 - width: 184 - height: 81 - alignment: 0 + x: 1157 + y: 1615 + width: 216 + height: 113 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 9f303e3f3ceb92640800000000000000 internalID: 5055781805519733753 @@ -739,16 +739,16 @@ TextureImporter: name: pillow_obj_18 rect: serializedVersion: 2 - x: 1423 - y: 1531 - width: 130 - height: 182 - alignment: 0 + x: 1407 + y: 1515 + width: 162 + height: 214 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 6e3a23ce82c7d16c0800000000000000 internalID: -4171041164671933466 @@ -760,16 +760,16 @@ TextureImporter: name: pillow_obj_19 rect: serializedVersion: 2 - x: 706 - y: 1774 - width: 107 - height: 235 - alignment: 2 - pivot: {x: 0.5, y: 1} - border: {x: 0, y: 0, z: 0, w: 170} + x: 690 + y: 1758 + width: 139 + height: 267 + alignment: 9 + pivot: {x: 0.5, y: 0.9400749} + border: {x: 0, y: 0, z: 0, w: 186} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 7208e24bb4a06aae0800000000000000 internalID: -1538530902438674393 @@ -781,16 +781,16 @@ TextureImporter: name: pillow_obj_20 rect: serializedVersion: 2 - x: 884 - y: 1774 - width: 106 - height: 227 - alignment: 2 - pivot: {x: 0.5, y: 1} - border: {x: 0, y: 0, z: 0, w: 162} + x: 868 + y: 1758 + width: 138 + height: 259 + alignment: 9 + pivot: {x: 0.5, y: 0.93822396} + border: {x: 0, y: 0, z: 0, w: 178} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 657bf6c14bdfb8550800000000000000 internalID: 6164299464999679830 @@ -802,16 +802,16 @@ TextureImporter: name: pillow_obj_21 rect: serializedVersion: 2 - x: 1058 - y: 1774 - width: 107 - height: 235 - alignment: 2 - pivot: {x: 0.5, y: 1} - border: {x: 0, y: 0, z: 0, w: 170} + x: 1042 + y: 1758 + width: 139 + height: 267 + alignment: 9 + pivot: {x: 0.5, y: 0.9400749} + border: {x: 0, y: 0, z: 0, w: 186} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 5aa5e085c6bb77b10800000000000000 internalID: 1979256635260820133 @@ -823,16 +823,16 @@ TextureImporter: name: pillow_obj_22 rect: serializedVersion: 2 - x: 1236 - y: 1900 - width: 105 - height: 107 - alignment: 0 + x: 1220 + y: 1884 + width: 137 + height: 139 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 8346abd6ffd79b160800000000000000 internalID: 7041798028381545528 @@ -844,16 +844,16 @@ TextureImporter: name: pillow_obj_23 rect: serializedVersion: 2 - x: 1411 - y: 1899 - width: 104 - height: 104 - alignment: 0 + x: 1395 + y: 1883 + width: 136 + height: 136 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: fef083f1c595c1a30800000000000000 internalID: 4187320005743349743 @@ -865,16 +865,16 @@ TextureImporter: name: pillow_obj_24 rect: serializedVersion: 2 - x: 1649 - y: 1939 - width: 104 - height: 44 - alignment: 0 + x: 1633 + y: 1923 + width: 136 + height: 76 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: e03b346d616ce0ad0800000000000000 internalID: -2734030122380971250 @@ -886,16 +886,16 @@ TextureImporter: name: pillow_obj_25 rect: serializedVersion: 2 - x: 1643 - y: 1833 - width: 95 - height: 34 - alignment: 0 + x: 1627 + y: 1817 + width: 127 + height: 66 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 307c1ce6fe7791a20800000000000000 internalID: 3033587694249821955 @@ -907,16 +907,16 @@ TextureImporter: name: pillow_obj_26 rect: serializedVersion: 2 - x: 1829 - y: 1939 - width: 124 - height: 46 - alignment: 0 + x: 1813 + y: 1923 + width: 156 + height: 78 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: c255e9f945154d5b0800000000000000 internalID: -5344557433884879572 @@ -928,16 +928,16 @@ TextureImporter: name: pillow_obj_27 rect: serializedVersion: 2 - x: 1831 - y: 1801 - width: 126 - height: 39 - alignment: 0 + x: 1815 + y: 1785 + width: 158 + height: 71 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d45b83af00774bfa0800000000000000 internalID: -5785868775182518963 @@ -949,16 +949,16 @@ TextureImporter: name: pillow_obj_28 rect: serializedVersion: 2 - x: 1837 - y: 1685 - width: 118 - height: 38 - alignment: 0 + x: 1821 + y: 1669 + width: 150 + height: 70 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 3cd610284cdb796e0800000000000000 internalID: -1830786071810445885 @@ -970,16 +970,16 @@ TextureImporter: name: pillow_obj_29 rect: serializedVersion: 2 - x: 1756 - y: 1530 - width: 62 - height: 48 - alignment: 0 + x: 1740 + y: 1514 + width: 94 + height: 80 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: dacb0694e6bb43a10800000000000000 internalID: 1888340226126953645 @@ -991,16 +991,16 @@ TextureImporter: name: pillow_obj_30 rect: serializedVersion: 2 - x: 1907 - y: 1510 - width: 106 - height: 122 - alignment: 0 + x: 1891 + y: 1494 + width: 138 + height: 154 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 69f641172158255b0800000000000000 internalID: -5381092290501251178 @@ -1012,16 +1012,16 @@ TextureImporter: name: pillow_obj_31 rect: serializedVersion: 2 - x: 1890 - y: 1323 - width: 28 - height: 22 - alignment: 0 + x: 1874 + y: 1307 + width: 60 + height: 54 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 83bb7e2c91387dbb0800000000000000 internalID: -4911312721956848840 @@ -1033,16 +1033,16 @@ TextureImporter: name: pillow_obj_32 rect: serializedVersion: 2 - x: 1719 - y: 1215 - width: 106 - height: 139 - alignment: 0 + x: 1703 + y: 1199 + width: 138 + height: 171 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 4ad47954b3eceb520800000000000000 internalID: 2719837978944294308 @@ -1054,16 +1054,16 @@ TextureImporter: name: pillow_obj_33 rect: serializedVersion: 2 - x: 1907 - y: 1120 - width: 106 - height: 121 - alignment: 0 + x: 1891 + y: 1104 + width: 138 + height: 153 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: bb1180839d0e8b070800000000000000 internalID: 8122489151515267515 @@ -1075,16 +1075,16 @@ TextureImporter: name: pillow_obj_34 rect: serializedVersion: 2 - x: 1719 - y: 1007 - width: 106 - height: 139 - alignment: 0 + x: 1703 + y: 991 + width: 138 + height: 171 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: c825b26e31c562140800000000000000 internalID: 4694540902116053644 @@ -1096,16 +1096,16 @@ TextureImporter: name: pillow_obj_35 rect: serializedVersion: 2 - x: 1718 - y: 799 - width: 104 - height: 138 - alignment: 0 + x: 1702 + y: 783 + width: 136 + height: 170 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d55c0aad61ac38ba0800000000000000 internalID: -6087800071768717987 @@ -1117,16 +1117,16 @@ TextureImporter: name: pillow_obj_36 rect: serializedVersion: 2 - x: 1889 - y: 763 - width: 116 - height: 293 - alignment: 0 + x: 1873 + y: 747 + width: 148 + height: 325 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: e94e9c3fd9951ef20800000000000000 internalID: 3450137324477342878 @@ -1138,16 +1138,16 @@ TextureImporter: name: pillow_obj_37 rect: serializedVersion: 2 - x: 1889 - y: 395 - width: 117 - height: 293 - alignment: 0 + x: 1873 + y: 379 + width: 149 + height: 325 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: a4b5ca6b1667a0460800000000000000 internalID: 7208704315608554314 @@ -1159,16 +1159,16 @@ TextureImporter: name: pillow_obj_38 rect: serializedVersion: 2 - x: 1731 - y: 607 - width: 75 - height: 127 - alignment: 2 - pivot: {x: 0.5, y: 1} - border: {x: 0, y: 0, z: 0, w: 80} + x: 1715 + y: 591 + width: 107 + height: 159 + alignment: 9 + pivot: {x: 0.5, y: 0.8993711} + border: {x: 0, y: 0, z: 0, w: 96} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: b7fc6329ee06e1fe0800000000000000 internalID: -1216428271571906693 @@ -1180,16 +1180,16 @@ TextureImporter: name: pillow_obj_39 rect: serializedVersion: 2 - x: 1742 - y: 514 - width: 57 - height: 27 - alignment: 0 + x: 1726 + y: 498 + width: 89 + height: 59 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 44075fdb34cc3b990800000000000000 internalID: -7371323573753515964 @@ -1201,16 +1201,16 @@ TextureImporter: name: pillow_obj_40 rect: serializedVersion: 2 - x: 1711 - y: 383 - width: 114 - height: 55 - alignment: 0 + x: 1695 + y: 367 + width: 146 + height: 87 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 4c2b339c9e3a3d000800000000000000 internalID: 59571444584264388 @@ -1222,16 +1222,16 @@ TextureImporter: name: pillow_obj_41 rect: serializedVersion: 2 - x: 1546 - y: 655 - width: 103 - height: 134 - alignment: 0 + x: 1530 + y: 639 + width: 135 + height: 166 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 439f3ed7602d98ec0800000000000000 internalID: -3564086704763307724 @@ -1243,16 +1243,16 @@ TextureImporter: name: pillow_obj_42 rect: serializedVersion: 2 - x: 1423 - y: 655 - width: 50 - height: 31 - alignment: 0 + x: 1407 + y: 639 + width: 82 + height: 63 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: e1453511b19f46720800000000000000 internalID: 2838667559800362014 @@ -1264,16 +1264,16 @@ TextureImporter: name: pillow_obj_43 rect: serializedVersion: 2 - x: 1406 - y: 447 - width: 131 - height: 146 - alignment: 0 + x: 1390 + y: 431 + width: 163 + height: 178 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: b00efcc89918640c0800000000000000 internalID: -4591840273565229045 @@ -1285,16 +1285,16 @@ TextureImporter: name: pillow_obj_44 rect: serializedVersion: 2 - x: 1599 - y: 383 - width: 50 - height: 207 - alignment: 0 + x: 1583 + y: 367 + width: 82 + height: 239 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d0f2820c4526476a0800000000000000 internalID: -6452424249974444275 @@ -1306,16 +1306,16 @@ TextureImporter: name: pillow_obj_45 rect: serializedVersion: 2 - x: 1187 - y: 1239 - width: 94 - height: 123 - alignment: 0 + x: 1171 + y: 1223 + width: 126 + height: 155 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: ae040b838b2873c20800000000000000 internalID: 3186158989124583658 @@ -1327,16 +1327,16 @@ TextureImporter: name: pillow_obj_46 rect: serializedVersion: 2 - x: 1187 - y: 1055 - width: 110 - height: 114 - alignment: 0 + x: 1171 + y: 1039 + width: 142 + height: 146 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: e72e2dbfa54cbb080800000000000000 internalID: -9170520321158880642 @@ -1348,16 +1348,16 @@ TextureImporter: name: pillow_obj_47 rect: serializedVersion: 2 - x: 1379 - y: 1115 - width: 106 - height: 244 - alignment: 0 + x: 1363 + y: 1099 + width: 138 + height: 276 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: b7481731007fe6cc0800000000000000 internalID: -3715761062835813253 @@ -1369,16 +1369,16 @@ TextureImporter: name: pillow_obj_48 rect: serializedVersion: 2 - x: 1377 - y: 958 - width: 124 - height: 83 - alignment: 0 + x: 1361 + y: 942 + width: 156 + height: 115 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: eee78d20412bbdd00800000000000000 internalID: 998587541409529582 @@ -1390,16 +1390,16 @@ TextureImporter: name: pillow_obj_49 rect: serializedVersion: 2 - x: 800 - y: 1067 - width: 118 - height: 293 - alignment: 0 + x: 784 + y: 1051 + width: 150 + height: 325 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d53e568c48454e870800000000000000 internalID: 8711180508515918685 @@ -1411,16 +1411,16 @@ TextureImporter: name: pillow_obj_50 rect: serializedVersion: 2 - x: 992 - y: 1067 - width: 118 - height: 293 - alignment: 0 + x: 976 + y: 1051 + width: 150 + height: 325 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: c19a722fbb4bf52d0800000000000000 internalID: -3287710483642603236 @@ -1432,16 +1432,16 @@ TextureImporter: name: pillow_obj_51 rect: serializedVersion: 2 - x: 976 - y: 864 - width: 83 - height: 120 - alignment: 0 + x: 960 + y: 848 + width: 115 + height: 152 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 711059150eec69c10800000000000000 internalID: 2060061342405296407 @@ -1453,16 +1453,16 @@ TextureImporter: name: pillow_obj_52 rect: serializedVersion: 2 - x: 805 - y: 950 - width: 37 - height: 37 - alignment: 0 + x: 789 + y: 934 + width: 69 + height: 69 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 6c17ced0837e0ca40800000000000000 internalID: 5386559382272897478 @@ -1474,16 +1474,16 @@ TextureImporter: name: pillow_obj_53 rect: serializedVersion: 2 - x: 804 - y: 755 - width: 97 - height: 91 - alignment: 0 + x: 788 + y: 739 + width: 129 + height: 123 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 6c946182d4db4c4e0800000000000000 internalID: -1962235398544012858 @@ -1495,16 +1495,16 @@ TextureImporter: name: pillow_obj_54 rect: serializedVersion: 2 - x: 35 - y: 1207 - width: 307 - height: 152 - alignment: 0 + x: 19 + y: 1191 + width: 339 + height: 184 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: dec42605611362350800000000000000 internalID: 5991530326170684653 @@ -1516,16 +1516,16 @@ TextureImporter: name: pillow_obj_55 rect: serializedVersion: 2 - x: 35 - y: 981 - width: 307 - height: 154 - alignment: 0 + x: 19 + y: 965 + width: 339 + height: 186 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: a10ec0e2f86bbbf40800000000000000 internalID: 5745386475710373914 @@ -1537,16 +1537,16 @@ TextureImporter: name: pillow_obj_56 rect: serializedVersion: 2 - x: 35 - y: 755 - width: 307 - height: 156 - alignment: 0 + x: 19 + y: 739 + width: 339 + height: 188 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 07afa657c0b8a98c0800000000000000 internalID: -3991725234084709776 @@ -1558,16 +1558,16 @@ TextureImporter: name: pillow_obj_57 rect: serializedVersion: 2 - x: 34 - y: 527 - width: 308 - height: 162 - alignment: 0 + x: 18 + y: 511 + width: 340 + height: 194 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 74a7bc2c58c2d9030800000000000000 internalID: 3503005038174501447 @@ -1579,16 +1579,16 @@ TextureImporter: name: pillow_obj_58 rect: serializedVersion: 2 - x: 34 - y: 302 - width: 307 - height: 163 - alignment: 0 + x: 18 + y: 286 + width: 339 + height: 195 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: e32dc8dbebc6fdf30800000000000000 internalID: 4602516910675644990 @@ -1600,16 +1600,16 @@ TextureImporter: name: pillow_obj_59 rect: serializedVersion: 2 - x: 418 - y: 1198 - width: 311 - height: 163 - alignment: 0 + x: 402 + y: 1182 + width: 343 + height: 195 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 7f889b3f2bc3758d0800000000000000 internalID: -2857748699252422409 @@ -1621,16 +1621,16 @@ TextureImporter: name: pillow_obj_60 rect: serializedVersion: 2 - x: 418 - y: 973 - width: 311 - height: 163 - alignment: 0 + x: 402 + y: 957 + width: 343 + height: 195 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 43114900b9d2dbec0800000000000000 internalID: -3549630787545198284 @@ -1642,16 +1642,16 @@ TextureImporter: name: pillow_obj_61 rect: serializedVersion: 2 - x: 419 - y: 750 - width: 310 - height: 162 - alignment: 0 + x: 403 + y: 734 + width: 342 + height: 194 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 9f7944b44c6c751a0800000000000000 internalID: -6820764564250650631 @@ -1663,16 +1663,16 @@ TextureImporter: name: pillow_obj_62 rect: serializedVersion: 2 - x: 417 - y: 548 - width: 385 - height: 137 - alignment: 0 + x: 401 + y: 532 + width: 417 + height: 169 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 64e6800b7592581b0800000000000000 internalID: -5655068300501553594 @@ -1684,16 +1684,16 @@ TextureImporter: name: pillow_obj_63 rect: serializedVersion: 2 - x: 416 - y: 334 - width: 386 - height: 113 - alignment: 0 + x: 400 + y: 318 + width: 418 + height: 145 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: db5d079c70b6dbe60800000000000000 internalID: 7979651795958945213 @@ -1705,16 +1705,16 @@ TextureImporter: name: pillow_obj_64 rect: serializedVersion: 2 - x: 881 - y: 526 - width: 309 - height: 162 - alignment: 0 + x: 865 + y: 510 + width: 341 + height: 194 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 71abfa14a28819fb0800000000000000 internalID: -4642780025770231273 @@ -1726,16 +1726,16 @@ TextureImporter: name: pillow_obj_65 rect: serializedVersion: 2 - x: 1444 - y: 34 - width: 55 - height: 347 - alignment: 0 + x: 1428 + y: 18 + width: 87 + height: 379 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 36305e41344da1b00800000000000000 internalID: 800185268390134627 @@ -1747,16 +1747,16 @@ TextureImporter: name: pillow_obj_66 rect: serializedVersion: 2 - x: 38 - y: 134 - width: 148 - height: 106 - alignment: 0 + x: 22 + y: 118 + width: 180 + height: 138 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 03eb6072ff47b1b40800000000000000 internalID: 5412048016436018736 @@ -1768,16 +1768,16 @@ TextureImporter: name: pillow_obj_67 rect: serializedVersion: 2 - x: 261 - y: 126 - width: 148 - height: 114 - alignment: 0 + x: 245 + y: 110 + width: 180 + height: 146 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d6722cdecd52d8270800000000000000 internalID: 8254295322851944301 @@ -1789,16 +1789,16 @@ TextureImporter: name: pillow_obj_68 rect: serializedVersion: 2 - x: 484 - y: 131 - width: 149 - height: 100 - alignment: 0 + x: 468 + y: 115 + width: 181 + height: 132 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 449afd4d4558256a0800000000000000 internalID: -6461955915928065724 @@ -1810,16 +1810,16 @@ TextureImporter: name: pillow_obj_69 rect: serializedVersion: 2 - x: 710 - y: 114 - width: 135 - height: 123 - alignment: 0 + x: 694 + y: 98 + width: 167 + height: 155 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 4c88a6697bff4fd40800000000000000 internalID: 5617395799205513412 @@ -1831,16 +1831,16 @@ TextureImporter: name: pillow_obj_70 rect: serializedVersion: 2 - x: 751 - y: 30 - width: 19 - height: 19 - alignment: 0 + x: 735 + y: 14 + width: 51 + height: 51 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d98e10efa4dc8e660800000000000000 internalID: 7415402508438333597 @@ -1852,16 +1852,16 @@ TextureImporter: name: pillow_obj_71 rect: serializedVersion: 2 - x: 831 - y: 30 - width: 18 - height: 18 - alignment: 0 + x: 815 + y: 14 + width: 50 + height: 50 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 379c7dd11297fac00800000000000000 internalID: 914082432521062771 @@ -1873,16 +1873,16 @@ TextureImporter: name: pillow_obj_72 rect: serializedVersion: 2 - x: 915 - y: 31 - width: 121 - height: 47 - alignment: 0 + x: 899 + y: 15 + width: 153 + height: 79 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 297359258c3d68080800000000000000 internalID: -9185421532643117166 @@ -1894,16 +1894,16 @@ TextureImporter: name: pillow_obj_73 rect: serializedVersion: 2 - x: 1107 - y: 34 - width: 153 - height: 47 - alignment: 0 + x: 1091 + y: 18 + width: 185 + height: 79 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 8eb9614d42e5aae50800000000000000 internalID: 6821368097876122600 @@ -1915,16 +1915,16 @@ TextureImporter: name: pillow_obj_74 rect: serializedVersion: 2 - x: 1333 - y: 35 - width: 37 - height: 39 - alignment: 0 + x: 1317 + y: 19 + width: 69 + height: 71 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: b05aa1e5e59338810800000000000000 internalID: 1766318556327879947 @@ -1936,16 +1936,16 @@ TextureImporter: name: pillow_obj_75 rect: serializedVersion: 2 - x: 1302 - y: 147 - width: 39 - height: 65 - alignment: 0 + x: 1286 + y: 131 + width: 71 + height: 97 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: eeb266db91d25b6e0800000000000000 internalID: -1822500885626475538 @@ -1957,16 +1957,16 @@ TextureImporter: name: pillow_obj_76 rect: serializedVersion: 2 - x: 1190 - y: 147 - width: 35 - height: 39 - alignment: 0 + x: 1174 + y: 131 + width: 67 + height: 71 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 2af9530b196d2a4a0800000000000000 internalID: -6583463784047337566 @@ -1978,16 +1978,16 @@ TextureImporter: name: pillow_obj_77 rect: serializedVersion: 2 - x: 1090 - y: 146 - width: 28 - height: 28 - alignment: 0 + x: 1074 + y: 130 + width: 60 + height: 60 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: a0aad3cb0c47a4220800000000000000 internalID: 2470915716706839050 @@ -1999,16 +1999,16 @@ TextureImporter: name: pillow_obj_78 rect: serializedVersion: 2 - x: 918 - y: 143 - width: 100 - height: 95 - alignment: 0 + x: 902 + y: 127 + width: 132 + height: 127 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: c19de2460669af0b0800000000000000 internalID: -5694073438114752228 @@ -2020,16 +2020,16 @@ TextureImporter: name: pillow_obj_79 rect: serializedVersion: 2 - x: 1555 - y: 16 - width: 195 - height: 138 - alignment: 0 + x: 1558 + y: 18 + width: 180 + height: 140 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d1a93ed2dda6df3a0800000000000000 internalID: -6630025578229294563 @@ -2041,16 +2041,16 @@ TextureImporter: name: pillow_obj_80 rect: serializedVersion: 2 - x: 1790 - y: 19 - width: 170 + x: 1782 + y: 23 + width: 180 height: 135 - alignment: 0 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 014685b29f4f87580800000000000000 internalID: -8829037718448610288 @@ -2062,16 +2062,16 @@ TextureImporter: name: pillow_obj_81 rect: serializedVersion: 2 - x: 1855 - y: 225 - width: 94 - height: 64 - alignment: 0 + x: 1839 + y: 209 + width: 126 + height: 96 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: f2830a82ad4b278d0800000000000000 internalID: -2850016765094643665 @@ -2083,16 +2083,16 @@ TextureImporter: name: pillow_obj_82 rect: serializedVersion: 2 - x: 1710 - y: 223 - width: 84 - height: 79 - alignment: 0 + x: 1694 + y: 207 + width: 116 + height: 111 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 8a609726a5719f070800000000000000 internalID: 8140563478415476392 @@ -2104,16 +2104,16 @@ TextureImporter: name: pillow_obj_83 rect: serializedVersion: 2 - x: 1570 - y: 210 - width: 74 - height: 101 - alignment: 0 + x: 1554 + y: 194 + width: 106 + height: 133 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 0e57e7a6c60ae2140800000000000000 internalID: 4696867848897590752 @@ -2125,16 +2125,16 @@ TextureImporter: name: pillow_obj_84 rect: serializedVersion: 2 - x: 1283 - y: 289 - width: 59 - height: 101 - alignment: 0 + x: 1267 + y: 273 + width: 91 + height: 133 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: a7990a955e5732bc0800000000000000 internalID: -3809071231913649798 @@ -2146,16 +2146,16 @@ TextureImporter: name: pillow_obj_85 rect: serializedVersion: 2 - x: 1143 - y: 303 - width: 82 - height: 95 - alignment: 0 + x: 1127 + y: 287 + width: 114 + height: 127 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 19bcae96361f44d80800000000000000 internalID: -8267217606664336495 @@ -2167,16 +2167,16 @@ TextureImporter: name: pillow_obj_86 rect: serializedVersion: 2 - x: 1012 - y: 303 - width: 89 - height: 93 - alignment: 0 + x: 996 + y: 287 + width: 121 + height: 125 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 11b9e49bc4a127a80800000000000000 internalID: -8470679032301708527 @@ -2188,16 +2188,16 @@ TextureImporter: name: pillow_obj_87 rect: serializedVersion: 2 - x: 871 - y: 303 - width: 96 - height: 93 - alignment: 0 + x: 855 + y: 287 + width: 128 + height: 125 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 7bbcda9db9b8cd240800000000000000 internalID: 4817879202867825591 @@ -2209,16 +2209,16 @@ TextureImporter: name: pillow_obj_88 rect: serializedVersion: 2 - x: 1267 - y: 470 - width: 39 - height: 72 - alignment: 0 + x: 1251 + y: 454 + width: 71 + height: 104 + alignment: 9 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 79313844c86c3a500800000000000000 internalID: 406386697140638615