From b849c9e426db56822de9574c5a7cfb261816df25 Mon Sep 17 00:00:00 2001 From: Jenny Crowe Date: Wed, 16 Mar 2022 02:40:53 -0700 Subject: [PATCH] Crop Stomp: HD textures! + animation tweaks --- Assets/Editor/SpritesheetScaler.cs | 78 +++ Assets/Editor/SpritesheetScaler.cs.meta | 11 + Assets/Resources/Games/cropStomp.prefab | 2 +- .../Games/CropStomp/Animations/Body/Pick.anim | 20 +- .../CropStomp/Animations/Legs/LiftBack.anim | 20 +- .../CropStomp/Animations/Legs/LiftFront.anim | 24 +- .../CropStomp/Animations/Legs/StepBack.anim | 20 +- .../CropStomp/Animations/Legs/StepFront.anim | 8 +- .../CropStomp/Animations/Legs/StompBack.anim | 18 +- .../CropStomp/Animations/Legs/StompFront.anim | 22 +- .../CropStomp/cropstompspritesheet.png.meta | 503 +++++++++--------- 11 files changed, 409 insertions(+), 317 deletions(-) create mode 100644 Assets/Editor/SpritesheetScaler.cs create mode 100644 Assets/Editor/SpritesheetScaler.cs.meta diff --git a/Assets/Editor/SpritesheetScaler.cs b/Assets/Editor/SpritesheetScaler.cs new file mode 100644 index 00000000..9f4d4cf9 --- /dev/null +++ b/Assets/Editor/SpritesheetScaler.cs @@ -0,0 +1,78 @@ +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); + } + + ti1.spritesheet = newData.ToArray(); + + ti1.isReadable = wasReadable; + + AssetDatabase.ImportAsset(sourcePath, ImportAssetOptions.ForceUpdate); + } + + 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; + } +} diff --git a/Assets/Editor/SpritesheetScaler.cs.meta b/Assets/Editor/SpritesheetScaler.cs.meta new file mode 100644 index 00000000..3b00912f --- /dev/null +++ b/Assets/Editor/SpritesheetScaler.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1392057031b1d5a4ab986a08bbbf92d8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Games/cropStomp.prefab b/Assets/Resources/Games/cropStomp.prefab index 900f626c..0ff178fa 100644 --- a/Assets/Resources/Games/cropStomp.prefab +++ b/Assets/Resources/Games/cropStomp.prefab @@ -575,7 +575,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 3306990414045802303} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0.06, z: 0} + m_LocalPosition: {x: 0, y: 0.05, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 5949227026914035662} diff --git a/Assets/Resources/Sprites/Games/CropStomp/Animations/Body/Pick.anim b/Assets/Resources/Sprites/Games/CropStomp/Animations/Body/Pick.anim index 58e5c6d4..12a5a6a8 100644 --- a/Assets/Resources/Sprites/Games/CropStomp/Animations/Body/Pick.anim +++ b/Assets/Resources/Sprites/Games/CropStomp/Animations/Body/Pick.anim @@ -20,7 +20,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0.23, y: 0.385, z: 0} + value: {x: 0.227, y: 0.42, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -29,7 +29,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.033333335 - value: {x: 0.26, y: 0.395, z: 0} + value: {x: 0.26, y: 0.433, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -38,7 +38,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.05 - value: {x: 0.26, y: 0.395, z: 0} + value: {x: 0.26, y: 0.425, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -47,7 +47,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.06666667 - value: {x: 0.285, y: 0.395, z: 0} + value: {x: 0.28, y: 0.415, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -271,7 +271,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0.23 + value: 0.227 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -298,7 +298,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.06666667 - value: 0.285 + value: 0.28 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -317,7 +317,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0.385 + value: 0.42 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -326,7 +326,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.033333335 - value: 0.395 + value: 0.433 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -335,7 +335,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.05 - value: 0.395 + value: 0.425 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -344,7 +344,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.06666667 - value: 0.395 + value: 0.415 inSlope: Infinity outSlope: Infinity tangentMode: 103 diff --git a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/LiftBack.anim b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/LiftBack.anim index dcf64988..9ca889ea 100644 --- a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/LiftBack.anim +++ b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/LiftBack.anim @@ -63,7 +63,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0.125, y: 0.125, z: 0} + value: {x: 0.13, y: 0.125, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -72,7 +72,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.05 - value: {x: 0.12, y: 0.145, z: 0} + value: {x: 0.128, y: 0.14, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -81,7 +81,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.1 - value: {x: 0.125, y: 0.155, z: 0} + value: {x: 0.136, y: 0.15, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -90,7 +90,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.15 - value: {x: 0.12, y: 0.145, z: 0} + value: {x: 0.122, y: 0.145, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -314,7 +314,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0.125 + value: 0.13 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -323,7 +323,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.05 - value: 0.12 + value: 0.128 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -332,7 +332,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: 0.125 + value: 0.136 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -341,7 +341,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.15 - value: 0.12 + value: 0.122 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -369,7 +369,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.05 - value: 0.145 + value: 0.14 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -378,7 +378,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: 0.155 + value: 0.15 inSlope: Infinity outSlope: Infinity tangentMode: 103 diff --git a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/LiftFront.anim b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/LiftFront.anim index f3d500e3..78a3e8fb 100644 --- a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/LiftFront.anim +++ b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/LiftFront.anim @@ -63,7 +63,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0.09, y: 0.085, z: 0} + value: {x: 0.098, y: 0.12, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -72,7 +72,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.05 - value: {x: 0.115, y: 0.085, z: 0} + value: {x: 0.119, y: 0.115, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -81,7 +81,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.1 - value: {x: 0.09, y: 0.115, z: 0} + value: {x: 0.096, y: 0.14, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -90,7 +90,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.15 - value: {x: 0.095, y: 0.115, z: 0} + value: {x: 0.102, y: 0.15, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -314,7 +314,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0.09 + value: 0.098 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -323,7 +323,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.05 - value: 0.115 + value: 0.119 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -332,7 +332,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: 0.09 + value: 0.096 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -341,7 +341,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.15 - value: 0.095 + value: 0.102 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -360,7 +360,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0.085 + value: 0.12 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -369,7 +369,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.05 - value: 0.085 + value: 0.115 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -378,7 +378,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: 0.115 + value: 0.14 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -387,7 +387,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.15 - value: 0.115 + value: 0.15 inSlope: Infinity outSlope: Infinity tangentMode: 103 diff --git a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StepBack.anim b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StepBack.anim index fd5da88c..6188977d 100644 --- a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StepBack.anim +++ b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StepBack.anim @@ -63,7 +63,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0.035, y: 0.02, z: 0} + value: {x: 0.039, y: 0.02, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -72,7 +72,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.016666668 - value: {x: 0, y: 0, z: 0} + value: {x: 0.004, y: -0.01, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -81,7 +81,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.05 - value: {x: 0.01, y: 0, z: 0} + value: {x: 0.015, y: 0, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -90,7 +90,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.083333336 - value: {x: 0, y: 0, z: 0} + value: {x: -0.005, y: 0.025, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -305,7 +305,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0.035 + value: 0.039 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -314,7 +314,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.016666668 - value: 0 + value: 0.004 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -323,7 +323,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.05 - value: 0.01 + value: 0.015 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -332,7 +332,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.083333336 - value: 0 + value: -0.005 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -360,7 +360,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.016666668 - value: 0 + value: -0.01 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -378,7 +378,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.083333336 - value: 0 + value: 0.025 inSlope: Infinity outSlope: Infinity tangentMode: 103 diff --git a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StepFront.anim b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StepFront.anim index fa831a27..3e950bdf 100644 --- a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StepFront.anim +++ b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StepFront.anim @@ -63,7 +63,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0.045, y: 0.06, z: 0} + value: {x: 0.045, y: 0.03, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -81,7 +81,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.05 - value: {x: 0.005, y: 0.01, z: 0} + value: {x: 0.008, y: 0.01, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -332,7 +332,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.05 - value: 0.005 + value: 0.008 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -360,7 +360,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0.06 + value: 0.03 inSlope: Infinity outSlope: Infinity tangentMode: 103 diff --git a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StompBack.anim b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StompBack.anim index b536aa2e..05c08068 100644 --- a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StompBack.anim +++ b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StompBack.anim @@ -63,7 +63,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0.2, y: -0.2, z: 0} + value: {x: 0.21, y: -0.2, z: 0} inSlope: {x: Infinity, y: Infinity, z: 0} outSlope: {x: Infinity, y: Infinity, z: 0} tangentMode: 0 @@ -72,7 +72,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.4 - value: {x: 0.1, y: -0.17, z: 0} + value: {x: 0.103, y: -0.17, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -81,7 +81,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.43333334 - value: {x: 0.045, y: -0.02, z: 0} + value: {x: 0.05, y: -0.02, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -90,7 +90,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.46666667 - value: {x: 0, y: 0.08, z: 0} + value: {x: 0.006, y: 0.04, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -314,7 +314,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0.2 + value: 0.21 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -323,7 +323,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.4 - value: 0.1 + value: 0.103 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -332,7 +332,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.43333334 - value: 0.045 + value: 0.05 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -341,7 +341,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.46666667 - value: 0 + value: 0.006 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -387,7 +387,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.46666667 - value: 0.08 + value: 0.04 inSlope: Infinity outSlope: Infinity tangentMode: 103 diff --git a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StompFront.anim b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StompFront.anim index c786ba07..98f07543 100644 --- a/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StompFront.anim +++ b/Assets/Resources/Sprites/Games/CropStomp/Animations/Legs/StompFront.anim @@ -63,7 +63,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0.2, y: -0.18, z: 0} + value: {x: 0.204, y: -0.15, z: 0} inSlope: {x: Infinity, y: Infinity, z: 0} outSlope: {x: Infinity, y: Infinity, z: 0} tangentMode: 0 @@ -72,7 +72,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.4 - value: {x: 0.1, y: -0.14, z: 0} + value: {x: 0.105, y: -0.07, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -81,7 +81,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.43333334 - value: {x: 0.055, y: 0, z: 0} + value: {x: 0.063, y: 0.03, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -90,7 +90,7 @@ AnimationClip: outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 time: 0.46666667 - value: {x: 0.02, y: 0.05, z: 0} + value: {x: 0.02, y: 0.03, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -314,7 +314,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0.2 + value: 0.204 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -323,7 +323,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.4 - value: 0.1 + value: 0.105 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -332,7 +332,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.43333334 - value: 0.055 + value: 0.063 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -360,7 +360,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -0.18 + value: -0.15 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -369,7 +369,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.4 - value: -0.14 + value: -0.07 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -378,7 +378,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.43333334 - value: 0 + value: 0.03 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -387,7 +387,7 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.46666667 - value: 0.05 + value: 0.03 inSlope: Infinity outSlope: Infinity tangentMode: 103 diff --git a/Assets/Resources/Sprites/Games/CropStomp/cropstompspritesheet.png.meta b/Assets/Resources/Sprites/Games/CropStomp/cropstompspritesheet.png.meta index 0889345d..09b7fb9a 100644 --- a/Assets/Resources/Sprites/Games/CropStomp/cropstompspritesheet.png.meta +++ b/Assets/Resources/Sprites/Games/CropStomp/cropstompspritesheet.png.meta @@ -146,6 +146,9 @@ TextureImporter: - first: 213: -1892295281007449625 second: arms_4 + - first: + 213: 3862573926363885855 + second: mole_2 externalObjects: {} serializedVersion: 11 mipmaps: @@ -176,7 +179,7 @@ TextureImporter: maxTextureSize: 2048 textureSettings: serializedVersion: 2 - filterMode: 0 + filterMode: 1 aniso: 1 mipBias: 0 wrapU: 1 @@ -190,7 +193,7 @@ TextureImporter: spriteMeshType: 1 alignment: 0 spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 + spritePixelsToUnits: 600 spriteBorder: {x: 0, y: 0, z: 0, w: 0} spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 @@ -238,16 +241,16 @@ TextureImporter: name: head_0 rect: serializedVersion: 2 - x: 382 - y: 320 - width: 99 - height: 59 + x: 2292 + y: 1920 + width: 594 + height: 354 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: cfea4ef761235d150800000000000000 internalID: 5896674359327895292 @@ -259,16 +262,16 @@ TextureImporter: name: head_1 rect: serializedVersion: 2 - x: 485 - y: 320 - width: 99 - height: 59 + x: 2910 + y: 1920 + width: 594 + height: 354 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 5ac27318c67ef8080800000000000000 internalID: -9182866661974791003 @@ -280,16 +283,16 @@ TextureImporter: name: head_2 rect: serializedVersion: 2 - x: 279 - y: 320 - width: 99 - height: 59 + x: 1674 + y: 1920 + width: 594 + height: 354 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: eca0b2c47ad55c870800000000000000 internalID: 8702464828082162382 @@ -301,16 +304,16 @@ TextureImporter: name: head_3 rect: serializedVersion: 2 - x: 176 - y: 320 - width: 99 - height: 78 + x: 1056 + y: 1920 + width: 594 + height: 468 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: dc6f3043bb9c25b40800000000000000 internalID: 5427622306803611341 @@ -322,16 +325,16 @@ TextureImporter: name: head_4 rect: serializedVersion: 2 - x: 52 - y: 320 - width: 59 - height: 99 + x: 312 + y: 1920 + width: 354 + height: 594 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 0dcd84a0868f0dff0800000000000000 internalID: -13237673149276976 @@ -343,16 +346,16 @@ TextureImporter: name: head_5 rect: serializedVersion: 2 - x: 114 - y: 320 - width: 59 - height: 99 + x: 684 + y: 1920 + width: 354 + height: 594 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: f729341df644bb150800000000000000 internalID: 5889376184759980671 @@ -364,16 +367,16 @@ TextureImporter: name: arms_0 rect: serializedVersion: 2 - x: 225 - y: 248 - width: 66 - height: 68 + x: 1350 + y: 1488 + width: 396 + height: 408 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 65bbc6c932a519820800000000000000 internalID: 2923216742134889302 @@ -385,16 +388,16 @@ TextureImporter: name: arms_1 rect: serializedVersion: 2 - x: 3 - y: 248 - width: 80 - height: 68 + x: 18 + y: 1488 + width: 480 + height: 408 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: effd2adc57b5f1bf0800000000000000 internalID: -351461684392304642 @@ -406,16 +409,16 @@ TextureImporter: name: arms_2 rect: serializedVersion: 2 - x: 87 - y: 248 - width: 65 - height: 68 + x: 522 + y: 1488 + width: 390 + height: 408 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: eba769793dff941b0800000000000000 internalID: -5671720971450025282 @@ -427,16 +430,16 @@ TextureImporter: name: arms_3 rect: serializedVersion: 2 - x: 156 - y: 248 - width: 66 - height: 68 + x: 936 + y: 1488 + width: 396 + height: 408 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: c591144a6f6ace9a0800000000000000 internalID: -6202399008548120228 @@ -448,16 +451,16 @@ TextureImporter: name: veggie_0 rect: serializedVersion: 2 - x: 364 - y: 248 - width: 49 - height: 68 + x: 2184 + y: 1488 + width: 294 + height: 408 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 3db08c751474016c0800000000000000 internalID: -4174758508601275437 @@ -469,16 +472,16 @@ TextureImporter: name: veggie_1 rect: serializedVersion: 2 - x: 417 - y: 248 - width: 48 - height: 68 + x: 2502 + y: 1488 + width: 288 + height: 408 alignment: 9 pivot: {x: 0.5, y: 0.5441176} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 5b7c6b1028467e6d0800000000000000 internalID: -2961287720435529803 @@ -490,16 +493,16 @@ TextureImporter: name: veggie_2 rect: serializedVersion: 2 - x: 469 - y: 248 - width: 49 - height: 68 + x: 2814 + y: 1488 + width: 294 + height: 408 alignment: 9 pivot: {x: 0.5, y: 0.4852941} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 95e6c309e0ae1bd40800000000000000 internalID: 5598513160068558425 @@ -511,16 +514,16 @@ TextureImporter: name: mole_0 rect: serializedVersion: 2 - x: 521 - y: 248 - width: 49 - height: 48 + x: 3126 + y: 1488 + width: 294 + height: 288 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 611629c86e16de6c0800000000000000 internalID: -4112523241890619114 @@ -532,16 +535,16 @@ TextureImporter: name: mole_1 rect: serializedVersion: 2 - x: 574 - y: 248 - width: 48 - height: 48 + x: 3444 + y: 1488 + width: 288 + height: 288 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: acd3535369fd81a90800000000000000 internalID: -7342873356196823606 @@ -553,16 +556,16 @@ TextureImporter: name: body_0 rect: serializedVersion: 2 - x: 191 - y: 423 - width: 86 - height: 99 + x: 1146 + y: 2538 + width: 516 + height: 594 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: ea57061d480b4d9a0800000000000000 internalID: -6209143901742139986 @@ -574,16 +577,16 @@ TextureImporter: name: body_1 rect: serializedVersion: 2 - x: 12 - y: 423 - width: 86 - height: 99 + x: 72 + y: 2538 + width: 516 + height: 594 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 88395ae8b40a94150800000000000000 internalID: 5857389036748247944 @@ -595,16 +598,16 @@ TextureImporter: name: body_2 rect: serializedVersion: 2 - x: 102 - y: 423 - width: 85 - height: 99 + x: 612 + y: 2538 + width: 510 + height: 594 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: f00a389436745aae0800000000000000 internalID: -1538745205916458993 @@ -616,16 +619,16 @@ TextureImporter: name: body_3 rect: serializedVersion: 2 - x: 281 - y: 423 - width: 85 - height: 99 + x: 1686 + y: 2538 + width: 510 + height: 594 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 5a4414ed2d99054b0800000000000000 internalID: -5453690017794669403 @@ -637,16 +640,16 @@ TextureImporter: name: body_4 rect: serializedVersion: 2 - x: 371 - y: 423 - width: 85 - height: 99 + x: 2226 + y: 2538 + width: 510 + height: 594 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 45b4120a8e0cb7d80800000000000000 internalID: -8251789786874819756 @@ -658,16 +661,16 @@ TextureImporter: name: body_5 rect: serializedVersion: 2 - x: 460 - y: 423 - width: 85 - height: 99 + x: 2760 + y: 2538 + width: 510 + height: 594 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d8df878ff40d006f0800000000000000 internalID: -720346898489606771 @@ -679,16 +682,16 @@ TextureImporter: name: body_6 rect: serializedVersion: 2 - x: 549 - y: 423 - width: 86 - height: 99 + x: 3294 + y: 2538 + width: 516 + height: 594 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 2f73acf236e9938b0800000000000000 internalID: -5171928548217571342 @@ -700,16 +703,16 @@ TextureImporter: name: legs_front_down_0 rect: serializedVersion: 2 - x: 251 - y: 172 - width: 78 - height: 72 + x: 1506 + y: 1032 + width: 468 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: afa205f3b43af6c10800000000000000 internalID: 2049035899056958202 @@ -721,16 +724,16 @@ TextureImporter: name: legs_front_down_1 rect: serializedVersion: 2 - x: 168 - y: 172 - width: 79 - height: 73 + x: 1008 + y: 1032 + width: 474 + height: 438 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 04bf54645c8ffd920800000000000000 internalID: 3017403801532758848 @@ -742,16 +745,16 @@ TextureImporter: name: legs_front_down_2 rect: serializedVersion: 2 - x: 86 - y: 172 - width: 78 - height: 72 + x: 516 + y: 1032 + width: 468 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 18dd9e048635ea640800000000000000 internalID: 5093099935833382273 @@ -763,16 +766,16 @@ TextureImporter: name: legs_front_down_3 rect: serializedVersion: 2 - x: 3 - y: 172 - width: 79 - height: 72 + x: 18 + y: 1032 + width: 474 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: a63514aee89578f90800000000000000 internalID: -6951489029472693398 @@ -784,16 +787,16 @@ TextureImporter: name: legs_front_down_4 rect: serializedVersion: 2 - x: 581 - y: 172 - width: 79 - height: 72 + x: 3486 + y: 1032 + width: 474 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 7089940dac08c61d0800000000000000 internalID: -3356166013731629049 @@ -805,16 +808,16 @@ TextureImporter: name: legs_front_down_5 rect: serializedVersion: 2 - x: 498 - y: 172 - width: 79 - height: 72 + x: 2988 + y: 1032 + width: 474 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: b398d8ae5b35aa570800000000000000 internalID: 8478681289267710267 @@ -826,16 +829,16 @@ TextureImporter: name: legs_front_down_6 rect: serializedVersion: 2 - x: 416 - y: 172 - width: 78 - height: 72 + x: 2496 + y: 1032 + width: 468 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 40b5a1421b58be660800000000000000 internalID: 7416168207257066244 @@ -847,16 +850,16 @@ TextureImporter: name: legs_front_down_7 rect: serializedVersion: 2 - x: 333 - y: 172 - width: 79 - height: 72 + x: 1998 + y: 1032 + width: 474 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: d6a7134a9ffdbd820800000000000000 internalID: 2944193044711307885 @@ -868,16 +871,16 @@ TextureImporter: name: legs_front_up_0 rect: serializedVersion: 2 - x: 270 - y: 2 - width: 59 - height: 91 + x: 1620 + y: 12 + width: 354 + height: 546 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: fda8f5eccb1fa4c00800000000000000 internalID: 885786069950237407 @@ -889,16 +892,16 @@ TextureImporter: name: legs_front_up_1 rect: serializedVersion: 2 - x: 208 - y: 2 - width: 58 - height: 91 + x: 1248 + y: 12 + width: 348 + height: 546 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 1d0becc824a672400800000000000000 internalID: 299324734306169041 @@ -910,16 +913,16 @@ TextureImporter: name: legs_front_up_2 rect: serializedVersion: 2 - x: 145 - y: 2 - width: 59 - height: 91 + x: 870 + y: 12 + width: 354 + height: 546 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 309f5ddf8d0d29a50800000000000000 internalID: 6526508440403441923 @@ -931,16 +934,16 @@ TextureImporter: name: legs_front_up_3 rect: serializedVersion: 2 - x: 83 - y: 2 - width: 58 - height: 91 + x: 498 + y: 12 + width: 348 + height: 546 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 8b097091c8d52a340800000000000000 internalID: 4873560603065028792 @@ -952,16 +955,16 @@ TextureImporter: name: legs_back_down_0 rect: serializedVersion: 2 - x: 251 - y: 97 - width: 78 - height: 72 + x: 1506 + y: 582 + width: 468 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 186deb82eb5ea9500800000000000000 internalID: 403887721493223041 @@ -973,16 +976,16 @@ TextureImporter: name: legs_back_down_1 rect: serializedVersion: 2 - x: 168 - y: 97 - width: 79 - height: 72 + x: 1008 + y: 582 + width: 474 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: c93b7f8649f95f740800000000000000 internalID: 5185226005752034204 @@ -994,16 +997,16 @@ TextureImporter: name: legs_back_down_2 rect: serializedVersion: 2 - x: 85 - y: 97 - width: 79 - height: 72 + x: 510 + y: 582 + width: 474 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 075bf99d85a0af7b0800000000000000 internalID: -5189824243866552976 @@ -1015,16 +1018,16 @@ TextureImporter: name: legs_back_down_3 rect: serializedVersion: 2 - x: 3 - y: 97 - width: 79 - height: 72 + x: 18 + y: 582 + width: 474 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: e192d327f92caf820800000000000000 internalID: 2952886495766980894 @@ -1036,16 +1039,16 @@ TextureImporter: name: legs_back_down_4 rect: serializedVersion: 2 - x: 581 - y: 97 - width: 79 - height: 72 + x: 3486 + y: 582 + width: 474 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 23c1b4e405163cdc0800000000000000 internalID: -3619942677936923598 @@ -1057,16 +1060,16 @@ TextureImporter: name: legs_back_down_5 rect: serializedVersion: 2 - x: 498 - y: 97 - width: 79 - height: 72 + x: 2988 + y: 582 + width: 474 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: fcb42843492c70fb0800000000000000 internalID: -4681559345836438577 @@ -1078,16 +1081,16 @@ TextureImporter: name: legs_back_down_6 rect: serializedVersion: 2 - x: 416 - y: 97 - width: 78 - height: 72 + x: 2496 + y: 582 + width: 468 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 20d81ae17cd16af60800000000000000 internalID: 8045150525393571074 @@ -1099,16 +1102,16 @@ TextureImporter: name: legs_back_down_7 rect: serializedVersion: 2 - x: 333 - y: 97 - width: 79 - height: 72 + x: 1998 + y: 582 + width: 474 + height: 432 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: e741063fccba21390800000000000000 internalID: -7849022303808514946 @@ -1120,16 +1123,16 @@ TextureImporter: name: legs_back_up_0 rect: serializedVersion: 2 - x: 520 - y: 2 - width: 58 - height: 91 + x: 3120 + y: 12 + width: 348 + height: 546 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 4a5534d00fc32b0b0800000000000000 internalID: -5714437975467403868 @@ -1141,16 +1144,16 @@ TextureImporter: name: legs_back_up_1 rect: serializedVersion: 2 - x: 457 - y: 2 - width: 59 - height: 91 + x: 2742 + y: 12 + width: 354 + height: 546 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: ed2e8087474c53fa0800000000000000 internalID: -5821530938797399330 @@ -1162,16 +1165,16 @@ TextureImporter: name: legs_back_up_2 rect: serializedVersion: 2 - x: 395 - y: 2 - width: 58 - height: 91 + x: 2370 + y: 12 + width: 348 + height: 546 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 41c8ac4cfef4343c0800000000000000 internalID: -4376566521656603628 @@ -1183,16 +1186,16 @@ TextureImporter: name: legs_back_up_3 rect: serializedVersion: 2 - x: 332 - y: 2 - width: 59 - height: 91 + x: 1992 + y: 12 + width: 354 + height: 546 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: fb85afa7be2c34790800000000000000 internalID: -7546974233906489153 @@ -1204,16 +1207,16 @@ TextureImporter: name: grass rect: serializedVersion: 2 - x: 696 - y: 368 - width: 197 - height: 55 + x: 4176 + y: 2208 + width: 1182 + height: 330 alignment: 0 pivot: {x: 0.5, y: 0.5} - border: {x: 3, y: 5, z: 3, w: 22} + border: {x: 24, y: 30, z: 8, w: 132} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: b033ff0081a26bab0800000000000000 internalID: -4992756854309309685 @@ -1225,19 +1228,19 @@ TextureImporter: name: mole_2 rect: serializedVersion: 2 - x: 626 - y: 248 - width: 49 - height: 48 + x: 3756 + y: 1488 + width: 294 + height: 288 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] - spriteID: a984659a980848540800000000000000 - internalID: 5009270014282713242 + spriteID: f11fa9f658e9a9530800000000000000 + internalID: 3862573926363885855 vertices: [] indices: edges: [] @@ -1246,16 +1249,16 @@ TextureImporter: name: arms_4 rect: serializedVersion: 2 - x: 295 - y: 248 - width: 65 - height: 68 + x: 1770 + y: 1488 + width: 390 + height: 408 alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] - tessellationDetail: 0 + tessellationDetail: -1 bones: [] spriteID: 7e9276db7773db5e0800000000000000 internalID: -1892295281007449625