diff --git a/assets/resources/game/gui/materials/outline-blue.mtl b/assets/resources/game/gui/materials/outline-blue.mtl new file mode 100644 index 00000000..61125375 --- /dev/null +++ b/assets/resources/game/gui/materials/outline-blue.mtl @@ -0,0 +1,41 @@ +{ + "__type__": "cc.Material", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "_effectAsset": { + "__uuid__": "64e60a99-c0c5-4e55-bb76-89ab7d9bb1c7", + "__expectedType__": "cc.EffectAsset" + }, + "_techIdx": 0, + "_defines": [ + { + "USE_TEXTURE": true + } + ], + "_states": [ + { + "rasterizerState": {}, + "depthStencilState": {}, + "blendState": { + "targets": [ + {} + ] + } + } + ], + "_props": [ + { + "glowColor": { + "__type__": "cc.Color", + "r": 20, + "g": 227, + "b": 255, + "a": 255 + }, + "glowWidth": 0.002, + "glowThreshold": 0.887 + } + ] +} \ No newline at end of file diff --git a/assets/resources/game/gui/materials/outline-blue.mtl.meta b/assets/resources/game/gui/materials/outline-blue.mtl.meta new file mode 100644 index 00000000..390896a4 --- /dev/null +++ b/assets/resources/game/gui/materials/outline-blue.mtl.meta @@ -0,0 +1 @@ +{"ver":"1.0.21","importer":"material","imported":true,"uuid":"0f38817f-a8df-4547-8b37-e7ed29de8216","files":[".json"],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/gui/materials/outline-green.mtl b/assets/resources/game/gui/materials/outline-green.mtl new file mode 100644 index 00000000..19c0da5b --- /dev/null +++ b/assets/resources/game/gui/materials/outline-green.mtl @@ -0,0 +1,41 @@ +{ + "__type__": "cc.Material", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "_effectAsset": { + "__uuid__": "6ef5f656-8e02-4293-81ad-f621d747205a", + "__expectedType__": "cc.EffectAsset" + }, + "_techIdx": 0, + "_defines": [ + { + "USE_TEXTURE": true + } + ], + "_states": [ + { + "rasterizerState": {}, + "depthStencilState": {}, + "blendState": { + "targets": [ + {} + ] + } + } + ], + "_props": [ + { + "glowColor": { + "__type__": "cc.Color", + "r": 105, + "g": 255, + "b": 20, + "a": 255 + }, + "glowWidth": 0.002, + "glowThreshold": 0.887 + } + ] +} \ No newline at end of file diff --git a/assets/resources/game/gui/materials/outline-green.mtl.meta b/assets/resources/game/gui/materials/outline-green.mtl.meta new file mode 100644 index 00000000..3c40bd4a --- /dev/null +++ b/assets/resources/game/gui/materials/outline-green.mtl.meta @@ -0,0 +1 @@ +{"ver":"1.0.21","importer":"material","imported":true,"uuid":"ded728b9-6dd0-4c37-9970-9745c62aa8bf","files":[".json"],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/gui/materials/outline-yellow.mtl b/assets/resources/game/gui/materials/outline-yellow.mtl new file mode 100644 index 00000000..059bf767 --- /dev/null +++ b/assets/resources/game/gui/materials/outline-yellow.mtl @@ -0,0 +1,41 @@ +{ + "__type__": "cc.Material", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "_effectAsset": { + "__uuid__": "645285fa-29be-4ca6-8f17-05ae82ef4982", + "__expectedType__": "cc.EffectAsset" + }, + "_techIdx": 0, + "_defines": [ + { + "USE_TEXTURE": true + } + ], + "_states": [ + { + "rasterizerState": {}, + "depthStencilState": {}, + "blendState": { + "targets": [ + {} + ] + } + } + ], + "_props": [ + { + "glowColor": { + "__type__": "cc.Color", + "r": 247, + "g": 255, + "b": 46, + "a": 255 + }, + "glowWidth": 0.002, + "glowThreshold": 0.887 + } + ] +} \ No newline at end of file diff --git a/assets/resources/game/gui/materials/outline-yellow.mtl.meta b/assets/resources/game/gui/materials/outline-yellow.mtl.meta new file mode 100644 index 00000000..266cea63 --- /dev/null +++ b/assets/resources/game/gui/materials/outline-yellow.mtl.meta @@ -0,0 +1 @@ +{"ver":"1.0.21","importer":"material","imported":true,"uuid":"2b8a37ee-732c-4c5b-b6a4-136f3e581cde","files":[".json"],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/gui/shaders/builtin-sprite-outline-blue.effect b/assets/resources/game/gui/shaders/builtin-sprite-outline-blue.effect new file mode 100644 index 00000000..beb5620f --- /dev/null +++ b/assets/resources/game/gui/shaders/builtin-sprite-outline-blue.effect @@ -0,0 +1,169 @@ +// Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd. +CCEffect %{ + techniques: + - passes: + - vert: sprite-vs:vert + frag: sprite-fs:frag + depthStencilState: + depthTest: false + depthWrite: false + blendState: + targets: + - blend: true + blendSrc: src_alpha + blendDst: one_minus_src_alpha + blendDstAlpha: one_minus_src_alpha + rasterizerState: + cullMode: none + properties: + alphaThreshold: { value: 0.5 } + + glowColor: { value: [1, 1, 1, 1], editor: { type: color } } + glowWidth: { value: 0.05, editor: { slide: true, range: [0, 0.3], step: 0.001 } } + glowThreshold: { value: 1, editor: { slide: true, range: [0, 1], step: 0.001 } } +}% + +CCProgram sprite-vs %{ + precision highp float; + #include + #if USE_LOCAL + #include + #endif + #if SAMPLE_FROM_RT + #include + #endif + in vec3 a_position; + in vec2 a_texCoord; + in vec4 a_color; + + out vec4 color; + out vec2 uv0; + + vec4 vert () { + vec4 pos = vec4(a_position, 1); + + #if USE_LOCAL + pos = cc_matWorld * pos; + #endif + + #if USE_PIXEL_ALIGNMENT + pos = cc_matView * pos; + pos.xyz = floor(pos.xyz); + pos = cc_matProj * pos; + #else + pos = cc_matViewProj * pos; + #endif + + uv0 = a_texCoord; + #if SAMPLE_FROM_RT + CC_HANDLE_RT_SAMPLE_FLIP(uv0); + #endif + color = a_color; + + return pos; + } +}% + +CCProgram sprite-fs %{ + precision highp float; + #include + #include + + in vec4 color; + + uniform FSConstants { + vec4 glowColor; + float glowWidth; + float glowThreshold; + }; + + #if USE_TEXTURE + in vec2 uv0; + #pragma builtin(local) + layout(set = 2, binding = 12) uniform sampler2D cc_spriteTexture; + #endif + + vec4 getTextureColor (sampler2D mainTexture, vec2 uv) { + if (uv.x > 1.0 || uv.x < 0.0 || uv.y > 1.0 || uv.y < 0.0) { + return vec4(0.0, 0.0, 0.0, 0.0); + } + return texture(mainTexture, uv); + } + + float getColorAlpha (float angle, float dist) { + // 角度转弧度,公式为:弧度 = 角度 * (pi / 180) + float radian = angle * 3.14 / 180.0; + vec2 newUV = uv0 + vec2(dist * cos(radian), dist * sin(radian)); + vec4 color = getTextureColor(cc_spriteTexture, newUV); + return color.a; + } + + float getAverageAlpha (float dist) { + float totalAlpha = 0.0; + + totalAlpha += getColorAlpha(0.0, dist); + totalAlpha += getColorAlpha(30.0, dist); + totalAlpha += getColorAlpha(60.0, dist); + totalAlpha += getColorAlpha(90.0, dist); + totalAlpha += getColorAlpha(120.0, dist); + totalAlpha += getColorAlpha(150.0, dist); + totalAlpha += getColorAlpha(180.0, dist); + totalAlpha += getColorAlpha(210.0, dist); + totalAlpha += getColorAlpha(240.0, dist); + totalAlpha += getColorAlpha(270.0, dist); + totalAlpha += getColorAlpha(300.0, dist); + totalAlpha += getColorAlpha(330.0, dist); + + return totalAlpha * 0.0833; + } + + float getGlowAlpha () { + if (glowWidth == 0.0 ) { + return 0.0; + } + + float totalAlpha = 0.0; + totalAlpha += getAverageAlpha(glowWidth * 0.1); + totalAlpha += getAverageAlpha(glowWidth * 0.2); + totalAlpha += getAverageAlpha(glowWidth * 0.3); + totalAlpha += getAverageAlpha(glowWidth * 0.4); + totalAlpha += getAverageAlpha(glowWidth * 0.5); + totalAlpha += getAverageAlpha(glowWidth * 0.6); + totalAlpha += getAverageAlpha(glowWidth * 0.7); + totalAlpha += getAverageAlpha(glowWidth * 0.8); + totalAlpha += getAverageAlpha(glowWidth * 0.9); + totalAlpha += getAverageAlpha(glowWidth * 1.0); + + return totalAlpha * 0.1; + } + + vec4 frag () { + vec4 o = vec4(1, 1, 1, 1); + + #if USE_TEXTURE + o *= CCSampleWithAlphaSeparated(cc_spriteTexture, uv0); + #if IS_GRAY + float gray = 0.2126 * o.r + 0.7152 * o.g + 0.0722 * o.b; + o.r = o.g = o.b = gray; + #endif + #endif + + float alpha = getGlowAlpha(); + + if (alpha <= glowThreshold) { + alpha /= glowThreshold; + alpha = -1.0 * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) + 1.0; + } else { + alpha = 0.0; + } + + vec4 dstColor = glowColor * alpha; + vec4 scrColor = o; + + o = scrColor * scrColor.a + dstColor * (1.0 - scrColor.a); + + o *= color; + ALPHA_TEST(o); + return o; + } +}% diff --git a/assets/resources/game/gui/shaders/builtin-sprite-outline-blue.effect.meta b/assets/resources/game/gui/shaders/builtin-sprite-outline-blue.effect.meta new file mode 100644 index 00000000..0268c1f0 --- /dev/null +++ b/assets/resources/game/gui/shaders/builtin-sprite-outline-blue.effect.meta @@ -0,0 +1 @@ +{"ver":"1.7.1","importer":"effect","imported":true,"uuid":"64e60a99-c0c5-4e55-bb76-89ab7d9bb1c7","files":[".json"],"subMetas":{},"userData":{"combinations":[{}]}} diff --git a/assets/resources/game/gui/shaders/builtin-sprite-outline-green.effect b/assets/resources/game/gui/shaders/builtin-sprite-outline-green.effect new file mode 100644 index 00000000..beb5620f --- /dev/null +++ b/assets/resources/game/gui/shaders/builtin-sprite-outline-green.effect @@ -0,0 +1,169 @@ +// Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd. +CCEffect %{ + techniques: + - passes: + - vert: sprite-vs:vert + frag: sprite-fs:frag + depthStencilState: + depthTest: false + depthWrite: false + blendState: + targets: + - blend: true + blendSrc: src_alpha + blendDst: one_minus_src_alpha + blendDstAlpha: one_minus_src_alpha + rasterizerState: + cullMode: none + properties: + alphaThreshold: { value: 0.5 } + + glowColor: { value: [1, 1, 1, 1], editor: { type: color } } + glowWidth: { value: 0.05, editor: { slide: true, range: [0, 0.3], step: 0.001 } } + glowThreshold: { value: 1, editor: { slide: true, range: [0, 1], step: 0.001 } } +}% + +CCProgram sprite-vs %{ + precision highp float; + #include + #if USE_LOCAL + #include + #endif + #if SAMPLE_FROM_RT + #include + #endif + in vec3 a_position; + in vec2 a_texCoord; + in vec4 a_color; + + out vec4 color; + out vec2 uv0; + + vec4 vert () { + vec4 pos = vec4(a_position, 1); + + #if USE_LOCAL + pos = cc_matWorld * pos; + #endif + + #if USE_PIXEL_ALIGNMENT + pos = cc_matView * pos; + pos.xyz = floor(pos.xyz); + pos = cc_matProj * pos; + #else + pos = cc_matViewProj * pos; + #endif + + uv0 = a_texCoord; + #if SAMPLE_FROM_RT + CC_HANDLE_RT_SAMPLE_FLIP(uv0); + #endif + color = a_color; + + return pos; + } +}% + +CCProgram sprite-fs %{ + precision highp float; + #include + #include + + in vec4 color; + + uniform FSConstants { + vec4 glowColor; + float glowWidth; + float glowThreshold; + }; + + #if USE_TEXTURE + in vec2 uv0; + #pragma builtin(local) + layout(set = 2, binding = 12) uniform sampler2D cc_spriteTexture; + #endif + + vec4 getTextureColor (sampler2D mainTexture, vec2 uv) { + if (uv.x > 1.0 || uv.x < 0.0 || uv.y > 1.0 || uv.y < 0.0) { + return vec4(0.0, 0.0, 0.0, 0.0); + } + return texture(mainTexture, uv); + } + + float getColorAlpha (float angle, float dist) { + // 角度转弧度,公式为:弧度 = 角度 * (pi / 180) + float radian = angle * 3.14 / 180.0; + vec2 newUV = uv0 + vec2(dist * cos(radian), dist * sin(radian)); + vec4 color = getTextureColor(cc_spriteTexture, newUV); + return color.a; + } + + float getAverageAlpha (float dist) { + float totalAlpha = 0.0; + + totalAlpha += getColorAlpha(0.0, dist); + totalAlpha += getColorAlpha(30.0, dist); + totalAlpha += getColorAlpha(60.0, dist); + totalAlpha += getColorAlpha(90.0, dist); + totalAlpha += getColorAlpha(120.0, dist); + totalAlpha += getColorAlpha(150.0, dist); + totalAlpha += getColorAlpha(180.0, dist); + totalAlpha += getColorAlpha(210.0, dist); + totalAlpha += getColorAlpha(240.0, dist); + totalAlpha += getColorAlpha(270.0, dist); + totalAlpha += getColorAlpha(300.0, dist); + totalAlpha += getColorAlpha(330.0, dist); + + return totalAlpha * 0.0833; + } + + float getGlowAlpha () { + if (glowWidth == 0.0 ) { + return 0.0; + } + + float totalAlpha = 0.0; + totalAlpha += getAverageAlpha(glowWidth * 0.1); + totalAlpha += getAverageAlpha(glowWidth * 0.2); + totalAlpha += getAverageAlpha(glowWidth * 0.3); + totalAlpha += getAverageAlpha(glowWidth * 0.4); + totalAlpha += getAverageAlpha(glowWidth * 0.5); + totalAlpha += getAverageAlpha(glowWidth * 0.6); + totalAlpha += getAverageAlpha(glowWidth * 0.7); + totalAlpha += getAverageAlpha(glowWidth * 0.8); + totalAlpha += getAverageAlpha(glowWidth * 0.9); + totalAlpha += getAverageAlpha(glowWidth * 1.0); + + return totalAlpha * 0.1; + } + + vec4 frag () { + vec4 o = vec4(1, 1, 1, 1); + + #if USE_TEXTURE + o *= CCSampleWithAlphaSeparated(cc_spriteTexture, uv0); + #if IS_GRAY + float gray = 0.2126 * o.r + 0.7152 * o.g + 0.0722 * o.b; + o.r = o.g = o.b = gray; + #endif + #endif + + float alpha = getGlowAlpha(); + + if (alpha <= glowThreshold) { + alpha /= glowThreshold; + alpha = -1.0 * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) + 1.0; + } else { + alpha = 0.0; + } + + vec4 dstColor = glowColor * alpha; + vec4 scrColor = o; + + o = scrColor * scrColor.a + dstColor * (1.0 - scrColor.a); + + o *= color; + ALPHA_TEST(o); + return o; + } +}% diff --git a/assets/resources/game/gui/shaders/builtin-sprite-outline-green.effect.meta b/assets/resources/game/gui/shaders/builtin-sprite-outline-green.effect.meta new file mode 100644 index 00000000..8d0f7988 --- /dev/null +++ b/assets/resources/game/gui/shaders/builtin-sprite-outline-green.effect.meta @@ -0,0 +1 @@ +{"ver":"1.7.1","importer":"effect","imported":true,"uuid":"6ef5f656-8e02-4293-81ad-f621d747205a","files":[".json"],"subMetas":{},"userData":{"combinations":[{}]}} diff --git a/assets/resources/game/gui/shaders/builtin-sprite-outline-yellow.effect b/assets/resources/game/gui/shaders/builtin-sprite-outline-yellow.effect new file mode 100644 index 00000000..beb5620f --- /dev/null +++ b/assets/resources/game/gui/shaders/builtin-sprite-outline-yellow.effect @@ -0,0 +1,169 @@ +// Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd. +CCEffect %{ + techniques: + - passes: + - vert: sprite-vs:vert + frag: sprite-fs:frag + depthStencilState: + depthTest: false + depthWrite: false + blendState: + targets: + - blend: true + blendSrc: src_alpha + blendDst: one_minus_src_alpha + blendDstAlpha: one_minus_src_alpha + rasterizerState: + cullMode: none + properties: + alphaThreshold: { value: 0.5 } + + glowColor: { value: [1, 1, 1, 1], editor: { type: color } } + glowWidth: { value: 0.05, editor: { slide: true, range: [0, 0.3], step: 0.001 } } + glowThreshold: { value: 1, editor: { slide: true, range: [0, 1], step: 0.001 } } +}% + +CCProgram sprite-vs %{ + precision highp float; + #include + #if USE_LOCAL + #include + #endif + #if SAMPLE_FROM_RT + #include + #endif + in vec3 a_position; + in vec2 a_texCoord; + in vec4 a_color; + + out vec4 color; + out vec2 uv0; + + vec4 vert () { + vec4 pos = vec4(a_position, 1); + + #if USE_LOCAL + pos = cc_matWorld * pos; + #endif + + #if USE_PIXEL_ALIGNMENT + pos = cc_matView * pos; + pos.xyz = floor(pos.xyz); + pos = cc_matProj * pos; + #else + pos = cc_matViewProj * pos; + #endif + + uv0 = a_texCoord; + #if SAMPLE_FROM_RT + CC_HANDLE_RT_SAMPLE_FLIP(uv0); + #endif + color = a_color; + + return pos; + } +}% + +CCProgram sprite-fs %{ + precision highp float; + #include + #include + + in vec4 color; + + uniform FSConstants { + vec4 glowColor; + float glowWidth; + float glowThreshold; + }; + + #if USE_TEXTURE + in vec2 uv0; + #pragma builtin(local) + layout(set = 2, binding = 12) uniform sampler2D cc_spriteTexture; + #endif + + vec4 getTextureColor (sampler2D mainTexture, vec2 uv) { + if (uv.x > 1.0 || uv.x < 0.0 || uv.y > 1.0 || uv.y < 0.0) { + return vec4(0.0, 0.0, 0.0, 0.0); + } + return texture(mainTexture, uv); + } + + float getColorAlpha (float angle, float dist) { + // 角度转弧度,公式为:弧度 = 角度 * (pi / 180) + float radian = angle * 3.14 / 180.0; + vec2 newUV = uv0 + vec2(dist * cos(radian), dist * sin(radian)); + vec4 color = getTextureColor(cc_spriteTexture, newUV); + return color.a; + } + + float getAverageAlpha (float dist) { + float totalAlpha = 0.0; + + totalAlpha += getColorAlpha(0.0, dist); + totalAlpha += getColorAlpha(30.0, dist); + totalAlpha += getColorAlpha(60.0, dist); + totalAlpha += getColorAlpha(90.0, dist); + totalAlpha += getColorAlpha(120.0, dist); + totalAlpha += getColorAlpha(150.0, dist); + totalAlpha += getColorAlpha(180.0, dist); + totalAlpha += getColorAlpha(210.0, dist); + totalAlpha += getColorAlpha(240.0, dist); + totalAlpha += getColorAlpha(270.0, dist); + totalAlpha += getColorAlpha(300.0, dist); + totalAlpha += getColorAlpha(330.0, dist); + + return totalAlpha * 0.0833; + } + + float getGlowAlpha () { + if (glowWidth == 0.0 ) { + return 0.0; + } + + float totalAlpha = 0.0; + totalAlpha += getAverageAlpha(glowWidth * 0.1); + totalAlpha += getAverageAlpha(glowWidth * 0.2); + totalAlpha += getAverageAlpha(glowWidth * 0.3); + totalAlpha += getAverageAlpha(glowWidth * 0.4); + totalAlpha += getAverageAlpha(glowWidth * 0.5); + totalAlpha += getAverageAlpha(glowWidth * 0.6); + totalAlpha += getAverageAlpha(glowWidth * 0.7); + totalAlpha += getAverageAlpha(glowWidth * 0.8); + totalAlpha += getAverageAlpha(glowWidth * 0.9); + totalAlpha += getAverageAlpha(glowWidth * 1.0); + + return totalAlpha * 0.1; + } + + vec4 frag () { + vec4 o = vec4(1, 1, 1, 1); + + #if USE_TEXTURE + o *= CCSampleWithAlphaSeparated(cc_spriteTexture, uv0); + #if IS_GRAY + float gray = 0.2126 * o.r + 0.7152 * o.g + 0.0722 * o.b; + o.r = o.g = o.b = gray; + #endif + #endif + + float alpha = getGlowAlpha(); + + if (alpha <= glowThreshold) { + alpha /= glowThreshold; + alpha = -1.0 * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) + 1.0; + } else { + alpha = 0.0; + } + + vec4 dstColor = glowColor * alpha; + vec4 scrColor = o; + + o = scrColor * scrColor.a + dstColor * (1.0 - scrColor.a); + + o *= color; + ALPHA_TEST(o); + return o; + } +}% diff --git a/assets/resources/game/gui/shaders/builtin-sprite-outline-yellow.effect.meta b/assets/resources/game/gui/shaders/builtin-sprite-outline-yellow.effect.meta new file mode 100644 index 00000000..184385e0 --- /dev/null +++ b/assets/resources/game/gui/shaders/builtin-sprite-outline-yellow.effect.meta @@ -0,0 +1 @@ +{"ver":"1.7.1","importer":"effect","imported":true,"uuid":"645285fa-29be-4ca6-8f17-05ae82ef4982","files":[".json"],"subMetas":{},"userData":{"combinations":[{}]}} diff --git a/assets/resources/game/heros/ha1.prefab b/assets/resources/game/heros/ha1.prefab index 6a9c9904..f2d9c766 100644 --- a/assets/resources/game/heros/ha1.prefab +++ b/assets/resources/game/heros/ha1.prefab @@ -209,7 +209,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e3af9", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@85704", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -225,7 +225,7 @@ "_isTrimmedMode": true, "_useGrayscale": false, "_atlas": { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05", "__expectedType__": "cc.SpriteAtlas" }, "_id": "" diff --git a/assets/resources/game/heros/ha2.prefab b/assets/resources/game/heros/ha2.prefab deleted file mode 100644 index aa72ebbb..00000000 --- a/assets/resources/game/heros/ha2.prefab +++ /dev/null @@ -1,811 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "ha2", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "ha2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - }, - { - "__id__": 47 - } - ], - "_prefab": { - "__id__": 49 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -24.925, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1e4e3", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "27842cf4-9691-47b9-ae2f-a2d75599eb20", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "0917b75e-39ac-489a-ade3-a971011e4e0a", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "222a8903-2dee-4bf6-b6eb-72fd1541609b", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "a8ecc076-98b4-45c6-99e1-ab67992682fa", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "04b4ebf7-303b-495f-a3e9-640831dbb353", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f9iLivg4dHhJksWCjvY9/w" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 90.171, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 48 - }, - "playOnLoad": false, - "_clips": [], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49+IQe4gZPPYzJ/FgxeX/O" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/ha2.prefab.meta b/assets/resources/game/heros/ha2.prefab.meta deleted file mode 100644 index eae242e9..00000000 --- a/assets/resources/game/heros/ha2.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "93ae1893-59bb-4792-8034-95104f446a4e", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "ha2" - } -} diff --git a/assets/resources/game/heros/ha3.prefab b/assets/resources/game/heros/ha3.prefab deleted file mode 100644 index 3ab139b5..00000000 --- a/assets/resources/game/heros/ha3.prefab +++ /dev/null @@ -1,811 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "ha3", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "ha3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - }, - { - "__id__": 47 - } - ], - "_prefab": { - "__id__": 49 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7d01e", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "b277aa55-1679-493f-8e83-dcda712bb82d", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "a8017a4f-e079-4b37-b0ce-647a5c68e11a", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "c4f77aa9-cf65-4577-96eb-50fcb7b9ed72", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "b5e9db6a-bad1-45a4-a01a-06c81519aab9", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "70d98337-6518-4d2f-a45e-6e7e6b3fd20c", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f9iLivg4dHhJksWCjvY9/w" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 90.171, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 48 - }, - "playOnLoad": false, - "_clips": [], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49+IQe4gZPPYzJ/FgxeX/O" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/ha3.prefab.meta b/assets/resources/game/heros/ha3.prefab.meta deleted file mode 100644 index 739eb907..00000000 --- a/assets/resources/game/heros/ha3.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "9a1cd30e-f87a-4ab5-9749-d0e2db55545c", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "ha3" - } -} diff --git a/assets/resources/game/heros/hc1.prefab b/assets/resources/game/heros/hc1.prefab deleted file mode 100644 index 7235b4d8..00000000 --- a/assets/resources/game/heros/hc1.prefab +++ /dev/null @@ -1,787 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hc1", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hc1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@14e00", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "c7a0ded9-a870-4fc4-93e2-1bec11801142", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "9098ce69-33e0-41d6-ab79-274accd1fa56", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "fbf32dae-f240-47a6-9aa5-b4f8b01a87af", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "56628bc8-a6c1-4c3d-8326-8a28b03af883", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "5390adef-a142-406a-9324-2fa2baefd64e", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6cZu2rl69OR5+l1nRZerhd" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 87.191, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hc1.prefab.meta b/assets/resources/game/heros/hc1.prefab.meta deleted file mode 100644 index 4dbb1732..00000000 --- a/assets/resources/game/heros/hc1.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "dcdb138c-1ca1-4ff2-85f7-eff1225fae08", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hc1" - } -} diff --git a/assets/resources/game/heros/hero/ha1.meta b/assets/resources/game/heros/hero/a1.meta similarity index 100% rename from assets/resources/game/heros/hero/ha1.meta rename to assets/resources/game/heros/hero/a1.meta diff --git a/assets/resources/game/heros/hero/hc1/max1.anim b/assets/resources/game/heros/hero/a1/atk0.anim similarity index 71% rename from assets/resources/game/heros/hero/hc1/max1.anim rename to assets/resources/game/heros/hero/a1/atk0.anim index c1c79125..fc796275 100644 --- a/assets/resources/game/heros/hero/hc1/max1.anim +++ b/assets/resources/game/heros/hero/a1/atk0.anim @@ -1,7 +1,7 @@ [ { "__type__": "cc.AnimationClip", - "_name": "max1", + "_name": "atk0", "_objFlags": 0, "__editorExtras__": { "embeddedPlayerGroups": [] @@ -80,67 +80,67 @@ ], "_values": [ { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@48efd", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@cea12", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a8748", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@0b41a", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f3d8c", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@418e0", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7840a", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@21d56", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@329bd", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@8aa15", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6c7f7", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@98a04", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e1b56", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@ab77c", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@13af7", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@3c145", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7fd65", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@9cdac", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@80024", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@23fda", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1ddfb", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f4d14", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5bc23", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1b9a8", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@77111", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@800f0", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@11326", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@19235", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@756bc", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@345a2", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c43be", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d911c", "__expectedType__": "cc.SpriteFrame" } ] diff --git a/assets/resources/game/heros/hero/ha1/atk0.anim.meta b/assets/resources/game/heros/hero/a1/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/ha1/atk0.anim.meta rename to assets/resources/game/heros/hero/a1/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/ha1/move.anim b/assets/resources/game/heros/hero/a1/idle.anim similarity index 71% rename from assets/resources/game/heros/hero/ha1/move.anim rename to assets/resources/game/heros/hero/a1/idle.anim index 7c90b0fb..2b35693a 100644 --- a/assets/resources/game/heros/hero/ha1/move.anim +++ b/assets/resources/game/heros/hero/a1/idle.anim @@ -1,7 +1,7 @@ [ { "__type__": "cc.AnimationClip", - "_name": "move", + "_name": "idle", "_objFlags": 0, "__editorExtras__": { "embeddedPlayerGroups": [] @@ -11,7 +11,7 @@ "speed": 1, "wrapMode": 2, "enableTrsBlending": false, - "_duration": 0.5333333333333333, + "_duration": 0.6, "_hash": 500763545, "_tracks": [ { @@ -68,39 +68,44 @@ 0.26666666666666666, 0.3333333333333333, 0.4, - 0.4666666666666667 + 0.4666666666666667, + 0.5333333333333333 ], "_values": [ { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@86ff6", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@85704", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ef970", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@35219", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@68ab0", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d748d", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8d02d", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@92027", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cf58c", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4d3d4", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9a164", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@18367", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2fa19", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@295fd", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3b56d", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@7bb9f", + "__expectedType__": "cc.SpriteFrame" + }, + { + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5cd54", "__expectedType__": "cc.SpriteFrame" } ] diff --git a/assets/resources/game/heros/hero/ha1/idle.anim.meta b/assets/resources/game/heros/hero/a1/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/ha1/idle.anim.meta rename to assets/resources/game/heros/hero/a1/idle.anim.meta diff --git a/assets/resources/game/heros/hero/hm3/max0.anim b/assets/resources/game/heros/hero/a1/max0.anim similarity index 71% rename from assets/resources/game/heros/hero/hm3/max0.anim rename to assets/resources/game/heros/hero/a1/max0.anim index d0f52fdf..c9fcd9c4 100644 --- a/assets/resources/game/heros/hero/hm3/max0.anim +++ b/assets/resources/game/heros/hero/a1/max0.anim @@ -11,7 +11,7 @@ "speed": 1, "wrapMode": 1, "enableTrsBlending": false, - "_duration": 0.5, + "_duration": 0.45, "_hash": 500763545, "_tracks": [ { @@ -69,48 +69,43 @@ 0.25, 0.3, 0.35, - 0.4, - 0.45 + 0.4 ], "_values": [ { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@f97d1", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@46381", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@3cbaf", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e9823", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@35611", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@40049", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@b71e6", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@598fa", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@9acf9", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2ac56", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@76a42", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5328c", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@499eb", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@164e0", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@22212", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@02442", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@15052", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@df67a", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d5f9e", "__expectedType__": "cc.SpriteFrame" } ] diff --git a/assets/resources/game/heros/hero/ha1/max0.anim.meta b/assets/resources/game/heros/hero/a1/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/ha1/max0.anim.meta rename to assets/resources/game/heros/hero/a1/max0.anim.meta diff --git a/assets/resources/game/heros/hero/ha2/idle.anim b/assets/resources/game/heros/hero/a1/max1.anim similarity index 64% rename from assets/resources/game/heros/hero/ha2/idle.anim rename to assets/resources/game/heros/hero/a1/max1.anim index 2e2b23d3..8e8fd812 100644 --- a/assets/resources/game/heros/hero/ha2/idle.anim +++ b/assets/resources/game/heros/hero/a1/max1.anim @@ -1,17 +1,17 @@ [ { "__type__": "cc.AnimationClip", - "_name": "idle", + "_name": "max1", "_objFlags": 0, "__editorExtras__": { "embeddedPlayerGroups": [] }, "_native": "", - "sample": 15, + "sample": 30, "speed": 1, - "wrapMode": 2, + "wrapMode": 1, "enableTrsBlending": false, - "_duration": 0.8, + "_duration": 0.43333333333333335, "_hash": 500763545, "_tracks": [ { @@ -62,65 +62,70 @@ "__type__": "cc.ObjectCurve", "_times": [ 0, + 0.03333333333333333, 0.06666666666666667, + 0.1, 0.13333333333333333, + 0.16666666666666666, 0.2, + 0.23333333333333334, 0.26666666666666666, + 0.3, 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 + 0.36666666666666664, + 0.4 ], "_values": [ { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1e4e3", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5a47e", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b7722", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f26c6", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@03c0e", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@761bc", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@37ecb", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@70ef7", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e4794", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@dddeb", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c3a10", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2b5f0", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@33928", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@94bad", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@00407", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@850d9", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@83060", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e79b7", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dac07", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2cd62", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f4bc5", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4abe8", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2d6fa", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f51f4", + "__expectedType__": "cc.SpriteFrame" + }, + { + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@48a32", "__expectedType__": "cc.SpriteFrame" } ] diff --git a/assets/resources/game/heros/hero/ha1/max1.anim.meta b/assets/resources/game/heros/hero/a1/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/ha1/max1.anim.meta rename to assets/resources/game/heros/hero/a1/max1.anim.meta diff --git a/assets/resources/game/heros/hero/ha3/move.anim b/assets/resources/game/heros/hero/a1/move.anim similarity index 66% rename from assets/resources/game/heros/hero/ha3/move.anim rename to assets/resources/game/heros/hero/a1/move.anim index dd404e22..113afa0a 100644 --- a/assets/resources/game/heros/hero/ha3/move.anim +++ b/assets/resources/game/heros/hero/a1/move.anim @@ -7,11 +7,11 @@ "embeddedPlayerGroups": [] }, "_native": "", - "sample": 15, + "sample": 12, "speed": 1, "wrapMode": 2, "enableTrsBlending": false, - "_duration": 0.5333333333333333, + "_duration": 0.5, "_hash": 500763545, "_tracks": [ { @@ -62,45 +62,35 @@ "__type__": "cc.ObjectCurve", "_times": [ 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, + 0.08333333333333333, + 0.16666666666666666, + 0.25, 0.3333333333333333, - 0.4, - 0.4666666666666667 + 0.4166666666666667 ], "_values": [ { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c25f8", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@28ccb", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b0b5e", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5c1ba", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@eadff", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@bca30", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@76880", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@6d60e", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8563d", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e67ee", "__expectedType__": "cc.SpriteFrame" }, { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1703c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@53293", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c3736", + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f11ef", "__expectedType__": "cc.SpriteFrame" } ] diff --git a/assets/resources/game/heros/hero/ha1/move.anim.meta b/assets/resources/game/heros/hero/a1/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/ha1/move.anim.meta rename to assets/resources/game/heros/hero/a1/move.anim.meta diff --git a/assets/resources/game/heros/hero/m2zr1.plist b/assets/resources/game/heros/hero/a1234.plist similarity index 87% rename from assets/resources/game/heros/hero/m2zr1.plist rename to assets/resources/game/heros/hero/a1234.plist index 8480f04a..445ce016 100644 --- a/assets/resources/game/heros/hero/m2zr1.plist +++ b/assets/resources/game/heros/hero/a1234.plist @@ -4,1087 +4,7 @@ frames - SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1171},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1301},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1431},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1691},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1821},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,131},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,261},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,651},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,781},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,911},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1041},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1171},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1301},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1431},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1691},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1821},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1171},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1301},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1431},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1691},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1821},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,131},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,261},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,391},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,521},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,651},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,781},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,911},{128,128}} - textureRotated - - - SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1041},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1171},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1301},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,131},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,261},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,391},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,521},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,651},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,781},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,911},{128,128}} - textureRotated - - - SPUM_20260321092505101_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1041},{128,128}} - textureRotated - - - SPUM_20260321092505101_MOVE0_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1431},{128,128}} - textureRotated - - - SPUM_20260321092505101_MOVE0_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_MOVE0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1691},{128,128}} - textureRotated - - - SPUM_20260321092505101_MOVE0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1821},{128,128}} - textureRotated - - - SPUM_20260321092505101_MOVE0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1},{128,128}} - textureRotated - - - SPUM_20260321092505101_MOVE0_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,131},{128,128}} - textureRotated - - - SPUM_20260321092505101_MOVE0_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,261},{128,128}} - textureRotated - - - SPUM_20260321092505101_MOVE0_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,391},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,521},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,781},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,911},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1041},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1171},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1301},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1431},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - SPUM_20260321092505101_OTHER2_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - m2_ATTACK2_0_move_0-0.png + a1_ATTACK0_1_Skill_Normal_0-0.png aliases @@ -1099,7 +19,7 @@ textureRotated - m2_ATTACK2_0_move_0-1.png + a1_ATTACK0_1_Skill_Normal_0-1.png aliases @@ -1114,7 +34,7 @@ textureRotated - m2_ATTACK2_0_move_0-2.png + a1_ATTACK0_1_Skill_Normal_0-2.png aliases @@ -1129,7 +49,7 @@ textureRotated - m2_ATTACK2_0_move_0-3.png + a1_ATTACK0_1_Skill_Normal_0-3.png aliases @@ -1144,7 +64,7 @@ textureRotated - m2_ATTACK2_0_move_0-4.png + a1_ATTACK0_1_Skill_Normal_0-4.png aliases @@ -1159,7 +79,7 @@ textureRotated - m2_ATTACK2_0_move_0-5.png + a1_ATTACK0_1_Skill_Normal_0-5.png aliases @@ -1174,7 +94,7 @@ textureRotated - m2_ATTACK2_0_move_0-6.png + a1_ATTACK0_1_Skill_Normal_0-6.png aliases @@ -1189,7 +109,7 @@ textureRotated - m2_ATTACK2_0_move_0-7.png + a1_ATTACK0_1_Skill_Normal_0-7.png aliases @@ -1204,7 +124,7 @@ textureRotated - m2_ATTACK7_0_Attack_Magic_0-0.png + a1_ATTACK0_1_Skill_Normal_0-8.png aliases @@ -1219,7 +139,7 @@ textureRotated - m2_ATTACK7_0_Attack_Magic_0-1.png + a1_ATTACK1_0_Attack_Bow_0-0.png aliases @@ -1234,7 +154,7 @@ textureRotated - m2_ATTACK7_0_Attack_Magic_0-2.png + a1_ATTACK1_0_Attack_Bow_0-1.png aliases @@ -1249,127 +169,7 @@ textureRotated - m2_ATTACK7_0_Attack_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1431},{128,128}} - textureRotated - - - m2_ATTACK7_0_Attack_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1561},{128,128}} - textureRotated - - - m2_ATTACK7_0_Attack_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1691},{128,128}} - textureRotated - - - m2_ATTACK7_0_Attack_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1821},{128,128}} - textureRotated - - - m2_ATTACK7_0_Attack_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1},{128,128}} - textureRotated - - - m2_ATTACK7_0_Attack_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,131},{128,128}} - textureRotated - - - m2_ATTACK7_0_Attack_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,261},{128,128}} - textureRotated - - - m2_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,391},{128,128}} - textureRotated - - - m2_DAMAGED0_1_Skill_Magic_0-1.png + a1_ATTACK1_0_Attack_Bow_0-10.png aliases @@ -1384,97 +184,7 @@ textureRotated - m2_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1691},{128,128}} - textureRotated - - - m2_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1821},{128,128}} - textureRotated - - - m2_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1},{128,128}} - textureRotated - - - m2_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,131},{128,128}} - textureRotated - - - m2_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,261},{128,128}} - textureRotated - - - m2_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,391},{128,128}} - textureRotated - - - m2_DAMAGED0_1_Skill_Magic_0-2.png + a1_ATTACK1_0_Attack_Bow_0-11.png aliases @@ -1489,7 +199,7 @@ textureRotated - m2_DAMAGED0_1_Skill_Magic_0-3.png + a1_ATTACK1_0_Attack_Bow_0-12.png aliases @@ -1504,7 +214,7 @@ textureRotated - m2_DAMAGED0_1_Skill_Magic_0-4.png + a1_ATTACK1_0_Attack_Bow_0-13.png aliases @@ -1519,7 +229,7 @@ textureRotated - m2_DAMAGED0_1_Skill_Magic_0-5.png + a1_ATTACK1_0_Attack_Bow_0-14.png aliases @@ -1534,7 +244,7 @@ textureRotated - m2_DAMAGED0_1_Skill_Magic_0-6.png + a1_ATTACK1_0_Attack_Bow_0-15.png aliases @@ -1549,7 +259,127 @@ textureRotated - m2_DAMAGED0_1_Skill_Magic_0-7.png + a1_ATTACK1_0_Attack_Bow_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1,1431},{128,128}} + textureRotated + + + a1_ATTACK1_0_Attack_Bow_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1,1561},{128,128}} + textureRotated + + + a1_ATTACK1_0_Attack_Bow_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1,1691},{128,128}} + textureRotated + + + a1_ATTACK1_0_Attack_Bow_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1,1821},{128,128}} + textureRotated + + + a1_ATTACK1_0_Attack_Bow_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,1},{128,128}} + textureRotated + + + a1_ATTACK1_0_Attack_Bow_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,131},{128,128}} + textureRotated + + + a1_ATTACK1_0_Attack_Bow_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,261},{128,128}} + textureRotated + + + a1_ATTACK1_0_Attack_Bow_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,391},{128,128}} + textureRotated + + + a1_ATTACK2_1_Skill_Magic_0-0.png aliases @@ -1564,7 +394,7 @@ textureRotated - m2_DAMAGED0_1_Skill_Magic_0-8.png + a1_ATTACK2_1_Skill_Magic_0-1.png aliases @@ -1579,37 +409,7 @@ textureRotated - m2_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1561},{128,128}} - textureRotated - - - m2_DEATH0_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,521},{128,128}} - textureRotated - - - m2_DEATH0_0_Die_0-1.png + a1_ATTACK2_1_Skill_Magic_0-10.png aliases @@ -1624,97 +424,7 @@ textureRotated - m2_DEATH0_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - m2_DEATH0_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - m2_DEATH0_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - m2_DEATH0_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - m2_DEATH0_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - m2_DEATH0_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - m2_DEATH0_0_Die_0-2.png + a1_ATTACK2_1_Skill_Magic_0-11.png aliases @@ -1729,7 +439,7 @@ textureRotated - m2_DEATH0_0_Die_0-3.png + a1_ATTACK2_1_Skill_Magic_0-12.png aliases @@ -1744,7 +454,127 @@ textureRotated - m2_DEATH0_0_Die_0-4.png + a1_ATTACK2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,1561},{128,128}} + textureRotated + + + a1_ATTACK2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,1691},{128,128}} + textureRotated + + + a1_ATTACK2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,1821},{128,128}} + textureRotated + + + a1_ATTACK2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1},{128,128}} + textureRotated + + + a1_ATTACK2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,131},{128,128}} + textureRotated + + + a1_ATTACK2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,261},{128,128}} + textureRotated + + + a1_ATTACK2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,391},{128,128}} + textureRotated + + + a1_ATTACK2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,521},{128,128}} + textureRotated + + + a1_IDLE0_0_idle_0-0.png aliases @@ -1759,7 +589,22 @@ textureRotated - m2_DEATH0_0_Die_0-5.png + a1_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1041},{128,128}} + textureRotated + + + a1_IDLE0_0_idle_0-2.png aliases @@ -1774,7 +619,7 @@ textureRotated - m2_DEATH0_0_Die_0-6.png + a1_IDLE0_0_idle_0-3.png aliases @@ -1789,7 +634,7 @@ textureRotated - m2_DEATH0_0_Die_0-7.png + a1_IDLE0_0_idle_0-4.png aliases @@ -1804,7 +649,7 @@ textureRotated - m2_DEATH0_0_Die_0-8.png + a1_IDLE0_0_idle_0-5.png aliases @@ -1819,22 +664,7 @@ textureRotated - m2_DEATH0_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - m2_IDLE0_0_idle_0-0.png + a1_IDLE0_0_idle_0-6.png aliases @@ -1849,52 +679,7 @@ textureRotated - m2_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1691},{128,128}} - textureRotated - - - m2_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,911},{128,128}} - textureRotated - - - m2_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - m2_IDLE0_0_idle_0-2.png + a1_IDLE0_0_idle_0-7.png aliases @@ -1909,7 +694,7 @@ textureRotated - m2_IDLE0_0_idle_0-3.png + a1_IDLE0_0_idle_0-8.png aliases @@ -1924,7 +709,7 @@ textureRotated - m2_IDLE0_0_idle_0-4.png + a1_MOVE0_0_move_0-0.png aliases @@ -1939,7 +724,7 @@ textureRotated - m2_IDLE0_0_idle_0-5.png + a1_MOVE0_0_move_0-1.png aliases @@ -1954,7 +739,7 @@ textureRotated - m2_IDLE0_0_idle_0-6.png + a1_MOVE0_0_move_0-2.png aliases @@ -1969,7 +754,7 @@ textureRotated - m2_IDLE0_0_idle_0-7.png + a1_MOVE0_0_move_0-3.png aliases @@ -1984,7 +769,7 @@ textureRotated - m2_IDLE0_0_idle_0-8.png + a1_MOVE0_0_move_0-4.png aliases @@ -1999,7 +784,7 @@ textureRotated - m2_IDLE0_0_idle_0-9.png + a1_MOVE0_0_move_0-5.png aliases @@ -2014,7 +799,1012 @@ textureRotated - zr1_ATTACK6_1_Skill_Normal_0-0.png + a2_ATTACK0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,911},{128,128}} + textureRotated + + + a2_ATTACK0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1041},{128,128}} + textureRotated + + + a2_ATTACK0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1171},{128,128}} + textureRotated + + + a2_ATTACK0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1301},{128,128}} + textureRotated + + + a2_ATTACK0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1431},{128,128}} + textureRotated + + + a2_ATTACK0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1561},{128,128}} + textureRotated + + + a2_ATTACK1_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1691},{128,128}} + textureRotated + + + a2_ATTACK1_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1821},{128,128}} + textureRotated + + + a2_ATTACK1_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1},{128,128}} + textureRotated + + + a2_ATTACK1_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,131},{128,128}} + textureRotated + + + a2_ATTACK1_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,261},{128,128}} + textureRotated + + + a2_ATTACK1_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,391},{128,128}} + textureRotated + + + a2_ATTACK1_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,521},{128,128}} + textureRotated + + + a2_ATTACK1_1_Skill_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,651},{128,128}} + textureRotated + + + a2_ATTACK1_1_Skill_Normal_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,781},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,911},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1041},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,261},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,391},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,521},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,651},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,781},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,911},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1171},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1301},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1431},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1561},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1691},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1821},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1},{128,128}} + textureRotated + + + a2_ATTACK4_0_Attack_Bow_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,131},{128,128}} + textureRotated + + + a2_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1041},{128,128}} + textureRotated + + + a2_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1041},{128,128}} + textureRotated + + + a2_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1171},{128,128}} + textureRotated + + + a2_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1301},{128,128}} + textureRotated + + + a2_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1431},{128,128}} + textureRotated + + + a2_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1561},{128,128}} + textureRotated + + + a2_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1691},{128,128}} + textureRotated + + + a2_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1821},{128,128}} + textureRotated + + + a2_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,131},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,261},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1431},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1561},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1691},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,391},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,521},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,651},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,781},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,911},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1041},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1171},{128,128}} + textureRotated + + + a2_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1301},{128,128}} + textureRotated + + + a3_ATTACK0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1821},{128,128}} + textureRotated + + + a3_ATTACK0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1},{128,128}} + textureRotated + + + a3_ATTACK0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,131},{128,128}} + textureRotated + + + a3_ATTACK0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,261},{128,128}} + textureRotated + + + a3_ATTACK0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,391},{128,128}} + textureRotated + + + a3_ATTACK0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,521},{128,128}} + textureRotated + + + a3_ATTACK1_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,651},{128,128}} + textureRotated + + + a3_ATTACK1_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,781},{128,128}} + textureRotated + + + a3_ATTACK1_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,911},{128,128}} + textureRotated + + + a3_ATTACK1_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1041},{128,128}} + textureRotated + + + a3_ATTACK1_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1171},{128,128}} + textureRotated + + + a3_ATTACK1_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1301},{128,128}} + textureRotated + + + a3_ATTACK1_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1431},{128,128}} + textureRotated + + + a3_ATTACK1_1_Skill_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1561},{128,128}} + textureRotated + + + a3_ATTACK1_1_Skill_Normal_0-8.png aliases @@ -2029,7 +1819,7 @@ textureRotated - zr1_ATTACK6_1_Skill_Normal_0-1.png + a3_ATTACK4_0_Attack_Bow_0-0.png aliases @@ -2044,37 +1834,7 @@ textureRotated - zr1_ATTACK6_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1041},{128,128}} - textureRotated - - - zr1_ATTACK6_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - zr1_ATTACK6_1_Skill_Normal_0-2.png + a3_ATTACK4_0_Attack_Bow_0-1.png aliases @@ -2089,112 +1849,7 @@ textureRotated - zr1_ATTACK6_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,131},{128,128}} - textureRotated - - - zr1_ATTACK6_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,261},{128,128}} - textureRotated - - - zr1_ATTACK6_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,391},{128,128}} - textureRotated - - - zr1_ATTACK6_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,521},{128,128}} - textureRotated - - - zr1_ATTACK6_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,651},{128,128}} - textureRotated - - - zr1_ATTACK6_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,781},{128,128}} - textureRotated - - - zr1_ATTACK6_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,911},{128,128}} - textureRotated - - - zr1_ATTACK7_0_Attack_Magic_0-0.png + a3_ATTACK4_0_Attack_Bow_0-10.png aliases @@ -2209,7 +1864,7 @@ textureRotated - zr1_ATTACK7_0_Attack_Magic_0-1.png + a3_ATTACK4_0_Attack_Bow_0-11.png aliases @@ -2224,7 +1879,7 @@ textureRotated - zr1_ATTACK7_0_Attack_Magic_0-2.png + a3_ATTACK4_0_Attack_Bow_0-12.png aliases @@ -2239,7 +1894,7 @@ textureRotated - zr1_ATTACK7_0_Attack_Magic_0-3.png + a3_ATTACK4_0_Attack_Bow_0-13.png aliases @@ -2254,7 +1909,7 @@ textureRotated - zr1_ATTACK7_0_Attack_Magic_0-4.png + a3_ATTACK4_0_Attack_Bow_0-14.png aliases @@ -2269,7 +1924,7 @@ textureRotated - zr1_ATTACK7_0_Attack_Magic_0-5.png + a3_ATTACK4_0_Attack_Bow_0-15.png aliases @@ -2284,7 +1939,127 @@ textureRotated - zr1_ATTACK7_0_Attack_Magic_0-6.png + a3_ATTACK4_0_Attack_Bow_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,131},{128,128}} + textureRotated + + + a3_ATTACK4_0_Attack_Bow_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,261},{128,128}} + textureRotated + + + a3_ATTACK4_0_Attack_Bow_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,391},{128,128}} + textureRotated + + + a3_ATTACK4_0_Attack_Bow_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,521},{128,128}} + textureRotated + + + a3_ATTACK4_0_Attack_Bow_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,651},{128,128}} + textureRotated + + + a3_ATTACK4_0_Attack_Bow_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,781},{128,128}} + textureRotated + + + a3_ATTACK4_0_Attack_Bow_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,911},{128,128}} + textureRotated + + + a3_ATTACK4_0_Attack_Bow_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1041},{128,128}} + textureRotated + + + a3_IDLE0_0_idle_0-0.png aliases @@ -2299,7 +2074,22 @@ textureRotated - zr1_ATTACK7_0_Attack_Magic_0-7.png + a3_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1},{128,128}} + textureRotated + + + a3_IDLE0_0_idle_0-2.png aliases @@ -2314,7 +2104,7 @@ textureRotated - zr1_ATTACK7_0_Attack_Magic_0-8.png + a3_IDLE0_0_idle_0-3.png aliases @@ -2329,7 +2119,7 @@ textureRotated - zr1_ATTACK7_0_Attack_Magic_0-9.png + a3_IDLE0_0_idle_0-4.png aliases @@ -2344,7 +2134,7 @@ textureRotated - zr1_DAMAGED0_1_Skill_Magic_0-0.png + a3_IDLE0_0_idle_0-5.png aliases @@ -2359,7 +2149,7 @@ textureRotated - zr1_DAMAGED0_1_Skill_Magic_0-1.png + a3_IDLE0_0_idle_0-6.png aliases @@ -2374,97 +2164,7 @@ textureRotated - zr1_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1821},{128,128}} - textureRotated - - - zr1_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1},{128,128}} - textureRotated - - - zr1_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,131},{128,128}} - textureRotated - - - zr1_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,261},{128,128}} - textureRotated - - - zr1_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,391},{128,128}} - textureRotated - - - zr1_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,521},{128,128}} - textureRotated - - - zr1_DAMAGED0_1_Skill_Magic_0-2.png + a3_IDLE0_0_idle_0-7.png aliases @@ -2479,7 +2179,7 @@ textureRotated - zr1_DAMAGED0_1_Skill_Magic_0-3.png + a3_IDLE0_0_idle_0-8.png aliases @@ -2494,7 +2194,7 @@ textureRotated - zr1_DAMAGED0_1_Skill_Magic_0-4.png + a3_OTHER2_1_Skill_Magic_0-0.png aliases @@ -2509,7 +2209,7 @@ textureRotated - zr1_DAMAGED0_1_Skill_Magic_0-5.png + a3_OTHER2_1_Skill_Magic_0-1.png aliases @@ -2524,7 +2224,7 @@ textureRotated - zr1_DAMAGED0_1_Skill_Magic_0-6.png + a3_OTHER2_1_Skill_Magic_0-10.png aliases @@ -2535,11 +2235,11 @@ spriteSourceSize {128,128} textureRect - {{1171,1301},{128,128}} + {{1301,391},{128,128}} textureRotated - zr1_DAMAGED0_1_Skill_Magic_0-7.png + a3_OTHER2_1_Skill_Magic_0-11.png aliases @@ -2550,41 +2250,11 @@ spriteSourceSize {128,128} textureRect - {{1171,1431},{128,128}} + {{1301,521},{128,128}} textureRotated - zr1_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1561},{128,128}} - textureRotated - - - zr1_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1691},{128,128}} - textureRotated - - - zr1_DEATH0_0_Die_0-0.png + a3_OTHER2_1_Skill_Magic_0-12.png aliases @@ -2599,7 +2269,127 @@ textureRotated - zr1_DEATH0_0_Die_0-1.png + a3_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1301},{128,128}} + textureRotated + + + a3_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1431},{128,128}} + textureRotated + + + a3_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1561},{128,128}} + textureRotated + + + a3_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1691},{128,128}} + textureRotated + + + a3_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1821},{128,128}} + textureRotated + + + a3_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1},{128,128}} + textureRotated + + + a3_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,131},{128,128}} + textureRotated + + + a3_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,261},{128,128}} + textureRotated + + + a4_ATTACK0_0_move_0-0.png aliases @@ -2614,97 +2404,7 @@ textureRotated - zr1_DEATH0_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - zr1_DEATH0_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - zr1_DEATH0_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - zr1_DEATH0_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - zr1_DEATH0_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - zr1_DEATH0_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - zr1_DEATH0_0_Die_0-2.png + a4_ATTACK0_0_move_0-1.png aliases @@ -2719,7 +2419,7 @@ textureRotated - zr1_DEATH0_0_Die_0-3.png + a4_ATTACK0_0_move_0-2.png aliases @@ -2734,7 +2434,7 @@ textureRotated - zr1_DEATH0_0_Die_0-4.png + a4_ATTACK0_0_move_0-3.png aliases @@ -2749,7 +2449,7 @@ textureRotated - zr1_DEATH0_0_Die_0-5.png + a4_ATTACK0_0_move_0-4.png aliases @@ -2764,7 +2464,7 @@ textureRotated - zr1_DEATH0_0_Die_0-6.png + a4_ATTACK0_0_move_0-5.png aliases @@ -2779,7 +2479,7 @@ textureRotated - zr1_DEATH0_0_Die_0-7.png + a4_ATTACK1_1_Skill_Normal_0-0.png aliases @@ -2794,7 +2494,7 @@ textureRotated - zr1_DEATH0_0_Die_0-8.png + a4_ATTACK1_1_Skill_Normal_0-1.png aliases @@ -2809,22 +2509,7 @@ textureRotated - zr1_DEATH0_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - zr1_IDLE0_0_idle_0-0.png + a4_ATTACK1_1_Skill_Normal_0-2.png aliases @@ -2839,52 +2524,7 @@ textureRotated - zr1_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1821},{128,128}} - textureRotated - - - zr1_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1041},{128,128}} - textureRotated - - - zr1_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1171},{128,128}} - textureRotated - - - zr1_IDLE0_0_idle_0-2.png + a4_ATTACK1_1_Skill_Normal_0-3.png aliases @@ -2899,7 +2539,7 @@ textureRotated - zr1_IDLE0_0_idle_0-3.png + a4_ATTACK1_1_Skill_Normal_0-4.png aliases @@ -2914,7 +2554,7 @@ textureRotated - zr1_IDLE0_0_idle_0-4.png + a4_ATTACK1_1_Skill_Normal_0-5.png aliases @@ -2929,7 +2569,7 @@ textureRotated - zr1_IDLE0_0_idle_0-5.png + a4_ATTACK1_1_Skill_Normal_0-6.png aliases @@ -2944,7 +2584,7 @@ textureRotated - zr1_IDLE0_0_idle_0-6.png + a4_ATTACK1_1_Skill_Normal_0-7.png aliases @@ -2959,7 +2599,7 @@ textureRotated - zr1_IDLE0_0_idle_0-7.png + a4_ATTACK1_1_Skill_Normal_0-8.png aliases @@ -2974,7 +2614,7 @@ textureRotated - zr1_IDLE0_0_idle_0-8.png + a4_ATTACK4_0_Attack_Bow_0-0.png aliases @@ -2989,7 +2629,7 @@ textureRotated - zr1_IDLE0_0_idle_0-9.png + a4_ATTACK4_0_Attack_Bow_0-1.png aliases @@ -3004,97 +2644,7 @@ textureRotated - zr1_MOVE0_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1301},{128,128}} - textureRotated - - - zr1_MOVE0_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1431},{128,128}} - textureRotated - - - zr1_MOVE0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1561},{128,128}} - textureRotated - - - zr1_MOVE0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1691},{128,128}} - textureRotated - - - zr1_MOVE0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1821},{128,128}} - textureRotated - - - zr1_MOVE0_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1},{128,128}} - textureRotated - - - zr1_MOVE0_0_move_0-6.png + a4_ATTACK4_0_Attack_Bow_0-10.png aliases @@ -3109,7 +2659,7 @@ textureRotated - zr1_MOVE0_0_move_0-7.png + a4_ATTACK4_0_Attack_Bow_0-11.png aliases @@ -3124,6 +2674,516 @@ textureRotated + a4_ATTACK4_0_Attack_Bow_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,391},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,521},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,651},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,781},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1041},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1171},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1301},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1431},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1561},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1691},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1821},{128,128}} + textureRotated + + + a4_ATTACK4_0_Attack_Bow_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1},{128,128}} + textureRotated + + + a4_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,911},{128,128}} + textureRotated + + + a4_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,911},{128,128}} + textureRotated + + + a4_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1041},{128,128}} + textureRotated + + + a4_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1171},{128,128}} + textureRotated + + + a4_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1301},{128,128}} + textureRotated + + + a4_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1431},{128,128}} + textureRotated + + + a4_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1561},{128,128}} + textureRotated + + + a4_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1691},{128,128}} + textureRotated + + + a4_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1821},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,131},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1301},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1431},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1561},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,261},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,391},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,521},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,651},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,781},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,911},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1041},{128,128}} + textureRotated + + + a4_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1171},{128,128}} + textureRotated + + metadata @@ -3134,13 +3194,13 @@ premultiplyAlpha realTextureFileName - m2zr1.png + a1234.png size - {1690,1950} + {1820,1950} smartupdate - $TexturePacker:SmartUpdate:1b09b591b2ee3e401b9758a58e6b9498:ebea02de6867919280297a87d0155e30:d9164ad5af013af8e048cf53822ce627$ + $TexturePacker:SmartUpdate:4356be539ba563f2c9bde1faa5092015:6ff2ee50a3441a2f3d15eda8a393f6f7:f72b3961fbc8a35ec2cea9e35fb10147$ textureFileName - m2zr1.png + a1234.png diff --git a/assets/resources/game/heros/hero/m2zr1.plist.meta b/assets/resources/game/heros/hero/a1234.plist.meta similarity index 74% rename from assets/resources/game/heros/hero/m2zr1.plist.meta rename to assets/resources/game/heros/hero/a1234.plist.meta index 850ca703..e4146fe5 100644 --- a/assets/resources/game/heros/hero/m2zr1.plist.meta +++ b/assets/resources/game/heros/hero/a1234.plist.meta @@ -2,1949 +2,17 @@ "ver": "1.0.8", "importer": "sprite-atlas", "imported": true, - "uuid": "66e28322-67db-44f8-b67b-217a509fe257", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "files": [ ".json" ], "subMetas": { - "14582": { + "13597": { "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@14582", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@13597", "displayName": "", - "id": "14582", - "name": "m2_ATTACK7_0_Attack_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "15052": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@15052", - "displayName": "", - "id": "15052", - "name": "SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "20305": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@20305", - "displayName": "", - "id": "20305", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "22212": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@22212", - "displayName": "", - "id": "22212", - "name": "SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "28070": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@28070", - "displayName": "", - "id": "28070", - "name": "SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "34982": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@34982", - "displayName": "", - "id": "34982", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "35611": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@35611", - "displayName": "", - "id": "35611", - "name": "SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "40127": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@40127", - "displayName": "", - "id": "40127", - "name": "m2_DEATH0_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "41197": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@41197", - "displayName": "", - "id": "41197", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "41361": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@41361", - "displayName": "", - "id": "41361", - "name": "zr1_MOVE0_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "41508": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@41508", - "displayName": "", - "id": "41508", - "name": "SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "44266": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@44266", - "displayName": "", - "id": "44266", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "48499": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@48499", - "displayName": "", - "id": "48499", - "name": "zr1_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "49454": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@49454", - "displayName": "", - "id": "49454", - "name": "zr1_MOVE0_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "49864": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@49864", - "displayName": "", - "id": "49864", - "name": "m2_ATTACK2_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50692": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@50692", - "displayName": "", - "id": "50692", - "name": "m2_DEATH0_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "54622": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@54622", - "displayName": "", - "id": "54622", - "name": "zr1_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "76446": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@76446", - "displayName": "", - "id": "76446", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79429": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@79429", - "displayName": "", - "id": "79429", - "name": "m2_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "86356": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@86356", - "displayName": "", - "id": "86356", - "name": "m2_DEATH0_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "88026": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@88026", - "displayName": "", - "id": "88026", - "name": "zr1_ATTACK7_0_Attack_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "92696": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@92696", - "displayName": "", - "id": "92696", - "name": "m2_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "97341": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@97341", - "displayName": "", - "id": "97341", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "99226": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@99226", - "displayName": "", - "id": "99226", - "name": "zr1_ATTACK7_0_Attack_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f97d1": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@f97d1", - "displayName": "", - "id": "f97d1", - "name": "SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3cbaf": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@3cbaf", - "displayName": "", - "id": "3cbaf", - "name": "SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b71e6": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b71e6", - "displayName": "", - "id": "b71e6", - "name": "SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9acf9": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@9acf9", - "displayName": "", - "id": "9acf9", - "name": "SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "76a42": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@76a42", - "displayName": "", - "id": "76a42", - "name": "SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "499eb": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@499eb", - "displayName": "", - "id": "499eb", - "name": "SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "df67a": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@df67a", - "displayName": "", - "id": "df67a", - "name": "SPUM_20260321092505101_ATTACK3_0_Attack_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "10f7b": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@10f7b", - "displayName": "", - "id": "10f7b", - "name": "SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dedf4": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@dedf4", - "displayName": "", - "id": "dedf4", - "name": "SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a9232": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@a9232", - "displayName": "", - "id": "a9232", - "name": "SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cb3f9": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@cb3f9", - "displayName": "", - "id": "cb3f9", - "name": "SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fdec9": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@fdec9", - "displayName": "", - "id": "fdec9", - "name": "SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3a019": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@3a019", - "displayName": "", - "id": "3a019", - "name": "SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0c6c4": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@0c6c4", - "displayName": "", - "id": "0c6c4", - "name": "SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "426d6": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@426d6", - "displayName": "", - "id": "426d6", - "name": "SPUM_20260321092505101_ATTACK4_0_Attack_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cb565": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@cb565", - "displayName": "", - "id": "cb565", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e0cda": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@e0cda", - "displayName": "", - "id": "e0cda", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "856b4": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@856b4", - "displayName": "", - "id": "856b4", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e75b0": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@e75b0", - "displayName": "", - "id": "e75b0", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-11", + "id": "13597", + "name": "a2_IDLE0_0_idle_0-3", "userData": { "trimThreshold": 1, "rotated": false, @@ -1974,8 +42,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "trimType": "auto" }, "ver": "1.0.12", @@ -1985,19 +53,19 @@ ], "subMetas": {} }, - "b0153": { + "15159": { "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b0153", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@15159", "displayName": "", - "id": "b0153", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-12", + "id": "15159", + "name": "a4_ATTACK0_0_move_0-1", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 651, - "trimY": 1431, + "trimX": 1301, + "trimY": 911, "width": 128, "height": 128, "rawWidth": 128, @@ -2020,8 +88,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "trimType": "auto" }, "ver": "1.0.12", @@ -2031,19 +99,19 @@ ], "subMetas": {} }, - "8c114": { + "18367": { "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@8c114", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@18367", "displayName": "", - "id": "8c114", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-15", + "id": "18367", + "name": "a1_IDLE0_0_idle_0-5", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 651, - "trimY": 1821, + "trimX": 261, + "trimY": 1561, "width": 128, "height": 128, "rawWidth": 128, @@ -2066,8 +134,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "trimType": "auto" }, "ver": "1.0.12", @@ -2077,19 +145,19 @@ ], "subMetas": {} }, - "5ccd6": { + "19235": { "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@5ccd6", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@19235", "displayName": "", - "id": "5ccd6", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-2", + "id": "19235", + "name": "a1_ATTACK1_0_Attack_Bow_0-13", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 651, - "trimY": 131, + "trimX": 131, + "trimY": 911, "width": 128, "height": 128, "rawWidth": 128, @@ -2112,8 +180,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "trimType": "auto" }, "ver": "1.0.12", @@ -2123,472 +191,12 @@ ], "subMetas": {} }, - "e5ea9": { + "29293": { "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@e5ea9", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@29293", "displayName": "", - "id": "e5ea9", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6acf4": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@6acf4", - "displayName": "", - "id": "6acf4", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e6c9": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@9e6c9", - "displayName": "", - "id": "9e6c9", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2e7c6": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@2e7c6", - "displayName": "", - "id": "2e7c6", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "77ed9": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@77ed9", - "displayName": "", - "id": "77ed9", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ca4b4": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@ca4b4", - "displayName": "", - "id": "ca4b4", - "name": "SPUM_20260321092505101_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9235c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@9235c", - "displayName": "", - "id": "9235c", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b513d": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b513d", - "displayName": "", - "id": "b513d", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6abd9": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@6abd9", - "displayName": "", - "id": "6abd9", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "806dc": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@806dc", - "displayName": "", - "id": "806dc", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3bf0c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@3bf0c", - "displayName": "", - "id": "3bf0c", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-2", + "id": "29293", + "name": "a2_OTHER2_1_Skill_Magic_0-0", "userData": { "trimThreshold": 1, "rotated": false, @@ -2618,8 +226,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "trimType": "auto" }, "ver": "1.0.12", @@ -2629,248 +237,18 @@ ], "subMetas": {} }, - "7915f": { + "35219": { "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@7915f", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@35219", "displayName": "", - "id": "7915f", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-3", + "id": "35219", + "name": "a1_IDLE0_0_idle_0-1", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 781, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f1073": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@f1073", - "displayName": "", - "id": "f1073", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bac4a": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@bac4a", - "displayName": "", - "id": "bac4a", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3b614": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@3b614", - "displayName": "", - "id": "3b614", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dd682": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@dd682", - "displayName": "", - "id": "dd682", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f812c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@f812c", - "displayName": "", - "id": "f812c", - "name": "SPUM_20260321092505101_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, + "trimX": 261, "trimY": 1041, "width": 128, "height": 128, @@ -2894,8 +272,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "trimType": "auto" }, "ver": "1.0.12", @@ -2905,1116 +283,12 @@ ], "subMetas": {} }, - "f81e4": { + "40049": { "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@f81e4", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@40049", "displayName": "", - "id": "f81e4", - "name": "SPUM_20260321092505101_MOVE0_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ecd33": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@ecd33", - "displayName": "", - "id": "ecd33", - "name": "SPUM_20260321092505101_MOVE0_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9127e": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@9127e", - "displayName": "", - "id": "9127e", - "name": "SPUM_20260321092505101_MOVE0_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6c229": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@6c229", - "displayName": "", - "id": "6c229", - "name": "SPUM_20260321092505101_MOVE0_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "37bc7": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@37bc7", - "displayName": "", - "id": "37bc7", - "name": "SPUM_20260321092505101_MOVE0_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bdc62": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@bdc62", - "displayName": "", - "id": "bdc62", - "name": "SPUM_20260321092505101_MOVE0_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "70c0e": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@70c0e", - "displayName": "", - "id": "70c0e", - "name": "SPUM_20260321092505101_MOVE0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5f10d": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@5f10d", - "displayName": "", - "id": "5f10d", - "name": "SPUM_20260321092505101_MOVE0_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "90c1e": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@90c1e", - "displayName": "", - "id": "90c1e", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e13d": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@9e13d", - "displayName": "", - "id": "9e13d", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "621c1": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@621c1", - "displayName": "", - "id": "621c1", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "aeca0": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@aeca0", - "displayName": "", - "id": "aeca0", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "47c5c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@47c5c", - "displayName": "", - "id": "47c5c", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4e949": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@4e949", - "displayName": "", - "id": "4e949", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0a750": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@0a750", - "displayName": "", - "id": "0a750", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02e74": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@02e74", - "displayName": "", - "id": "02e74", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0fe6c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@0fe6c", - "displayName": "", - "id": "0fe6c", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b0548": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b0548", - "displayName": "", - "id": "b0548", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c3c78": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@c3c78", - "displayName": "", - "id": "c3c78", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0fd50": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@0fd50", - "displayName": "", - "id": "0fd50", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3cfe3": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@3cfe3", - "displayName": "", - "id": "3cfe3", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "567fb": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@567fb", - "displayName": "", - "id": "567fb", - "name": "SPUM_20260321092505101_OTHER2_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4fc74": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@4fc74", - "displayName": "", - "id": "4fc74", - "name": "m2_ATTACK2_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "aef58": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@aef58", - "displayName": "", - "id": "aef58", - "name": "m2_ATTACK2_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "99d85": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@99d85", - "displayName": "", - "id": "99d85", - "name": "m2_ATTACK2_0_move_0-2", + "id": "40049", + "name": "a1_ATTACK0_1_Skill_Normal_0-2", "userData": { "trimThreshold": 1, "rotated": false, @@ -4044,8 +318,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "trimType": "auto" }, "ver": "1.0.12", @@ -4055,5400 +329,64 @@ ], "subMetas": {} }, - "948e2": { + "43074": { "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@948e2", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@43074", "displayName": "", - "id": "948e2", - "name": "m2_ATTACK2_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "334d6": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@334d6", - "displayName": "", - "id": "334d6", - "name": "m2_ATTACK2_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "61ad3": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@61ad3", - "displayName": "", - "id": "61ad3", - "name": "m2_ATTACK2_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1db82": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@1db82", - "displayName": "", - "id": "1db82", - "name": "m2_ATTACK2_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60f5c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@60f5c", - "displayName": "", - "id": "60f5c", - "name": "m2_ATTACK7_0_Attack_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "32a95": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@32a95", - "displayName": "", - "id": "32a95", - "name": "m2_ATTACK7_0_Attack_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d67bb": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@d67bb", - "displayName": "", - "id": "d67bb", - "name": "m2_ATTACK7_0_Attack_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3f8a0": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@3f8a0", - "displayName": "", - "id": "3f8a0", - "name": "m2_ATTACK7_0_Attack_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1807": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@d1807", - "displayName": "", - "id": "d1807", - "name": "m2_ATTACK7_0_Attack_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8117b": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@8117b", - "displayName": "", - "id": "8117b", - "name": "m2_ATTACK7_0_Attack_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8762a": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@8762a", - "displayName": "", - "id": "8762a", - "name": "m2_ATTACK7_0_Attack_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "58bef": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@58bef", - "displayName": "", - "id": "58bef", - "name": "m2_ATTACK7_0_Attack_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4c199": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@4c199", - "displayName": "", - "id": "4c199", - "name": "m2_ATTACK7_0_Attack_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1299d": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@1299d", - "displayName": "", - "id": "1299d", - "name": "m2_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "35a5b": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@35a5b", - "displayName": "", - "id": "35a5b", - "name": "m2_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "af2b5": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@af2b5", - "displayName": "", - "id": "af2b5", - "name": "m2_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "48ec7": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@48ec7", - "displayName": "", - "id": "48ec7", - "name": "m2_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2c75a": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@2c75a", - "displayName": "", - "id": "2c75a", - "name": "m2_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d136": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@5d136", - "displayName": "", - "id": "5d136", - "name": "m2_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14e90": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@14e90", - "displayName": "", - "id": "14e90", - "name": "m2_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6c02e": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@6c02e", - "displayName": "", - "id": "6c02e", - "name": "m2_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f7567": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@f7567", - "displayName": "", - "id": "f7567", - "name": "m2_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4e34c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@4e34c", - "displayName": "", - "id": "4e34c", - "name": "m2_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "46bb4": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@46bb4", - "displayName": "", - "id": "46bb4", - "name": "m2_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1f90e": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@1f90e", - "displayName": "", - "id": "1f90e", - "name": "m2_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "df273": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@df273", - "displayName": "", - "id": "df273", - "name": "m2_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "31af8": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@31af8", - "displayName": "", - "id": "31af8", - "name": "m2_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bfc55": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@bfc55", - "displayName": "", - "id": "bfc55", - "name": "m2_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "44b6b": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@44b6b", - "displayName": "", - "id": "44b6b", - "name": "m2_DEATH0_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e152e": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@e152e", - "displayName": "", - "id": "e152e", - "name": "m2_DEATH0_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8f605": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@8f605", - "displayName": "", - "id": "8f605", - "name": "m2_DEATH0_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b9c8a": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b9c8a", - "displayName": "", - "id": "b9c8a", - "name": "m2_DEATH0_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bd0c6": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@bd0c6", - "displayName": "", - "id": "bd0c6", - "name": "m2_DEATH0_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "11c19": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@11c19", - "displayName": "", - "id": "11c19", - "name": "m2_DEATH0_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b24d1": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b24d1", - "displayName": "", - "id": "b24d1", - "name": "m2_DEATH0_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7b66c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@7b66c", - "displayName": "", - "id": "7b66c", - "name": "m2_DEATH0_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4b4a2": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@4b4a2", - "displayName": "", - "id": "4b4a2", - "name": "m2_DEATH0_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "794b4": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@794b4", - "displayName": "", - "id": "794b4", - "name": "m2_DEATH0_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c1007": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@c1007", - "displayName": "", - "id": "c1007", - "name": "m2_DEATH0_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a1394": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@a1394", - "displayName": "", - "id": "a1394", - "name": "m2_DEATH0_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8c89a": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@8c89a", - "displayName": "", - "id": "8c89a", - "name": "m2_DEATH0_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "db384": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@db384", - "displayName": "", - "id": "db384", - "name": "m2_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1da39": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@1da39", - "displayName": "", - "id": "1da39", - "name": "m2_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3865b": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@3865b", - "displayName": "", - "id": "3865b", - "name": "m2_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4a0aa": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@4a0aa", - "displayName": "", - "id": "4a0aa", - "name": "m2_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "17ba6": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@17ba6", - "displayName": "", - "id": "17ba6", - "name": "m2_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c71a0": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@c71a0", - "displayName": "", - "id": "c71a0", - "name": "m2_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a9c6": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@1a9c6", - "displayName": "", - "id": "1a9c6", - "name": "m2_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "27f8c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@27f8c", - "displayName": "", - "id": "27f8c", - "name": "m2_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f21c3": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@f21c3", - "displayName": "", - "id": "f21c3", - "name": "m2_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "518cb": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@518cb", - "displayName": "", - "id": "518cb", - "name": "m2_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1672b": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@1672b", - "displayName": "", - "id": "1672b", - "name": "m2_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "564ad": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@564ad", - "displayName": "", - "id": "564ad", - "name": "zr1_ATTACK6_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0ea7a": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@0ea7a", - "displayName": "", - "id": "0ea7a", - "name": "zr1_ATTACK6_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c11b1": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@c11b1", - "displayName": "", - "id": "c11b1", - "name": "zr1_ATTACK6_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e989e": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@e989e", - "displayName": "", - "id": "e989e", - "name": "zr1_ATTACK6_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3f85e": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@3f85e", - "displayName": "", - "id": "3f85e", - "name": "zr1_ATTACK6_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02ed1": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@02ed1", - "displayName": "", - "id": "02ed1", - "name": "zr1_ATTACK6_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8e15d": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@8e15d", - "displayName": "", - "id": "8e15d", - "name": "zr1_ATTACK6_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2d568": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@2d568", - "displayName": "", - "id": "2d568", - "name": "zr1_ATTACK6_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7d894": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@7d894", - "displayName": "", - "id": "7d894", - "name": "zr1_ATTACK6_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7d038": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@7d038", - "displayName": "", - "id": "7d038", - "name": "zr1_ATTACK6_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0ec90": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@0ec90", - "displayName": "", - "id": "0ec90", - "name": "zr1_ATTACK6_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8aa7c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@8aa7c", - "displayName": "", - "id": "8aa7c", - "name": "zr1_ATTACK6_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "81b06": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@81b06", - "displayName": "", - "id": "81b06", - "name": "zr1_ATTACK7_0_Attack_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d3447": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@d3447", - "displayName": "", - "id": "d3447", - "name": "zr1_ATTACK7_0_Attack_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "deebe": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@deebe", - "displayName": "", - "id": "deebe", - "name": "zr1_ATTACK7_0_Attack_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4aec0": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@4aec0", - "displayName": "", - "id": "4aec0", - "name": "zr1_ATTACK7_0_Attack_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "655f7": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@655f7", - "displayName": "", - "id": "655f7", - "name": "zr1_ATTACK7_0_Attack_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f354b": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@f354b", - "displayName": "", - "id": "f354b", - "name": "zr1_ATTACK7_0_Attack_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "82f6d": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@82f6d", - "displayName": "", - "id": "82f6d", - "name": "zr1_ATTACK7_0_Attack_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "45e10": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@45e10", - "displayName": "", - "id": "45e10", - "name": "zr1_ATTACK7_0_Attack_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e4de9": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@e4de9", - "displayName": "", - "id": "e4de9", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b8690": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b8690", - "displayName": "", - "id": "b8690", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2b6f1": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@2b6f1", - "displayName": "", - "id": "2b6f1", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4cd3d": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@4cd3d", - "displayName": "", - "id": "4cd3d", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b03b7": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b03b7", - "displayName": "", - "id": "b03b7", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8459f": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@8459f", - "displayName": "", - "id": "8459f", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5085c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@5085c", - "displayName": "", - "id": "5085c", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "38c89": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@38c89", - "displayName": "", - "id": "38c89", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a54e5": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@a54e5", - "displayName": "", - "id": "a54e5", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb3b9": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@eb3b9", - "displayName": "", - "id": "eb3b9", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "09725": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@09725", - "displayName": "", - "id": "09725", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ec646": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@ec646", - "displayName": "", - "id": "ec646", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a551d": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@a551d", - "displayName": "", - "id": "a551d", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "246c7": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@246c7", - "displayName": "", - "id": "246c7", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f0a73": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@f0a73", - "displayName": "", - "id": "f0a73", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "234d0": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@234d0", - "displayName": "", - "id": "234d0", - "name": "zr1_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7f369": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@7f369", - "displayName": "", - "id": "7f369", - "name": "zr1_DEATH0_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "be377": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@be377", - "displayName": "", - "id": "be377", - "name": "zr1_DEATH0_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "91a58": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@91a58", - "displayName": "", - "id": "91a58", - "name": "zr1_DEATH0_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e2bcb": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@e2bcb", - "displayName": "", - "id": "e2bcb", - "name": "zr1_DEATH0_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "93ff6": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@93ff6", - "displayName": "", - "id": "93ff6", - "name": "zr1_DEATH0_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "80d74": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@80d74", - "displayName": "", - "id": "80d74", - "name": "zr1_DEATH0_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6a733": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@6a733", - "displayName": "", - "id": "6a733", - "name": "zr1_DEATH0_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cff29": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@cff29", - "displayName": "", - "id": "cff29", - "name": "zr1_DEATH0_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50afc": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@50afc", - "displayName": "", - "id": "50afc", - "name": "zr1_DEATH0_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2b415": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@2b415", - "displayName": "", - "id": "2b415", - "name": "zr1_DEATH0_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cb0f4": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@cb0f4", - "displayName": "", - "id": "cb0f4", - "name": "zr1_DEATH0_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "caea5": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@caea5", - "displayName": "", - "id": "caea5", - "name": "zr1_DEATH0_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a6863": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@a6863", - "displayName": "", - "id": "a6863", - "name": "zr1_DEATH0_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "44f6c": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@44f6c", - "displayName": "", - "id": "44f6c", - "name": "zr1_DEATH0_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "329a8": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@329a8", - "displayName": "", - "id": "329a8", - "name": "zr1_DEATH0_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "798fd": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@798fd", - "displayName": "", - "id": "798fd", - "name": "zr1_DEATH0_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2f975": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@2f975", - "displayName": "", - "id": "2f975", - "name": "zr1_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c6648": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@c6648", - "displayName": "", - "id": "c6648", - "name": "zr1_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2ada7": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@2ada7", - "displayName": "", - "id": "2ada7", - "name": "zr1_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eae7b": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@eae7b", - "displayName": "", - "id": "eae7b", - "name": "zr1_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a3b97": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@a3b97", - "displayName": "", - "id": "a3b97", - "name": "zr1_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4eb63": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@4eb63", - "displayName": "", - "id": "4eb63", - "name": "zr1_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9271e": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@9271e", - "displayName": "", - "id": "9271e", - "name": "zr1_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "81d84": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@81d84", - "displayName": "", - "id": "81d84", - "name": "zr1_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6df0": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@d6df0", - "displayName": "", - "id": "d6df0", - "name": "zr1_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b344e": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b344e", - "displayName": "", - "id": "b344e", - "name": "zr1_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c6007": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@c6007", - "displayName": "", - "id": "c6007", - "name": "zr1_MOVE0_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4759f": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@4759f", - "displayName": "", - "id": "4759f", - "name": "zr1_MOVE0_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b63aa": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b63aa", - "displayName": "", - "id": "b63aa", - "name": "zr1_MOVE0_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3cac1": { - "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@3cac1", - "displayName": "", - "id": "3cac1", - "name": "zr1_MOVE0_0_move_0-5", + "id": "43074", + "name": "a4_IDLE0_0_idle_0-8", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 1561, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "46381": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@46381", + "displayName": "", + "id": "46381", + "name": "a1_ATTACK0_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, "trimY": 1, "width": 128, "height": 128, @@ -9472,8 +410,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "trimType": "auto" }, "ver": "1.0.12", @@ -9483,12 +421,7740 @@ ], "subMetas": {} }, - "c041f": { + "63241": { "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@c041f", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@63241", "displayName": "", - "id": "c041f", - "name": "zr1_MOVE0_0_move_0-6", + "id": "63241", + "name": "a4_ATTACK1_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "69473": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@69473", + "displayName": "", + "id": "69473", + "name": "a3_ATTACK4_0_Attack_Bow_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "73592": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@73592", + "displayName": "", + "id": "73592", + "name": "a2_ATTACK4_0_Attack_Bow_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "85704": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@85704", + "displayName": "", + "id": "85704", + "name": "a1_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "90810": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@90810", + "displayName": "", + "id": "90810", + "name": "a2_ATTACK1_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "92027": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@92027", + "displayName": "", + "id": "92027", + "name": "a1_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "93898": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@93898", + "displayName": "", + "id": "93898", + "name": "a2_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "95945": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@95945", + "displayName": "", + "id": "95945", + "name": "a2_ATTACK4_0_Attack_Bow_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "98226": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@98226", + "displayName": "", + "id": "98226", + "name": "a2_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e9823": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e9823", + "displayName": "", + "id": "e9823", + "name": "a1_ATTACK0_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "598fa": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@598fa", + "displayName": "", + "id": "598fa", + "name": "a1_ATTACK0_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2ac56": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@2ac56", + "displayName": "", + "id": "2ac56", + "name": "a1_ATTACK0_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5328c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@5328c", + "displayName": "", + "id": "5328c", + "name": "a1_ATTACK0_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "164e0": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@164e0", + "displayName": "", + "id": "164e0", + "name": "a1_ATTACK0_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "02442": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@02442", + "displayName": "", + "id": "02442", + "name": "a1_ATTACK0_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d5f9e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@d5f9e", + "displayName": "", + "id": "d5f9e", + "name": "a1_ATTACK0_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cea12": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@cea12", + "displayName": "", + "id": "cea12", + "name": "a1_ATTACK1_0_Attack_Bow_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0b41a": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@0b41a", + "displayName": "", + "id": "0b41a", + "name": "a1_ATTACK1_0_Attack_Bow_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f4d14": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@f4d14", + "displayName": "", + "id": "f4d14", + "name": "a1_ATTACK1_0_Attack_Bow_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1b9a8": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@1b9a8", + "displayName": "", + "id": "1b9a8", + "name": "a1_ATTACK1_0_Attack_Bow_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "800f0": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@800f0", + "displayName": "", + "id": "800f0", + "name": "a1_ATTACK1_0_Attack_Bow_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "345a2": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@345a2", + "displayName": "", + "id": "345a2", + "name": "a1_ATTACK1_0_Attack_Bow_0-14", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d911c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@d911c", + "displayName": "", + "id": "d911c", + "name": "a1_ATTACK1_0_Attack_Bow_0-15", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "418e0": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@418e0", + "displayName": "", + "id": "418e0", + "name": "a1_ATTACK1_0_Attack_Bow_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "21d56": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@21d56", + "displayName": "", + "id": "21d56", + "name": "a1_ATTACK1_0_Attack_Bow_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8aa15": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@8aa15", + "displayName": "", + "id": "8aa15", + "name": "a1_ATTACK1_0_Attack_Bow_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "98a04": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@98a04", + "displayName": "", + "id": "98a04", + "name": "a1_ATTACK1_0_Attack_Bow_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ab77c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@ab77c", + "displayName": "", + "id": "ab77c", + "name": "a1_ATTACK1_0_Attack_Bow_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3c145": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@3c145", + "displayName": "", + "id": "3c145", + "name": "a1_ATTACK1_0_Attack_Bow_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9cdac": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@9cdac", + "displayName": "", + "id": "9cdac", + "name": "a1_ATTACK1_0_Attack_Bow_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "23fda": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@23fda", + "displayName": "", + "id": "23fda", + "name": "a1_ATTACK1_0_Attack_Bow_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5a47e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@5a47e", + "displayName": "", + "id": "5a47e", + "name": "a1_ATTACK2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f26c6": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@f26c6", + "displayName": "", + "id": "f26c6", + "name": "a1_ATTACK2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4abe8": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@4abe8", + "displayName": "", + "id": "4abe8", + "name": "a1_ATTACK2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f51f4": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@f51f4", + "displayName": "", + "id": "f51f4", + "name": "a1_ATTACK2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "48a32": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@48a32", + "displayName": "", + "id": "48a32", + "name": "a1_ATTACK2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "761bc": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@761bc", + "displayName": "", + "id": "761bc", + "name": "a1_ATTACK2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "70ef7": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@70ef7", + "displayName": "", + "id": "70ef7", + "name": "a1_ATTACK2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dddeb": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@dddeb", + "displayName": "", + "id": "dddeb", + "name": "a1_ATTACK2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2b5f0": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@2b5f0", + "displayName": "", + "id": "2b5f0", + "name": "a1_ATTACK2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "94bad": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@94bad", + "displayName": "", + "id": "94bad", + "name": "a1_ATTACK2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "850d9": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@850d9", + "displayName": "", + "id": "850d9", + "name": "a1_ATTACK2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e79b7": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e79b7", + "displayName": "", + "id": "e79b7", + "name": "a1_ATTACK2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2cd62": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@2cd62", + "displayName": "", + "id": "2cd62", + "name": "a1_ATTACK2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d748d": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@d748d", + "displayName": "", + "id": "d748d", + "name": "a1_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4d3d4": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@4d3d4", + "displayName": "", + "id": "4d3d4", + "name": "a1_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "295fd": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@295fd", + "displayName": "", + "id": "295fd", + "name": "a1_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7bb9f": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@7bb9f", + "displayName": "", + "id": "7bb9f", + "name": "a1_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5cd54": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@5cd54", + "displayName": "", + "id": "5cd54", + "name": "a1_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "28ccb": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@28ccb", + "displayName": "", + "id": "28ccb", + "name": "a1_MOVE0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5c1ba": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@5c1ba", + "displayName": "", + "id": "5c1ba", + "name": "a1_MOVE0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bca30": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@bca30", + "displayName": "", + "id": "bca30", + "name": "a1_MOVE0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6d60e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@6d60e", + "displayName": "", + "id": "6d60e", + "name": "a1_MOVE0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e67ee": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e67ee", + "displayName": "", + "id": "e67ee", + "name": "a1_MOVE0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f11ef": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@f11ef", + "displayName": "", + "id": "f11ef", + "name": "a1_MOVE0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "378ca": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@378ca", + "displayName": "", + "id": "378ca", + "name": "a2_ATTACK0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ee1a2": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@ee1a2", + "displayName": "", + "id": "ee1a2", + "name": "a2_ATTACK0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8d3f0": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@8d3f0", + "displayName": "", + "id": "8d3f0", + "name": "a2_ATTACK0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a44ec": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@a44ec", + "displayName": "", + "id": "a44ec", + "name": "a2_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "775aa": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@775aa", + "displayName": "", + "id": "775aa", + "name": "a2_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a7cad": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@a7cad", + "displayName": "", + "id": "a7cad", + "name": "a2_ATTACK1_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "081ac": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@081ac", + "displayName": "", + "id": "081ac", + "name": "a2_ATTACK1_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8fc27": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@8fc27", + "displayName": "", + "id": "8fc27", + "name": "a2_ATTACK1_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "94f5e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@94f5e", + "displayName": "", + "id": "94f5e", + "name": "a2_ATTACK1_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bc38a": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@bc38a", + "displayName": "", + "id": "bc38a", + "name": "a2_ATTACK1_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "76fc6": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@76fc6", + "displayName": "", + "id": "76fc6", + "name": "a2_ATTACK1_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d2151": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@d2151", + "displayName": "", + "id": "d2151", + "name": "a2_ATTACK1_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "08d14": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@08d14", + "displayName": "", + "id": "08d14", + "name": "a2_ATTACK1_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e0a5b": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e0a5b", + "displayName": "", + "id": "e0a5b", + "name": "a2_ATTACK4_0_Attack_Bow_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "62e7f": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@62e7f", + "displayName": "", + "id": "62e7f", + "name": "a2_ATTACK4_0_Attack_Bow_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "920c0": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@920c0", + "displayName": "", + "id": "920c0", + "name": "a2_ATTACK4_0_Attack_Bow_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8f845": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@8f845", + "displayName": "", + "id": "8f845", + "name": "a2_ATTACK4_0_Attack_Bow_0-13", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "81ade": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@81ade", + "displayName": "", + "id": "81ade", + "name": "a2_ATTACK4_0_Attack_Bow_0-14", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4d224": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@4d224", + "displayName": "", + "id": "4d224", + "name": "a2_ATTACK4_0_Attack_Bow_0-15", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e0882": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e0882", + "displayName": "", + "id": "e0882", + "name": "a2_ATTACK4_0_Attack_Bow_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e53d6": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e53d6", + "displayName": "", + "id": "e53d6", + "name": "a2_ATTACK4_0_Attack_Bow_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0803a": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@0803a", + "displayName": "", + "id": "0803a", + "name": "a2_ATTACK4_0_Attack_Bow_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c891e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@c891e", + "displayName": "", + "id": "c891e", + "name": "a2_ATTACK4_0_Attack_Bow_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "01ec2": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@01ec2", + "displayName": "", + "id": "01ec2", + "name": "a2_ATTACK4_0_Attack_Bow_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ffb04": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@ffb04", + "displayName": "", + "id": "ffb04", + "name": "a2_ATTACK4_0_Attack_Bow_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6a4f9": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@6a4f9", + "displayName": "", + "id": "6a4f9", + "name": "a2_ATTACK4_0_Attack_Bow_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9e70e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@9e70e", + "displayName": "", + "id": "9e70e", + "name": "a2_ATTACK4_0_Attack_Bow_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4fb61": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@4fb61", + "displayName": "", + "id": "4fb61", + "name": "a2_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3e6c5": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@3e6c5", + "displayName": "", + "id": "3e6c5", + "name": "a2_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4932f": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@4932f", + "displayName": "", + "id": "4932f", + "name": "a2_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "be134": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@be134", + "displayName": "", + "id": "be134", + "name": "a2_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6dffd": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@6dffd", + "displayName": "", + "id": "6dffd", + "name": "a2_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e8c23": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e8c23", + "displayName": "", + "id": "e8c23", + "name": "a2_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4fa63": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@4fa63", + "displayName": "", + "id": "4fa63", + "name": "a2_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b0402": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@b0402", + "displayName": "", + "id": "b0402", + "name": "a2_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4f9cd": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@4f9cd", + "displayName": "", + "id": "4f9cd", + "name": "a2_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e143d": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e143d", + "displayName": "", + "id": "e143d", + "name": "a2_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ff726": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@ff726", + "displayName": "", + "id": "ff726", + "name": "a2_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5f6f4": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@5f6f4", + "displayName": "", + "id": "5f6f4", + "name": "a2_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9732d": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@9732d", + "displayName": "", + "id": "9732d", + "name": "a2_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b2cd5": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@b2cd5", + "displayName": "", + "id": "b2cd5", + "name": "a2_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7e86e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@7e86e", + "displayName": "", + "id": "7e86e", + "name": "a2_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b58b4": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@b58b4", + "displayName": "", + "id": "b58b4", + "name": "a2_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "165f7": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@165f7", + "displayName": "", + "id": "165f7", + "name": "a2_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "08770": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@08770", + "displayName": "", + "id": "08770", + "name": "a2_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6ff7e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@6ff7e", + "displayName": "", + "id": "6ff7e", + "name": "a2_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6dcbf": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@6dcbf", + "displayName": "", + "id": "6dcbf", + "name": "a3_ATTACK0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9592c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@9592c", + "displayName": "", + "id": "9592c", + "name": "a3_ATTACK0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8b83b": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@8b83b", + "displayName": "", + "id": "8b83b", + "name": "a3_ATTACK0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "84bee": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@84bee", + "displayName": "", + "id": "84bee", + "name": "a3_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b64af": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@b64af", + "displayName": "", + "id": "b64af", + "name": "a3_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a831a": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@a831a", + "displayName": "", + "id": "a831a", + "name": "a3_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2c1ea": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@2c1ea", + "displayName": "", + "id": "2c1ea", + "name": "a3_ATTACK1_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e3719": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e3719", + "displayName": "", + "id": "e3719", + "name": "a3_ATTACK1_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "417f7": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@417f7", + "displayName": "", + "id": "417f7", + "name": "a3_ATTACK1_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1bdaa": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@1bdaa", + "displayName": "", + "id": "1bdaa", + "name": "a3_ATTACK1_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2c8e7": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@2c8e7", + "displayName": "", + "id": "2c8e7", + "name": "a3_ATTACK1_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "36b73": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@36b73", + "displayName": "", + "id": "36b73", + "name": "a3_ATTACK1_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fde92": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@fde92", + "displayName": "", + "id": "fde92", + "name": "a3_ATTACK1_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3d326": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@3d326", + "displayName": "", + "id": "3d326", + "name": "a3_ATTACK1_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "aac63": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@aac63", + "displayName": "", + "id": "aac63", + "name": "a3_ATTACK1_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1d762": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@1d762", + "displayName": "", + "id": "1d762", + "name": "a3_ATTACK4_0_Attack_Bow_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a5f7c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@a5f7c", + "displayName": "", + "id": "a5f7c", + "name": "a3_ATTACK4_0_Attack_Bow_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8f05c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@8f05c", + "displayName": "", + "id": "8f05c", + "name": "a3_ATTACK4_0_Attack_Bow_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bae36": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@bae36", + "displayName": "", + "id": "bae36", + "name": "a3_ATTACK4_0_Attack_Bow_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "741b3": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@741b3", + "displayName": "", + "id": "741b3", + "name": "a3_ATTACK4_0_Attack_Bow_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7eca1": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@7eca1", + "displayName": "", + "id": "7eca1", + "name": "a3_ATTACK4_0_Attack_Bow_0-13", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d45dc": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@d45dc", + "displayName": "", + "id": "d45dc", + "name": "a3_ATTACK4_0_Attack_Bow_0-14", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "72cc4": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@72cc4", + "displayName": "", + "id": "72cc4", + "name": "a3_ATTACK4_0_Attack_Bow_0-15", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "610d9": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@610d9", + "displayName": "", + "id": "610d9", + "name": "a3_ATTACK4_0_Attack_Bow_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e385a": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e385a", + "displayName": "", + "id": "e385a", + "name": "a3_ATTACK4_0_Attack_Bow_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bd1ab": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@bd1ab", + "displayName": "", + "id": "bd1ab", + "name": "a3_ATTACK4_0_Attack_Bow_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5670e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@5670e", + "displayName": "", + "id": "5670e", + "name": "a3_ATTACK4_0_Attack_Bow_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0a55a": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@0a55a", + "displayName": "", + "id": "0a55a", + "name": "a3_ATTACK4_0_Attack_Bow_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "88d75": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@88d75", + "displayName": "", + "id": "88d75", + "name": "a3_ATTACK4_0_Attack_Bow_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0d6fb": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@0d6fb", + "displayName": "", + "id": "0d6fb", + "name": "a3_ATTACK4_0_Attack_Bow_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b7500": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@b7500", + "displayName": "", + "id": "b7500", + "name": "a3_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "799c1": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@799c1", + "displayName": "", + "id": "799c1", + "name": "a3_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "89b44": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@89b44", + "displayName": "", + "id": "89b44", + "name": "a3_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "204c2": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@204c2", + "displayName": "", + "id": "204c2", + "name": "a3_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ef8a1": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@ef8a1", + "displayName": "", + "id": "ef8a1", + "name": "a3_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5e04f": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@5e04f", + "displayName": "", + "id": "5e04f", + "name": "a3_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c6568": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@c6568", + "displayName": "", + "id": "c6568", + "name": "a3_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e6c21": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e6c21", + "displayName": "", + "id": "e6c21", + "name": "a3_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a2556": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@a2556", + "displayName": "", + "id": "a2556", + "name": "a3_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a7a2d": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@a7a2d", + "displayName": "", + "id": "a7a2d", + "name": "a3_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e838b": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e838b", + "displayName": "", + "id": "e838b", + "name": "a3_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d8a81": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@d8a81", + "displayName": "", + "id": "d8a81", + "name": "a3_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ca166": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@ca166", + "displayName": "", + "id": "ca166", + "name": "a3_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1909c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@1909c", + "displayName": "", + "id": "1909c", + "name": "a3_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c02b4": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@c02b4", + "displayName": "", + "id": "c02b4", + "name": "a3_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "294f8": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@294f8", + "displayName": "", + "id": "294f8", + "name": "a3_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e2bdd": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e2bdd", + "displayName": "", + "id": "e2bdd", + "name": "a3_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c9436": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@c9436", + "displayName": "", + "id": "c9436", + "name": "a3_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "786b6": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@786b6", + "displayName": "", + "id": "786b6", + "name": "a3_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e265c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e265c", + "displayName": "", + "id": "e265c", + "name": "a3_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3ec3d": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@3ec3d", + "displayName": "", + "id": "3ec3d", + "name": "a3_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bbd0f": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@bbd0f", + "displayName": "", + "id": "bbd0f", + "name": "a3_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7c477": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@7c477", + "displayName": "", + "id": "7c477", + "name": "a4_ATTACK0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "220eb": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@220eb", + "displayName": "", + "id": "220eb", + "name": "a4_ATTACK0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "feb53": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@feb53", + "displayName": "", + "id": "feb53", + "name": "a4_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f2a40": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@f2a40", + "displayName": "", + "id": "f2a40", + "name": "a4_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a3a51": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@a3a51", + "displayName": "", + "id": "a3a51", + "name": "a4_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2f696": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@2f696", + "displayName": "", + "id": "2f696", + "name": "a4_ATTACK1_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3d82f": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@3d82f", + "displayName": "", + "id": "3d82f", + "name": "a4_ATTACK1_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ef386": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@ef386", + "displayName": "", + "id": "ef386", + "name": "a4_ATTACK1_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7979e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@7979e", + "displayName": "", + "id": "7979e", + "name": "a4_ATTACK1_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3a151": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@3a151", + "displayName": "", + "id": "3a151", + "name": "a4_ATTACK1_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f8b16": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@f8b16", + "displayName": "", + "id": "f8b16", + "name": "a4_ATTACK1_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c8b5f": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@c8b5f", + "displayName": "", + "id": "c8b5f", + "name": "a4_ATTACK1_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d7748": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@d7748", + "displayName": "", + "id": "d7748", + "name": "a4_ATTACK1_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "00f58": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@00f58", + "displayName": "", + "id": "00f58", + "name": "a4_ATTACK4_0_Attack_Bow_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f0318": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@f0318", + "displayName": "", + "id": "f0318", + "name": "a4_ATTACK4_0_Attack_Bow_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ee8ec": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@ee8ec", + "displayName": "", + "id": "ee8ec", + "name": "a4_ATTACK4_0_Attack_Bow_0-10", "userData": { "trimThreshold": 1, "rotated": false, @@ -9518,8 +8184,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "trimType": "auto" }, "ver": "1.0.12", @@ -9529,12 +8195,12 @@ ], "subMetas": {} }, - "b52db": { + "3739f": { "importer": "sprite-frame", - "uuid": "66e28322-67db-44f8-b67b-217a509fe257@b52db", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@3739f", "displayName": "", - "id": "b52db", - "name": "zr1_MOVE0_0_move_0-7", + "id": "3739f", + "name": "a4_ATTACK4_0_Attack_Bow_0-11", "userData": { "trimThreshold": 1, "rotated": false, @@ -9564,8 +8230,1526 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "atlasUuid": "66e28322-67db-44f8-b67b-217a509fe257", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ee8b7": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@ee8b7", + "displayName": "", + "id": "ee8b7", + "name": "a4_ATTACK4_0_Attack_Bow_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "900b7": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@900b7", + "displayName": "", + "id": "900b7", + "name": "a4_ATTACK4_0_Attack_Bow_0-13", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c7ee2": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@c7ee2", + "displayName": "", + "id": "c7ee2", + "name": "a4_ATTACK4_0_Attack_Bow_0-14", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "41f25": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@41f25", + "displayName": "", + "id": "41f25", + "name": "a4_ATTACK4_0_Attack_Bow_0-15", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4754b": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@4754b", + "displayName": "", + "id": "4754b", + "name": "a4_ATTACK4_0_Attack_Bow_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "684f7": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@684f7", + "displayName": "", + "id": "684f7", + "name": "a4_ATTACK4_0_Attack_Bow_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e5724": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e5724", + "displayName": "", + "id": "e5724", + "name": "a4_ATTACK4_0_Attack_Bow_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f13dc": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@f13dc", + "displayName": "", + "id": "f13dc", + "name": "a4_ATTACK4_0_Attack_Bow_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e4691": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e4691", + "displayName": "", + "id": "e4691", + "name": "a4_ATTACK4_0_Attack_Bow_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d1dcb": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@d1dcb", + "displayName": "", + "id": "d1dcb", + "name": "a4_ATTACK4_0_Attack_Bow_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9974c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@9974c", + "displayName": "", + "id": "9974c", + "name": "a4_ATTACK4_0_Attack_Bow_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dc2f1": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@dc2f1", + "displayName": "", + "id": "dc2f1", + "name": "a4_ATTACK4_0_Attack_Bow_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e6c6a": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@e6c6a", + "displayName": "", + "id": "e6c6a", + "name": "a4_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "31af0": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@31af0", + "displayName": "", + "id": "31af0", + "name": "a4_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1ed0c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@1ed0c", + "displayName": "", + "id": "1ed0c", + "name": "a4_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cdaea": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@cdaea", + "displayName": "", + "id": "cdaea", + "name": "a4_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a5abd": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@a5abd", + "displayName": "", + "id": "a5abd", + "name": "a4_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "88e30": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@88e30", + "displayName": "", + "id": "88e30", + "name": "a4_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cb273": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@cb273", + "displayName": "", + "id": "cb273", + "name": "a4_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d919d": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@d919d", + "displayName": "", + "id": "d919d", + "name": "a4_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7b3f5": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@7b3f5", + "displayName": "", + "id": "7b3f5", + "name": "a4_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cb3ad": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@cb3ad", + "displayName": "", + "id": "cb3ad", + "name": "a4_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2ebde": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@2ebde", + "displayName": "", + "id": "2ebde", + "name": "a4_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bc6e1": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@bc6e1", + "displayName": "", + "id": "bc6e1", + "name": "a4_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8c1a1": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@8c1a1", + "displayName": "", + "id": "8c1a1", + "name": "a4_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3ae4c": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@3ae4c", + "displayName": "", + "id": "3ae4c", + "name": "a4_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5534d": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@5534d", + "displayName": "", + "id": "5534d", + "name": "a4_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7f70f": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@7f70f", + "displayName": "", + "id": "7f70f", + "name": "a4_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "63eb3": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@63eb3", + "displayName": "", + "id": "63eb3", + "name": "a4_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1095e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@1095e", + "displayName": "", + "id": "1095e", + "name": "a4_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d129e": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@d129e", + "displayName": "", + "id": "d129e", + "name": "a4_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1a870": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@1a870", + "displayName": "", + "id": "1a870", + "name": "a4_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "84dff": { + "importer": "sprite-frame", + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05@84dff", + "displayName": "", + "id": "84dff", + "name": "a4_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "atlasUuid": "1fda2882-2baf-4446-96cc-492ef2722f05", "trimType": "auto" }, "ver": "1.0.12", @@ -9577,9 +9761,9 @@ } }, "userData": { - "atlasTextureName": "m2zr1.png", + "atlasTextureName": "a1234.png", "format": 3, - "uuid": "66e28322-67db-44f8-b67b-217a509fe257", - "textureUuid": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a" + "uuid": "1fda2882-2baf-4446-96cc-492ef2722f05", + "textureUuid": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a" } } diff --git a/assets/resources/game/heros/hero/a1234.png b/assets/resources/game/heros/hero/a1234.png new file mode 100644 index 00000000..bbfda056 Binary files /dev/null and b/assets/resources/game/heros/hero/a1234.png differ diff --git a/assets/resources/game/heros/hero/be123.png.meta b/assets/resources/game/heros/hero/a1234.png.meta similarity index 71% rename from assets/resources/game/heros/hero/be123.png.meta rename to assets/resources/game/heros/hero/a1234.png.meta index 957156f1..e2293b31 100644 --- a/assets/resources/game/heros/hero/be123.png.meta +++ b/assets/resources/game/heros/hero/a1234.png.meta @@ -2,7 +2,7 @@ "ver": "1.0.27", "importer": "image", "imported": true, - "uuid": "19d24e7b-440b-46b5-8f05-c3090661d736", + "uuid": "f715eece-d5c2-4813-9f80-2cda39c3a706", "files": [ ".json", ".png" @@ -10,8 +10,8 @@ "subMetas": { "6c48a": { "importer": "texture", - "uuid": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "displayName": "be123", + "uuid": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a", + "displayName": "a1234", "id": "6c48a", "name": "texture", "userData": { @@ -22,7 +22,7 @@ "mipfilter": "none", "anisotropy": 0, "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736", + "imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706", "visible": false }, "ver": "1.0.22", @@ -37,6 +37,6 @@ "type": "texture", "hasAlpha": true, "fixAlphaTransparencyArtifacts": false, - "redirect": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a" + "redirect": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a" } } diff --git a/assets/resources/game/heros/hero/a1c1.png b/assets/resources/game/heros/hero/a1c1.png deleted file mode 100644 index 72d48487..00000000 Binary files a/assets/resources/game/heros/hero/a1c1.png and /dev/null differ diff --git a/assets/resources/game/heros/hero/a2.meta b/assets/resources/game/heros/hero/a2.meta new file mode 100644 index 00000000..ebf90a04 --- /dev/null +++ b/assets/resources/game/heros/hero/a2.meta @@ -0,0 +1 @@ +{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"89017205-6a1d-4903-936f-c405888094bd","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm5/atk0.anim b/assets/resources/game/heros/hero/a2/atk0.anim similarity index 98% rename from assets/resources/game/heros/hero/hm5/atk0.anim rename to assets/resources/game/heros/hero/a2/atk0.anim index a0ff8e56..975e83fa 100644 --- a/assets/resources/game/heros/hero/hm5/atk0.anim +++ b/assets/resources/game/heros/hero/a2/atk0.anim @@ -7,7 +7,7 @@ "embeddedPlayerGroups": [] }, "_native": "", - "sample": 20, + "sample": 30, "speed": 1, "wrapMode": 1, "enableTrsBlending": false, diff --git a/assets/resources/game/heros/hero/ha2/atk0.anim.meta b/assets/resources/game/heros/hero/a2/atk0.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/ha2/atk0.anim.meta rename to assets/resources/game/heros/hero/a2/atk0.anim.meta index bd6e29a5..4d7fbeba 100644 --- a/assets/resources/game/heros/hero/ha2/atk0.anim.meta +++ b/assets/resources/game/heros/hero/a2/atk0.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"27842cf4-9691-47b9-ae2f-a2d75599eb20","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"cd3e0604-8840-4794-8755-f2ed86dbe264","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm5/idle.anim b/assets/resources/game/heros/hero/a2/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/hm5/idle.anim rename to assets/resources/game/heros/hero/a2/idle.anim diff --git a/assets/resources/game/heros/hero/ha3/idle.anim.meta b/assets/resources/game/heros/hero/a2/idle.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/ha3/idle.anim.meta rename to assets/resources/game/heros/hero/a2/idle.anim.meta index 368f8fcb..8da04bad 100644 --- a/assets/resources/game/heros/hero/ha3/idle.anim.meta +++ b/assets/resources/game/heros/hero/a2/idle.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a8017a4f-e079-4b37-b0ce-647a5c68e11a","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"5d85a577-a49f-4ddc-a7b7-12a2721081d3","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm5/max0.anim b/assets/resources/game/heros/hero/a2/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/hm5/max0.anim rename to assets/resources/game/heros/hero/a2/max0.anim diff --git a/assets/resources/game/heros/hero/ha3/max0.anim.meta b/assets/resources/game/heros/hero/a2/max0.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/ha3/max0.anim.meta rename to assets/resources/game/heros/hero/a2/max0.anim.meta index bb48bbb6..2de24d05 100644 --- a/assets/resources/game/heros/hero/ha3/max0.anim.meta +++ b/assets/resources/game/heros/hero/a2/max0.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c4f77aa9-cf65-4577-96eb-50fcb7b9ed72","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"774fcb32-b38f-4a74-a602-07b6115e8d64","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm5/max1.anim b/assets/resources/game/heros/hero/a2/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/hm5/max1.anim rename to assets/resources/game/heros/hero/a2/max1.anim diff --git a/assets/resources/game/heros/hero/ha3/max1.anim.meta b/assets/resources/game/heros/hero/a2/max1.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/ha3/max1.anim.meta rename to assets/resources/game/heros/hero/a2/max1.anim.meta index f20fb33a..79f87cc5 100644 --- a/assets/resources/game/heros/hero/ha3/max1.anim.meta +++ b/assets/resources/game/heros/hero/a2/max1.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b5e9db6a-bad1-45a4-a01a-06c81519aab9","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a6bf4efc-ad53-4f37-b972-8fd0eb7f2ee6","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hm5/move.anim b/assets/resources/game/heros/hero/a2/move.anim similarity index 100% rename from assets/resources/game/heros/hero/hm5/move.anim rename to assets/resources/game/heros/hero/a2/move.anim diff --git a/assets/resources/game/heros/hero/ha2/move.anim.meta b/assets/resources/game/heros/hero/a2/move.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/ha2/move.anim.meta rename to assets/resources/game/heros/hero/a2/move.anim.meta index 47f4a15b..3f9da129 100644 --- a/assets/resources/game/heros/hero/ha2/move.anim.meta +++ b/assets/resources/game/heros/hero/a2/move.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"04b4ebf7-303b-495f-a3e9-640831dbb353","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"6e473d77-a270-42c3-adc7-c675666f280d","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hm2.meta b/assets/resources/game/heros/hero/a3.meta similarity index 54% rename from assets/resources/game/heros/hero/hm2.meta rename to assets/resources/game/heros/hero/a3.meta index 324a7482..d6f4d484 100644 --- a/assets/resources/game/heros/hero/hm2.meta +++ b/assets/resources/game/heros/hero/a3.meta @@ -1 +1 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"6323436f-9210-4d23-972d-afc22682c940","files":[],"subMetas":{},"userData":{}} +{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"633e4cde-ab87-41ca-b2f3-729d8c5846e2","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm5/dead.anim b/assets/resources/game/heros/hero/a3/atk0.anim similarity index 98% rename from assets/resources/game/heros/hero/hm5/dead.anim rename to assets/resources/game/heros/hero/a3/atk0.anim index 85990173..975e83fa 100644 --- a/assets/resources/game/heros/hero/hm5/dead.anim +++ b/assets/resources/game/heros/hero/a3/atk0.anim @@ -1,7 +1,7 @@ [ { "__type__": "cc.AnimationClip", - "_name": "dead", + "_name": "atk0", "_objFlags": 0, "__editorExtras__": { "embeddedPlayerGroups": [] diff --git a/assets/resources/game/heros/hero/ha3/atk0.anim.meta b/assets/resources/game/heros/hero/a3/atk0.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/ha3/atk0.anim.meta rename to assets/resources/game/heros/hero/a3/atk0.anim.meta index 69042f59..238cf9e8 100644 --- a/assets/resources/game/heros/hero/ha3/atk0.anim.meta +++ b/assets/resources/game/heros/hero/a3/atk0.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b277aa55-1679-493f-8e83-dcda712bb82d","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"574966fb-4a2d-4f05-ab7c-b7603d6cfce2","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm8/idle.anim b/assets/resources/game/heros/hero/a3/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/hm8/idle.anim rename to assets/resources/game/heros/hero/a3/idle.anim diff --git a/assets/resources/game/heros/hero/ha2/idle.anim.meta b/assets/resources/game/heros/hero/a3/idle.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/ha2/idle.anim.meta rename to assets/resources/game/heros/hero/a3/idle.anim.meta index 3d4360b6..8f71c035 100644 --- a/assets/resources/game/heros/hero/ha2/idle.anim.meta +++ b/assets/resources/game/heros/hero/a3/idle.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"0917b75e-39ac-489a-ade3-a971011e4e0a","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"179d8551-31f3-43a9-a55d-1dd1bf0a48c6","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm8/max0.anim b/assets/resources/game/heros/hero/a3/max0.anim similarity index 96% rename from assets/resources/game/heros/hero/hm8/max0.anim rename to assets/resources/game/heros/hero/a3/max0.anim index a8c57608..c7db34eb 100644 --- a/assets/resources/game/heros/hero/hm8/max0.anim +++ b/assets/resources/game/heros/hero/a3/max0.anim @@ -1,13 +1,13 @@ [ { "__type__": "cc.AnimationClip", - "_name": "max", + "_name": "max0", "_objFlags": 0, "__editorExtras__": { "embeddedPlayerGroups": [] }, "_native": "", - "sample": 15, + "sample": 20, "speed": 1, "wrapMode": 1, "enableTrsBlending": false, diff --git a/assets/resources/game/heros/hero/hc1/max0.anim.meta b/assets/resources/game/heros/hero/a3/max0.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/hc1/max0.anim.meta rename to assets/resources/game/heros/hero/a3/max0.anim.meta index b06699f6..66fc45bc 100644 --- a/assets/resources/game/heros/hero/hc1/max0.anim.meta +++ b/assets/resources/game/heros/hero/a3/max0.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"fbf32dae-f240-47a6-9aa5-b4f8b01a87af","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1110692e-6a26-4b5d-9ced-74990a5d6151","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm8/max1.anim b/assets/resources/game/heros/hero/a3/max1.anim similarity index 98% rename from assets/resources/game/heros/hero/hm8/max1.anim rename to assets/resources/game/heros/hero/a3/max1.anim index 89897189..14d5c32b 100644 --- a/assets/resources/game/heros/hero/hm8/max1.anim +++ b/assets/resources/game/heros/hero/a3/max1.anim @@ -7,7 +7,7 @@ "embeddedPlayerGroups": [] }, "_native": "", - "sample": 15, + "sample": 30, "speed": 1, "wrapMode": 1, "enableTrsBlending": false, diff --git a/assets/resources/game/heros/hero/hc1/max1.anim.meta b/assets/resources/game/heros/hero/a3/max1.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/hc1/max1.anim.meta rename to assets/resources/game/heros/hero/a3/max1.anim.meta index cdf8181d..258d150e 100644 --- a/assets/resources/game/heros/hero/hc1/max1.anim.meta +++ b/assets/resources/game/heros/hero/a3/max1.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"56628bc8-a6c1-4c3d-8326-8a28b03af883","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"2fcf90db-b183-4351-a01f-97f674a2d5e8","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hm8/move.anim b/assets/resources/game/heros/hero/a3/move.anim similarity index 100% rename from assets/resources/game/heros/hero/hm8/move.anim rename to assets/resources/game/heros/hero/a3/move.anim diff --git a/assets/resources/game/heros/hero/ha3/move.anim.meta b/assets/resources/game/heros/hero/a3/move.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/ha3/move.anim.meta rename to assets/resources/game/heros/hero/a3/move.anim.meta index 51e87113..70543f42 100644 --- a/assets/resources/game/heros/hero/ha3/move.anim.meta +++ b/assets/resources/game/heros/hero/a3/move.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"70d98337-6518-4d2f-a45e-6e7e6b3fd20c","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"74e35021-ee4c-4ece-b56c-2b05ea5fb030","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/a4.meta b/assets/resources/game/heros/hero/a4.meta new file mode 100644 index 00000000..42944061 --- /dev/null +++ b/assets/resources/game/heros/hero/a4.meta @@ -0,0 +1 @@ +{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"c0d039ce-1001-4764-a679-48254b94b223","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm8/atk0.anim b/assets/resources/game/heros/hero/a4/atk0.anim similarity index 96% rename from assets/resources/game/heros/hero/hm8/atk0.anim rename to assets/resources/game/heros/hero/a4/atk0.anim index 2fb98301..975e83fa 100644 --- a/assets/resources/game/heros/hero/hm8/atk0.anim +++ b/assets/resources/game/heros/hero/a4/atk0.anim @@ -1,13 +1,13 @@ [ { "__type__": "cc.AnimationClip", - "_name": "atk", + "_name": "atk0", "_objFlags": 0, "__editorExtras__": { "embeddedPlayerGroups": [] }, "_native": "", - "sample": 15, + "sample": 30, "speed": 1, "wrapMode": 1, "enableTrsBlending": false, diff --git a/assets/resources/game/heros/hero/hm2/max1.anim.meta b/assets/resources/game/heros/hero/a4/atk0.anim.meta similarity index 77% rename from assets/resources/game/heros/hero/hm2/max1.anim.meta rename to assets/resources/game/heros/hero/a4/atk0.anim.meta index d15c3997..840a7f30 100644 --- a/assets/resources/game/heros/hero/hm2/max1.anim.meta +++ b/assets/resources/game/heros/hero/a4/atk0.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"7dbb0c4a-79b1-4977-8ef6-b9535731faa5","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1f1bb53e-091b-46a6-b5f8-cf6b5337adcf","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/a4/idle.anim b/assets/resources/game/heros/hero/a4/idle.anim new file mode 100644 index 00000000..7e6765cd --- /dev/null +++ b/assets/resources/game/heros/hero/a4/idle.anim @@ -0,0 +1,71 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "idle", + "_objFlags": 0, + "__editorExtras__": { + "embeddedPlayerGroups": [] + }, + "_native": "", + "sample": 15, + "speed": 1, + "wrapMode": 2, + "enableTrsBlending": false, + "_duration": 0, + "_hash": 500763545, + "_tracks": [ + { + "__id__": 1 + } + ], + "_exoticAnimation": null, + "_events": [], + "_embeddedPlayers": [], + "_additiveSettings": { + "__id__": 6 + }, + "_auxiliaryCurveEntries": [] + }, + { + "__type__": "cc.animation.ObjectTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + }, + "proxy": null + }, + "_channel": { + "__id__": 4 + } + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 3 + }, + "spriteFrame" + ] + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.Sprite" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 5 + } + }, + { + "__type__": "cc.ObjectCurve", + "_times": [], + "_values": [] + }, + { + "__type__": "cc.AnimationClipAdditiveSettings", + "enabled": false, + "refClip": null + } +] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hc1/idle.anim.meta b/assets/resources/game/heros/hero/a4/idle.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/hc1/idle.anim.meta rename to assets/resources/game/heros/hero/a4/idle.anim.meta index 34023ce3..922179df 100644 --- a/assets/resources/game/heros/hero/hc1/idle.anim.meta +++ b/assets/resources/game/heros/hero/a4/idle.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"9098ce69-33e0-41d6-ab79-274accd1fa56","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"80fd4adf-5192-43fe-8eb1-250b9b95eda6","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm8/dead.anim b/assets/resources/game/heros/hero/a4/max0.anim similarity index 96% rename from assets/resources/game/heros/hero/hm8/dead.anim rename to assets/resources/game/heros/hero/a4/max0.anim index 1a9f8630..c7db34eb 100644 --- a/assets/resources/game/heros/hero/hm8/dead.anim +++ b/assets/resources/game/heros/hero/a4/max0.anim @@ -1,13 +1,13 @@ [ { "__type__": "cc.AnimationClip", - "_name": "atk2", + "_name": "max0", "_objFlags": 0, "__editorExtras__": { "embeddedPlayerGroups": [] }, "_native": "", - "sample": 15, + "sample": 20, "speed": 1, "wrapMode": 1, "enableTrsBlending": false, diff --git a/assets/resources/game/heros/hero/ha2/max0.anim.meta b/assets/resources/game/heros/hero/a4/max0.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/ha2/max0.anim.meta rename to assets/resources/game/heros/hero/a4/max0.anim.meta index 74122bfa..b654f759 100644 --- a/assets/resources/game/heros/hero/ha2/max0.anim.meta +++ b/assets/resources/game/heros/hero/a4/max0.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"222a8903-2dee-4bf6-b6eb-72fd1541609b","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"6911cab0-fbaa-4d7c-ba55-179d521c67c8","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/a4/max1.anim b/assets/resources/game/heros/hero/a4/max1.anim new file mode 100644 index 00000000..14d5c32b --- /dev/null +++ b/assets/resources/game/heros/hero/a4/max1.anim @@ -0,0 +1,71 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "max1", + "_objFlags": 0, + "__editorExtras__": { + "embeddedPlayerGroups": [] + }, + "_native": "", + "sample": 30, + "speed": 1, + "wrapMode": 1, + "enableTrsBlending": false, + "_duration": 0, + "_hash": 500763545, + "_tracks": [ + { + "__id__": 1 + } + ], + "_exoticAnimation": null, + "_events": [], + "_embeddedPlayers": [], + "_additiveSettings": { + "__id__": 6 + }, + "_auxiliaryCurveEntries": [] + }, + { + "__type__": "cc.animation.ObjectTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + }, + "proxy": null + }, + "_channel": { + "__id__": 4 + } + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 3 + }, + "spriteFrame" + ] + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.Sprite" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 5 + } + }, + { + "__type__": "cc.ObjectCurve", + "_times": [], + "_values": [] + }, + { + "__type__": "cc.AnimationClipAdditiveSettings", + "enabled": false, + "refClip": null + } +] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hh1/max1.anim.meta b/assets/resources/game/heros/hero/a4/max1.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/hh1/max1.anim.meta rename to assets/resources/game/heros/hero/a4/max1.anim.meta index 54b14eaf..52075711 100644 --- a/assets/resources/game/heros/hero/hh1/max1.anim.meta +++ b/assets/resources/game/heros/hero/a4/max1.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1bc0bf72-d7e6-4322-a959-80d71c17cd34","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"5d9dc8c2-a688-48c8-85a5-9edd8401b3a6","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/a4/move.anim b/assets/resources/game/heros/hero/a4/move.anim new file mode 100644 index 00000000..a6b71180 --- /dev/null +++ b/assets/resources/game/heros/hero/a4/move.anim @@ -0,0 +1,71 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "move", + "_objFlags": 0, + "__editorExtras__": { + "embeddedPlayerGroups": [] + }, + "_native": "", + "sample": 15, + "speed": 1, + "wrapMode": 2, + "enableTrsBlending": false, + "_duration": 0, + "_hash": 500763545, + "_tracks": [ + { + "__id__": 1 + } + ], + "_exoticAnimation": null, + "_events": [], + "_embeddedPlayers": [], + "_additiveSettings": { + "__id__": 6 + }, + "_auxiliaryCurveEntries": [] + }, + { + "__type__": "cc.animation.ObjectTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + }, + "proxy": null + }, + "_channel": { + "__id__": 4 + } + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 3 + }, + "spriteFrame" + ] + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.Sprite" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 5 + } + }, + { + "__type__": "cc.ObjectCurve", + "_times": [], + "_values": [] + }, + { + "__type__": "cc.AnimationClipAdditiveSettings", + "enabled": false, + "refClip": null + } +] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hc1/move.anim.meta b/assets/resources/game/heros/hero/a4/move.anim.meta similarity index 61% rename from assets/resources/game/heros/hero/hc1/move.anim.meta rename to assets/resources/game/heros/hero/a4/move.anim.meta index bd654576..1e767e39 100644 --- a/assets/resources/game/heros/hero/hc1/move.anim.meta +++ b/assets/resources/game/heros/hero/a4/move.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"5390adef-a142-406a-9324-2fa2baefd64e","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"4665ac1c-4f18-44e8-a4d1-6716bf68da11","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/be123.plist b/assets/resources/game/heros/hero/be123.plist deleted file mode 100644 index ac149f4c..00000000 --- a/assets/resources/game/heros/hero/be123.plist +++ /dev/null @@ -1,3566 +0,0 @@ - - - - - frames - - SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,131},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,261},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,521},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,651},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,781},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,911},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1041},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1171},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1301},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,521},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1431},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1561},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1691},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1821},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,131},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,261},{128,128}} - textureRotated - - - SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,651},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,131},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,261},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,521},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,651},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,911},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1041},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1171},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1301},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1431},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1561},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1691},{128,128}} - textureRotated - - - SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1821},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,781},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,781},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,131},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,911},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1041},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1171},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1301},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1431},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1691},{128,128}} - textureRotated - - - SPUM_20260320235415499_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1821},{128,128}} - textureRotated - - - SPUM_20260320235415499_MOVE0_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,261},{128,128}} - textureRotated - - - SPUM_20260320235415499_MOVE0_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_MOVE0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,521},{128,128}} - textureRotated - - - SPUM_20260320235415499_MOVE0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,651},{128,128}} - textureRotated - - - SPUM_20260320235415499_MOVE0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,781},{128,128}} - textureRotated - - - SPUM_20260320235415499_MOVE0_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,911},{128,128}} - textureRotated - - - SPUM_20260320235415499_MOVE0_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - SPUM_20260320235415499_MOVE0_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1171},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1301},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1431},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1561},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1691},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1821},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,131},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,261},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - SPUM_20260320235415499_OTHER2_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK1_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK1_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,651},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK1_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,781},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK1_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK1_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1041},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK1_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1171},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK1_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1301},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK1_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1431},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1561},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1691},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1041},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1171},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1301},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1431},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1561},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-16.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1691},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-17.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1821},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-18.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-19.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,131},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1821},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,131},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,261},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,391},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,521},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,651},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,781},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1561},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,261},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1431},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1561},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1691},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1821},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,131},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,391},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,521},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,651},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,781},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1041},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1171},{128,128}} - textureRotated - - - SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1301},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,261},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,391},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1821},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,131},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,261},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,521},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,781},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1041},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1171},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1301},{128,128}} - textureRotated - - - SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1431},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,391},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,391},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1561},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1691},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,521},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,651},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,781},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1041},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1301},{128,128}} - textureRotated - - - SPUM_20260320235416452_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1431},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1821},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,131},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,261},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,391},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,521},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,651},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,781},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260320235416452_OTHER2_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK0_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1041},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK0_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1171},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1301},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1561},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK0_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1691},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK0_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1821},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK0_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,131},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,261},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,131},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,391},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,521},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,651},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,781},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,911},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1041},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1171},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1301},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1561},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1821},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,131},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,261},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,391},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,521},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,651},{128,128}} - textureRotated - - - SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,781},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,131},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,911},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,131},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,261},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,391},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,521},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,651},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,781},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1041},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1171},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1301},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1561},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1691},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1821},{128,128}} - textureRotated - - - SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,911},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,911},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,131},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,261},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1041},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1171},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1301},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1561},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - SPUM_20260320235417392_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,391},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,521},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,651},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,781},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,911},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1041},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1171},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1301},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1431},{128,128}} - textureRotated - - - SPUM_20260320235417392_OTHER2_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1431},{128,128}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - be123.png - size - {1820,1950} - smartupdate - $TexturePacker:SmartUpdate:0393b82d59c786fe03cb89fd0e8291f7:cb49fff386db831a8df8fe2143bd50b9:c506fb2debdf259beb618d4ff6c194f1$ - textureFileName - be123.png - - - diff --git a/assets/resources/game/heros/hero/be123.plist.meta b/assets/resources/game/heros/hero/be123.plist.meta deleted file mode 100644 index 117b049e..00000000 --- a/assets/resources/game/heros/hero/be123.plist.meta +++ /dev/null @@ -1,10873 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "files": [ - ".json" - ], - "subMetas": { - "10369": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@10369", - "displayName": "", - "id": "10369", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "13268": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@13268", - "displayName": "", - "id": "13268", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "13468": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@13468", - "displayName": "", - "id": "13468", - "name": "SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14312": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@14312", - "displayName": "", - "id": "14312", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "16184": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@16184", - "displayName": "", - "id": "16184", - "name": "SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "19022": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@19022", - "displayName": "", - "id": "19022", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "23485": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@23485", - "displayName": "", - "id": "23485", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "30399": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@30399", - "displayName": "", - "id": "30399", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "33950": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@33950", - "displayName": "", - "id": "33950", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "38991": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@38991", - "displayName": "", - "id": "38991", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "41105": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@41105", - "displayName": "", - "id": "41105", - "name": "SPUM_20260320235416452_ATTACK1_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "41951": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@41951", - "displayName": "", - "id": "41951", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "46464": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@46464", - "displayName": "", - "id": "46464", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "47170": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@47170", - "displayName": "", - "id": "47170", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50429": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@50429", - "displayName": "", - "id": "50429", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51315": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@51315", - "displayName": "", - "id": "51315", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "52941": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@52941", - "displayName": "", - "id": "52941", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "59778": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@59778", - "displayName": "", - "id": "59778", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "68034": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@68034", - "displayName": "", - "id": "68034", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "80535": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@80535", - "displayName": "", - "id": "80535", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "87392": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@87392", - "displayName": "", - "id": "87392", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "87661": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@87661", - "displayName": "", - "id": "87661", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "90407": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@90407", - "displayName": "", - "id": "90407", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "91774": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@91774", - "displayName": "", - "id": "91774", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "92653": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@92653", - "displayName": "", - "id": "92653", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "93921": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@93921", - "displayName": "", - "id": "93921", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2cb75": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2cb75", - "displayName": "", - "id": "2cb75", - "name": "SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3b9dc": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@3b9dc", - "displayName": "", - "id": "3b9dc", - "name": "SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "612db": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@612db", - "displayName": "", - "id": "612db", - "name": "SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6fbb2": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@6fbb2", - "displayName": "", - "id": "6fbb2", - "name": "SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fc937": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@fc937", - "displayName": "", - "id": "fc937", - "name": "SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6dd49": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@6dd49", - "displayName": "", - "id": "6dd49", - "name": "SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a0077": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a0077", - "displayName": "", - "id": "a0077", - "name": "SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f0853": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f0853", - "displayName": "", - "id": "f0853", - "name": "SPUM_20260320235415499_ATTACK0_0_Attack_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7cc63": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@7cc63", - "displayName": "", - "id": "7cc63", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f6f15": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f6f15", - "displayName": "", - "id": "f6f15", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6ce4d": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@6ce4d", - "displayName": "", - "id": "6ce4d", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f70ed": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f70ed", - "displayName": "", - "id": "f70ed", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a25e0": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a25e0", - "displayName": "", - "id": "a25e0", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "74db3": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@74db3", - "displayName": "", - "id": "74db3", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "902f6": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@902f6", - "displayName": "", - "id": "902f6", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "830d4": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@830d4", - "displayName": "", - "id": "830d4", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "650fd": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@650fd", - "displayName": "", - "id": "650fd", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3dc1f": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@3dc1f", - "displayName": "", - "id": "3dc1f", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "77ea7": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@77ea7", - "displayName": "", - "id": "77ea7", - "name": "SPUM_20260320235415499_ATTACK4_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8cac4": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@8cac4", - "displayName": "", - "id": "8cac4", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7887b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@7887b", - "displayName": "", - "id": "7887b", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c133c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c133c", - "displayName": "", - "id": "c133c", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ca9ac": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ca9ac", - "displayName": "", - "id": "ca9ac", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ae0cf": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ae0cf", - "displayName": "", - "id": "ae0cf", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "00c72": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@00c72", - "displayName": "", - "id": "00c72", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4eff": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c4eff", - "displayName": "", - "id": "c4eff", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6772": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@d6772", - "displayName": "", - "id": "d6772", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a606a": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a606a", - "displayName": "", - "id": "a606a", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c0480": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c0480", - "displayName": "", - "id": "c0480", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f27c5": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f27c5", - "displayName": "", - "id": "f27c5", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1c65d": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@1c65d", - "displayName": "", - "id": "1c65d", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e5581": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@e5581", - "displayName": "", - "id": "e5581", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "35b83": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@35b83", - "displayName": "", - "id": "35b83", - "name": "SPUM_20260320235415499_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c1c1a": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c1c1a", - "displayName": "", - "id": "c1c1a", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "18fe2": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@18fe2", - "displayName": "", - "id": "18fe2", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e66cc": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@e66cc", - "displayName": "", - "id": "e66cc", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ec154": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ec154", - "displayName": "", - "id": "ec154", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f492": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@4f492", - "displayName": "", - "id": "4f492", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f0d28": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f0d28", - "displayName": "", - "id": "f0d28", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6c11b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@6c11b", - "displayName": "", - "id": "6c11b", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9eef3": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@9eef3", - "displayName": "", - "id": "9eef3", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c975a": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c975a", - "displayName": "", - "id": "c975a", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "97da8": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@97da8", - "displayName": "", - "id": "97da8", - "name": "SPUM_20260320235415499_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "903b6": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@903b6", - "displayName": "", - "id": "903b6", - "name": "SPUM_20260320235415499_MOVE0_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b1858": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b1858", - "displayName": "", - "id": "b1858", - "name": "SPUM_20260320235415499_MOVE0_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0eb6b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@0eb6b", - "displayName": "", - "id": "0eb6b", - "name": "SPUM_20260320235415499_MOVE0_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "06431": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@06431", - "displayName": "", - "id": "06431", - "name": "SPUM_20260320235415499_MOVE0_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ca908": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ca908", - "displayName": "", - "id": "ca908", - "name": "SPUM_20260320235415499_MOVE0_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "af96a": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@af96a", - "displayName": "", - "id": "af96a", - "name": "SPUM_20260320235415499_MOVE0_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5fc2f": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@5fc2f", - "displayName": "", - "id": "5fc2f", - "name": "SPUM_20260320235415499_MOVE0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f9463": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f9463", - "displayName": "", - "id": "f9463", - "name": "SPUM_20260320235415499_MOVE0_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bf061": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@bf061", - "displayName": "", - "id": "bf061", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2453f": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2453f", - "displayName": "", - "id": "2453f", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d0fe0": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@d0fe0", - "displayName": "", - "id": "d0fe0", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "68e11": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@68e11", - "displayName": "", - "id": "68e11", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe344": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@fe344", - "displayName": "", - "id": "fe344", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d8e74": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@d8e74", - "displayName": "", - "id": "d8e74", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9346b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@9346b", - "displayName": "", - "id": "9346b", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e5ee": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@9e5ee", - "displayName": "", - "id": "9e5ee", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4ec0a": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@4ec0a", - "displayName": "", - "id": "4ec0a", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7c845": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@7c845", - "displayName": "", - "id": "7c845", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b992c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b992c", - "displayName": "", - "id": "b992c", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "59f36": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@59f36", - "displayName": "", - "id": "59f36", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f0a33": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f0a33", - "displayName": "", - "id": "f0a33", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d09c8": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@d09c8", - "displayName": "", - "id": "d09c8", - "name": "SPUM_20260320235415499_OTHER2_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "edb07": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@edb07", - "displayName": "", - "id": "edb07", - "name": "SPUM_20260320235416452_ATTACK1_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2c0fd": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2c0fd", - "displayName": "", - "id": "2c0fd", - "name": "SPUM_20260320235416452_ATTACK1_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "03715": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@03715", - "displayName": "", - "id": "03715", - "name": "SPUM_20260320235416452_ATTACK1_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "070ae": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@070ae", - "displayName": "", - "id": "070ae", - "name": "SPUM_20260320235416452_ATTACK1_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c7d09": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c7d09", - "displayName": "", - "id": "c7d09", - "name": "SPUM_20260320235416452_ATTACK1_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7d626": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@7d626", - "displayName": "", - "id": "7d626", - "name": "SPUM_20260320235416452_ATTACK1_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "531b6": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@531b6", - "displayName": "", - "id": "531b6", - "name": "SPUM_20260320235416452_ATTACK1_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51a2f": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@51a2f", - "displayName": "", - "id": "51a2f", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f239d": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f239d", - "displayName": "", - "id": "f239d", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "45e8f": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@45e8f", - "displayName": "", - "id": "45e8f", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "efb8b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@efb8b", - "displayName": "", - "id": "efb8b", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f16c0": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f16c0", - "displayName": "", - "id": "f16c0", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb359": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@eb359", - "displayName": "", - "id": "eb359", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-16", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eec43": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@eec43", - "displayName": "", - "id": "eec43", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-17", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "afcd5": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@afcd5", - "displayName": "", - "id": "afcd5", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-18", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c888d": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c888d", - "displayName": "", - "id": "c888d", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-19", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8e827": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@8e827", - "displayName": "", - "id": "8e827", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "05ea1": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@05ea1", - "displayName": "", - "id": "05ea1", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ace1a": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ace1a", - "displayName": "", - "id": "ace1a", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fef35": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@fef35", - "displayName": "", - "id": "fef35", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b2ccc": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b2ccc", - "displayName": "", - "id": "b2ccc", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "392a4": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@392a4", - "displayName": "", - "id": "392a4", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ae876": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ae876", - "displayName": "", - "id": "ae876", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "041c5": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@041c5", - "displayName": "", - "id": "041c5", - "name": "SPUM_20260320235416452_ATTACK2_0_Attack_Bow_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e28d3": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@e28d3", - "displayName": "", - "id": "e28d3", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "22eb1": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@22eb1", - "displayName": "", - "id": "22eb1", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "980c4": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@980c4", - "displayName": "", - "id": "980c4", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f7449": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f7449", - "displayName": "", - "id": "f7449", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "68b6c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@68b6c", - "displayName": "", - "id": "68b6c", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "29f5c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@29f5c", - "displayName": "", - "id": "29f5c", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4e1d9": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@4e1d9", - "displayName": "", - "id": "4e1d9", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0968c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@0968c", - "displayName": "", - "id": "0968c", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "635cc": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@635cc", - "displayName": "", - "id": "635cc", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "03a89": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@03a89", - "displayName": "", - "id": "03a89", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "24ad6": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@24ad6", - "displayName": "", - "id": "24ad6", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "39bd8": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@39bd8", - "displayName": "", - "id": "39bd8", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f4bad": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f4bad", - "displayName": "", - "id": "f4bad", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "81f90": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@81f90", - "displayName": "", - "id": "81f90", - "name": "SPUM_20260320235416452_ATTACK4_1_Skill_Bow_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "55be3": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@55be3", - "displayName": "", - "id": "55be3", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb0e2": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@eb0e2", - "displayName": "", - "id": "eb0e2", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "256ce": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@256ce", - "displayName": "", - "id": "256ce", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a1b8f": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a1b8f", - "displayName": "", - "id": "a1b8f", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2d620": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2d620", - "displayName": "", - "id": "2d620", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cfebb": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@cfebb", - "displayName": "", - "id": "cfebb", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dbae1": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@dbae1", - "displayName": "", - "id": "dbae1", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f8fc7": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f8fc7", - "displayName": "", - "id": "f8fc7", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2dc31": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2dc31", - "displayName": "", - "id": "2dc31", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4da14": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@4da14", - "displayName": "", - "id": "4da14", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "81bcc": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@81bcc", - "displayName": "", - "id": "81bcc", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0a90e": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@0a90e", - "displayName": "", - "id": "0a90e", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ca2d2": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ca2d2", - "displayName": "", - "id": "ca2d2", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60cfb": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@60cfb", - "displayName": "", - "id": "60cfb", - "name": "SPUM_20260320235416452_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "195ba": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@195ba", - "displayName": "", - "id": "195ba", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f613f": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f613f", - "displayName": "", - "id": "f613f", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "264fe": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@264fe", - "displayName": "", - "id": "264fe", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ae18c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ae18c", - "displayName": "", - "id": "ae18c", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7e6ad": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@7e6ad", - "displayName": "", - "id": "7e6ad", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "649f6": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@649f6", - "displayName": "", - "id": "649f6", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "654fd": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@654fd", - "displayName": "", - "id": "654fd", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bec83": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@bec83", - "displayName": "", - "id": "bec83", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b5d63": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b5d63", - "displayName": "", - "id": "b5d63", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "10cff": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@10cff", - "displayName": "", - "id": "10cff", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e0cbf": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@e0cbf", - "displayName": "", - "id": "e0cbf", - "name": "SPUM_20260320235416452_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a1187": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a1187", - "displayName": "", - "id": "a1187", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "affc2": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@affc2", - "displayName": "", - "id": "affc2", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dee24": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@dee24", - "displayName": "", - "id": "dee24", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2d8ca": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2d8ca", - "displayName": "", - "id": "2d8ca", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "83a6f": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@83a6f", - "displayName": "", - "id": "83a6f", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3f01e": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@3f01e", - "displayName": "", - "id": "3f01e", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f9339": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f9339", - "displayName": "", - "id": "f9339", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7a0e5": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@7a0e5", - "displayName": "", - "id": "7a0e5", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ea014": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ea014", - "displayName": "", - "id": "ea014", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8ea35": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@8ea35", - "displayName": "", - "id": "8ea35", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8224b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@8224b", - "displayName": "", - "id": "8224b", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "58d13": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@58d13", - "displayName": "", - "id": "58d13", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "541a5": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@541a5", - "displayName": "", - "id": "541a5", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a09b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@1a09b", - "displayName": "", - "id": "1a09b", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dfd3d": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@dfd3d", - "displayName": "", - "id": "dfd3d", - "name": "SPUM_20260320235416452_OTHER2_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "77da2": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@77da2", - "displayName": "", - "id": "77da2", - "name": "SPUM_20260320235417392_ATTACK0_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b4f3f": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b4f3f", - "displayName": "", - "id": "b4f3f", - "name": "SPUM_20260320235417392_ATTACK0_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a2a1c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a2a1c", - "displayName": "", - "id": "a2a1c", - "name": "SPUM_20260320235417392_ATTACK0_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d0266": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@d0266", - "displayName": "", - "id": "d0266", - "name": "SPUM_20260320235417392_ATTACK0_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2ebb0": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2ebb0", - "displayName": "", - "id": "2ebb0", - "name": "SPUM_20260320235417392_ATTACK0_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e8d44": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@e8d44", - "displayName": "", - "id": "e8d44", - "name": "SPUM_20260320235417392_ATTACK0_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "245d1": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@245d1", - "displayName": "", - "id": "245d1", - "name": "SPUM_20260320235417392_ATTACK0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f0a99": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f0a99", - "displayName": "", - "id": "f0a99", - "name": "SPUM_20260320235417392_ATTACK0_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1888d": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@1888d", - "displayName": "", - "id": "1888d", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "34f92": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@34f92", - "displayName": "", - "id": "34f92", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2ee59": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2ee59", - "displayName": "", - "id": "2ee59", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "52b12": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@52b12", - "displayName": "", - "id": "52b12", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6e6b2": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@6e6b2", - "displayName": "", - "id": "6e6b2", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "658b3": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@658b3", - "displayName": "", - "id": "658b3", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1c67c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@1c67c", - "displayName": "", - "id": "1c67c", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "93c39": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@93c39", - "displayName": "", - "id": "93c39", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8006b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@8006b", - "displayName": "", - "id": "8006b", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b33c1": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b33c1", - "displayName": "", - "id": "b33c1", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "41a0a": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@41a0a", - "displayName": "", - "id": "41a0a", - "name": "SPUM_20260320235417392_ATTACK3_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1943c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@1943c", - "displayName": "", - "id": "1943c", - "name": "SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b2625": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b2625", - "displayName": "", - "id": "b2625", - "name": "SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "68bfc": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@68bfc", - "displayName": "", - "id": "68bfc", - "name": "SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cbfb4": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@cbfb4", - "displayName": "", - "id": "cbfb4", - "name": "SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f8b5b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f8b5b", - "displayName": "", - "id": "f8b5b", - "name": "SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c8ef6": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c8ef6", - "displayName": "", - "id": "c8ef6", - "name": "SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c371a": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c371a", - "displayName": "", - "id": "c371a", - "name": "SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd7c8": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@cd7c8", - "displayName": "", - "id": "cd7c8", - "name": "SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9ae75": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@9ae75", - "displayName": "", - "id": "9ae75", - "name": "SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a4a2a": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a4a2a", - "displayName": "", - "id": "a4a2a", - "name": "SPUM_20260320235417392_ATTACK4_0_Attack_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "05706": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@05706", - "displayName": "", - "id": "05706", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fa6a2": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@fa6a2", - "displayName": "", - "id": "fa6a2", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3923d": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@3923d", - "displayName": "", - "id": "3923d", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "99c07": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@99c07", - "displayName": "", - "id": "99c07", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f248b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f248b", - "displayName": "", - "id": "f248b", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "db3d8": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@db3d8", - "displayName": "", - "id": "db3d8", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7f562": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@7f562", - "displayName": "", - "id": "7f562", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2b91f": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2b91f", - "displayName": "", - "id": "2b91f", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2e69a": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2e69a", - "displayName": "", - "id": "2e69a", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a7b60": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a7b60", - "displayName": "", - "id": "a7b60", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c34f6": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c34f6", - "displayName": "", - "id": "c34f6", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b16b1": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b16b1", - "displayName": "", - "id": "b16b1", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c77d1": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c77d1", - "displayName": "", - "id": "c77d1", - "name": "SPUM_20260320235417392_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7563c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@7563c", - "displayName": "", - "id": "7563c", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b45a8": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b45a8", - "displayName": "", - "id": "b45a8", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cdde5": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@cdde5", - "displayName": "", - "id": "cdde5", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "000e9": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@000e9", - "displayName": "", - "id": "000e9", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3b405": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@3b405", - "displayName": "", - "id": "3b405", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dede2": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@dede2", - "displayName": "", - "id": "dede2", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60d1b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@60d1b", - "displayName": "", - "id": "60d1b", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3ce72": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@3ce72", - "displayName": "", - "id": "3ce72", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1eb39": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@1eb39", - "displayName": "", - "id": "1eb39", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "74f17": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@74f17", - "displayName": "", - "id": "74f17", - "name": "SPUM_20260320235417392_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f406c": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f406c", - "displayName": "", - "id": "f406c", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "70c52": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@70c52", - "displayName": "", - "id": "70c52", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ab621": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ab621", - "displayName": "", - "id": "ab621", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "465ea": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@465ea", - "displayName": "", - "id": "465ea", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8834b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@8834b", - "displayName": "", - "id": "8834b", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "05342": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@05342", - "displayName": "", - "id": "05342", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "655e8": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@655e8", - "displayName": "", - "id": "655e8", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5f270": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@5f270", - "displayName": "", - "id": "5f270", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "27a34": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@27a34", - "displayName": "", - "id": "27a34", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c6f37": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c6f37", - "displayName": "", - "id": "c6f37", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ccd66": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@ccd66", - "displayName": "", - "id": "ccd66", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0edda": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@0edda", - "displayName": "", - "id": "0edda", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b3b13": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b3b13", - "displayName": "", - "id": "b3b13", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f05a7": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f05a7", - "displayName": "", - "id": "f05a7", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d173b": { - "importer": "sprite-frame", - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@d173b", - "displayName": "", - "id": "d173b", - "name": "SPUM_20260320235417392_OTHER2_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a", - "atlasUuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "be123.png", - "format": 3, - "uuid": "291f9343-4e76-46fa-9b8b-a44fffdc4d71", - "textureUuid": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a" - } -} diff --git a/assets/resources/game/heros/hero/be123.png b/assets/resources/game/heros/hero/be123.png deleted file mode 100644 index 61291e5b..00000000 Binary files a/assets/resources/game/heros/hero/be123.png and /dev/null differ diff --git a/assets/resources/game/heros/hero/a1c1.plist b/assets/resources/game/heros/hero/c12h12.plist similarity index 80% rename from assets/resources/game/heros/hero/a1c1.plist rename to assets/resources/game/heros/hero/c12h12.plist index f5ab5d60..aacf1710 100644 --- a/assets/resources/game/heros/hero/a1c1.plist +++ b/assets/resources/game/heros/hero/c12h12.plist @@ -4,1087 +4,7 @@ frames - SPUM_20260321092031794_ATTACK1_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,781},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK1_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,911},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK1_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1041},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK1_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK1_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1301},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK1_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1431},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK1_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1561},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK1_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1691},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1821},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1171},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1301},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1431},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1561},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1691},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1821},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-16.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-17.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,131},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-18.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,261},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-19.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,391},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,131},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,261},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,391},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,521},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,651},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,781},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1041},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1821},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,521},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1821},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,131},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,261},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,391},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,651},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,781},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,911},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1041},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1171},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1301},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1431},{128,128}} - textureRotated - - - SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1561},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,521},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,651},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1821},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,131},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,261},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,391},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,521},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,781},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,911},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1041},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1171},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1301},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1431},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1561},{128,128}} - textureRotated - - - SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1691},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,651},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,781},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,131},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,911},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1041},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1171},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1301},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1431},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1561},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - SPUM_20260321092031794_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - a1_ATTACK2_0_move_0-0.png + c1_ATTACK0_0_Attack_Normal_0-0.png aliases @@ -1099,7 +19,7 @@ textureRotated - a1_ATTACK2_0_move_0-1.png + c1_ATTACK0_0_Attack_Normal_0-1.png aliases @@ -1114,7 +34,7 @@ textureRotated - a1_ATTACK2_0_move_0-2.png + c1_ATTACK0_0_Attack_Normal_0-2.png aliases @@ -1129,7 +49,7 @@ textureRotated - a1_ATTACK2_0_move_0-3.png + c1_ATTACK0_0_Attack_Normal_0-3.png aliases @@ -1144,7 +64,7 @@ textureRotated - a1_ATTACK2_0_move_0-4.png + c1_ATTACK0_0_Attack_Normal_0-4.png aliases @@ -1159,7 +79,7 @@ textureRotated - a1_ATTACK2_0_move_0-5.png + c1_ATTACK0_0_Attack_Normal_0-5.png aliases @@ -1174,7 +94,7 @@ textureRotated - a1_ATTACK2_0_move_0-6.png + c1_ATTACK0_0_Attack_Normal_0-6.png aliases @@ -1189,7 +109,7 @@ textureRotated - a1_ATTACK2_0_move_0-7.png + c1_ATTACK0_0_Attack_Normal_0-7.png aliases @@ -1204,7 +124,22 @@ textureRotated - a1_ATTACK5_0_Attack_Bow_0-0.png + c1_ATTACK4_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1,1},{128,128}} + textureRotated + + + c1_ATTACK4_1_Skill_Normal_0-1.png aliases @@ -1219,7 +154,7 @@ textureRotated - a1_ATTACK5_0_Attack_Bow_0-1.png + c1_ATTACK4_1_Skill_Normal_0-2.png aliases @@ -1234,157 +169,7 @@ textureRotated - a1_ATTACK5_0_Attack_Bow_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,391},{128,128}} - textureRotated - - - a1_ATTACK5_0_Attack_Bow_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,521},{128,128}} - textureRotated - - - a1_ATTACK5_0_Attack_Bow_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,651},{128,128}} - textureRotated - - - a1_ATTACK5_0_Attack_Bow_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - a1_ATTACK5_0_Attack_Bow_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,911},{128,128}} - textureRotated - - - a1_ATTACK5_0_Attack_Bow_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1041},{128,128}} - textureRotated - - - a1_ATTACK5_0_Attack_Bow_0-16.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1171},{128,128}} - textureRotated - - - a1_ATTACK5_0_Attack_Bow_0-17.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1301},{128,128}} - textureRotated - - - a1_ATTACK5_0_Attack_Bow_0-18.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1431},{128,128}} - textureRotated - - - a1_ATTACK5_0_Attack_Bow_0-19.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1561},{128,128}} - textureRotated - - - a1_ATTACK5_0_Attack_Bow_0-2.png + c1_ATTACK4_1_Skill_Normal_0-3.png aliases @@ -1399,7 +184,7 @@ textureRotated - a1_ATTACK5_0_Attack_Bow_0-3.png + c1_ATTACK4_1_Skill_Normal_0-4.png aliases @@ -1414,7 +199,7 @@ textureRotated - a1_ATTACK5_0_Attack_Bow_0-4.png + c1_ATTACK4_1_Skill_Normal_0-5.png aliases @@ -1429,7 +214,7 @@ textureRotated - a1_ATTACK5_0_Attack_Bow_0-5.png + c1_ATTACK4_1_Skill_Normal_0-6.png aliases @@ -1444,7 +229,7 @@ textureRotated - a1_ATTACK5_0_Attack_Bow_0-6.png + c1_ATTACK4_1_Skill_Normal_0-7.png aliases @@ -1459,7 +244,7 @@ textureRotated - a1_ATTACK5_0_Attack_Bow_0-7.png + c1_ATTACK4_1_Skill_Normal_0-8.png aliases @@ -1474,7 +259,7 @@ textureRotated - a1_ATTACK5_0_Attack_Bow_0-8.png + c1_IDLE0_0_idle_0-0.png aliases @@ -1489,1266 +274,6 @@ textureRotated - a1_ATTACK5_0_Attack_Bow_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,261},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1041},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1691},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,911},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1041},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1171},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1301},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1431},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1821},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,131},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,261},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,391},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,521},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,651},{128,128}} - textureRotated - - - a1_ATTACK7_1_Skill_Bow_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,781},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1691},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1821},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1171},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1301},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1431},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1561},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1691},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,131},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,261},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,391},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,521},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,651},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,781},{128,128}} - textureRotated - - - a1_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,911},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1821},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1821},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1041},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1171},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,131},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,261},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,651},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,781},{128,128}} - textureRotated - - - a1_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,911},{128,128}} - textureRotated - - - c1_ATTACK3_ShotSwordAttack_1_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1301},{128,128}} - textureRotated - - - c1_ATTACK3_ShotSwordAttack_1_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1431},{128,128}} - textureRotated - - - c1_ATTACK3_ShotSwordAttack_1_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1561},{128,128}} - textureRotated - - - c1_ATTACK3_ShotSwordAttack_1_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1691},{128,128}} - textureRotated - - - c1_ATTACK3_ShotSwordAttack_1_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1821},{128,128}} - textureRotated - - - c1_ATTACK3_ShotSwordAttack_1_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1},{128,128}} - textureRotated - - - c1_ATTACK3_ShotSwordAttack_1_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,131},{128,128}} - textureRotated - - - c1_ATTACK3_ShotSwordAttack_1_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,261},{128,128}} - textureRotated - - - c1_ATTACK3_ShotSwordAttack_1_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,391},{128,128}} - textureRotated - - - c1_ATTACK3_ShotSwordAttack_1_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,521},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,651},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,781},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,651},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,911},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1041},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1171},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1301},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1431},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1561},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1691},{128,128}} - textureRotated - - - c1_ATTACK7_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1821},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,131},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,261},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1431},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1561},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1691},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1821},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,131},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,391},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,521},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,651},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,781},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,911},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1041},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1171},{128,128}} - textureRotated - - - c1_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1301},{128,128}} - textureRotated - - - c1_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,261},{128,128}} - textureRotated - - c1_IDLE0_0_idle_0-1.png aliases @@ -2760,37 +285,7 @@ spriteSourceSize {128,128} textureRect - {{911,261},{128,128}} - textureRotated - - - c1_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1431},{128,128}} - textureRotated - - - c1_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} + {{131,131},{128,128}} textureRotated @@ -2805,7 +300,7 @@ spriteSourceSize {128,128} textureRect - {{911,391},{128,128}} + {{131,261},{128,128}} textureRotated @@ -2820,7 +315,7 @@ spriteSourceSize {128,128} textureRect - {{911,521},{128,128}} + {{131,391},{128,128}} textureRotated @@ -2835,7 +330,7 @@ spriteSourceSize {128,128} textureRect - {{911,651},{128,128}} + {{131,521},{128,128}} textureRotated @@ -2850,7 +345,7 @@ spriteSourceSize {128,128} textureRect - {{911,781},{128,128}} + {{131,651},{128,128}} textureRotated @@ -2865,7 +360,7 @@ spriteSourceSize {128,128} textureRect - {{911,911},{128,128}} + {{131,781},{128,128}} textureRotated @@ -2880,7 +375,7 @@ spriteSourceSize {128,128} textureRect - {{911,1041},{128,128}} + {{131,911},{128,128}} textureRotated @@ -2895,22 +390,7 @@ spriteSourceSize {128,128} textureRect - {{911,1171},{128,128}} - textureRotated - - - c1_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1301},{128,128}} + {{131,1041},{128,128}} textureRotated @@ -2925,7 +405,7 @@ spriteSourceSize {128,128} textureRect - {{911,1691},{128,128}} + {{131,1171},{128,128}} textureRotated @@ -2940,7 +420,7 @@ spriteSourceSize {128,128} textureRect - {{911,1821},{128,128}} + {{131,1301},{128,128}} textureRotated @@ -2955,7 +435,7 @@ spriteSourceSize {128,128} textureRect - {{1041,1},{128,128}} + {{131,1431},{128,128}} textureRotated @@ -2970,7 +450,7 @@ spriteSourceSize {128,128} textureRect - {{1041,131},{128,128}} + {{131,1561},{128,128}} textureRotated @@ -2985,11 +465,1511 @@ spriteSourceSize {128,128} textureRect - {{1041,261},{128,128}} + {{131,1691},{128,128}} textureRotated c1_MOVE0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,1821},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,131},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1301},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1431},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1561},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,261},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,391},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,521},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,651},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,781},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,911},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1041},{128,128}} + textureRotated + + + c1_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1171},{128,128}} + textureRotated + + + c2_ATTACK0_0_Attack_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1691},{128,128}} + textureRotated + + + c2_ATTACK0_0_Attack_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1821},{128,128}} + textureRotated + + + c2_ATTACK0_0_Attack_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1},{128,128}} + textureRotated + + + c2_ATTACK0_0_Attack_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,131},{128,128}} + textureRotated + + + c2_ATTACK0_0_Attack_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,261},{128,128}} + textureRotated + + + c2_ATTACK0_0_Attack_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,391},{128,128}} + textureRotated + + + c2_ATTACK0_0_Attack_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,521},{128,128}} + textureRotated + + + c2_ATTACK0_0_Attack_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,651},{128,128}} + textureRotated + + + c2_ATTACK4_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1691},{128,128}} + textureRotated + + + c2_ATTACK4_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,781},{128,128}} + textureRotated + + + c2_ATTACK4_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,911},{128,128}} + textureRotated + + + c2_ATTACK4_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1041},{128,128}} + textureRotated + + + c2_ATTACK4_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1171},{128,128}} + textureRotated + + + c2_ATTACK4_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1301},{128,128}} + textureRotated + + + c2_ATTACK4_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1431},{128,128}} + textureRotated + + + c2_ATTACK4_1_Skill_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1561},{128,128}} + textureRotated + + + c2_ATTACK4_1_Skill_Normal_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1691},{128,128}} + textureRotated + + + c2_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1821},{128,128}} + textureRotated + + + c2_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1821},{128,128}} + textureRotated + + + c2_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1},{128,128}} + textureRotated + + + c2_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,131},{128,128}} + textureRotated + + + c2_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,261},{128,128}} + textureRotated + + + c2_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,391},{128,128}} + textureRotated + + + c2_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,521},{128,128}} + textureRotated + + + c2_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,651},{128,128}} + textureRotated + + + c2_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,781},{128,128}} + textureRotated + + + c2_MOVE0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,911},{128,128}} + textureRotated + + + c2_MOVE0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1041},{128,128}} + textureRotated + + + c2_MOVE0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1171},{128,128}} + textureRotated + + + c2_MOVE0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1301},{128,128}} + textureRotated + + + c2_MOVE0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1431},{128,128}} + textureRotated + + + c2_MOVE0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1561},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1691},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1821},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1041},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1171},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1301},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,131},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,261},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,391},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,521},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,651},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,781},{128,128}} + textureRotated + + + c2_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,911},{128,128}} + textureRotated + + + h1_ATTACK0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1431},{128,128}} + textureRotated + + + h1_ATTACK0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1561},{128,128}} + textureRotated + + + h1_ATTACK0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1691},{128,128}} + textureRotated + + + h1_ATTACK0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1821},{128,128}} + textureRotated + + + h1_ATTACK0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1},{128,128}} + textureRotated + + + h1_ATTACK0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,131},{128,128}} + textureRotated + + + h1_ATTACK3_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,261},{128,128}} + textureRotated + + + h1_ATTACK3_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,391},{128,128}} + textureRotated + + + h1_ATTACK3_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,521},{128,128}} + textureRotated + + + h1_ATTACK3_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,651},{128,128}} + textureRotated + + + h1_ATTACK3_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,781},{128,128}} + textureRotated + + + h1_ATTACK3_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,911},{128,128}} + textureRotated + + + h1_ATTACK3_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1041},{128,128}} + textureRotated + + + h1_ATTACK3_1_Skill_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1171},{128,128}} + textureRotated + + + h1_ATTACK3_1_Skill_Normal_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1301},{128,128}} + textureRotated + + + h1_ATTACK4_0_Attack_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1431},{128,128}} + textureRotated + + + h1_ATTACK4_0_Attack_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1561},{128,128}} + textureRotated + + + h1_ATTACK4_0_Attack_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1691},{128,128}} + textureRotated + + + h1_ATTACK4_0_Attack_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1821},{128,128}} + textureRotated + + + h1_ATTACK4_0_Attack_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1},{128,128}} + textureRotated + + + h1_ATTACK4_0_Attack_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,131},{128,128}} + textureRotated + + + h1_ATTACK4_0_Attack_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,261},{128,128}} + textureRotated + + + h1_ATTACK4_0_Attack_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,391},{128,128}} + textureRotated + + + h1_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,521},{128,128}} + textureRotated + + + h1_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,521},{128,128}} + textureRotated + + + h1_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,651},{128,128}} + textureRotated + + + h1_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,781},{128,128}} + textureRotated + + + h1_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,911},{128,128}} + textureRotated + + + h1_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1041},{128,128}} + textureRotated + + + h1_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1171},{128,128}} + textureRotated + + + h1_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1301},{128,128}} + textureRotated + + + h1_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1431},{128,128}} + textureRotated + + + h1_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1561},{128,128}} + textureRotated + + + h1_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1691},{128,128}} + textureRotated + + + h1_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,911},{128,128}} + textureRotated + + + h1_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1041},{128,128}} + textureRotated + + + h1_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1171},{128,128}} + textureRotated + + + h1_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1821},{128,128}} + textureRotated + + + h1_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1},{128,128}} + textureRotated + + + h1_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,131},{128,128}} + textureRotated + + + h1_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,261},{128,128}} + textureRotated + + + h1_OTHER2_1_Skill_Magic_0-6.png aliases @@ -3004,7 +1984,7 @@ textureRotated - c1_MOVE0_0_move_0-6.png + h1_OTHER2_1_Skill_Magic_0-7.png aliases @@ -3019,7 +1999,7 @@ textureRotated - c1_MOVE0_0_move_0-7.png + h1_OTHER2_1_Skill_Magic_0-8.png aliases @@ -3034,6 +2014,696 @@ textureRotated + h1_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,781},{128,128}} + textureRotated + + + h2_ATTACK0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1301},{128,128}} + textureRotated + + + h2_ATTACK0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1431},{128,128}} + textureRotated + + + h2_ATTACK0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1561},{128,128}} + textureRotated + + + h2_ATTACK0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1691},{128,128}} + textureRotated + + + h2_ATTACK0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1821},{128,128}} + textureRotated + + + h2_ATTACK0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1},{128,128}} + textureRotated + + + h2_ATTACK3_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,131},{128,128}} + textureRotated + + + h2_ATTACK3_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,261},{128,128}} + textureRotated + + + h2_ATTACK3_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,391},{128,128}} + textureRotated + + + h2_ATTACK3_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,521},{128,128}} + textureRotated + + + h2_ATTACK3_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,651},{128,128}} + textureRotated + + + h2_ATTACK3_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,781},{128,128}} + textureRotated + + + h2_ATTACK3_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,911},{128,128}} + textureRotated + + + h2_ATTACK3_1_Skill_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1041},{128,128}} + textureRotated + + + h2_ATTACK3_1_Skill_Normal_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1171},{128,128}} + textureRotated + + + h2_ATTACK4_0_Attack_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1301},{128,128}} + textureRotated + + + h2_ATTACK4_0_Attack_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1431},{128,128}} + textureRotated + + + h2_ATTACK4_0_Attack_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1561},{128,128}} + textureRotated + + + h2_ATTACK4_0_Attack_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1691},{128,128}} + textureRotated + + + h2_ATTACK4_0_Attack_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1821},{128,128}} + textureRotated + + + h2_ATTACK4_0_Attack_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1},{128,128}} + textureRotated + + + h2_ATTACK4_0_Attack_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,131},{128,128}} + textureRotated + + + h2_ATTACK4_0_Attack_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,261},{128,128}} + textureRotated + + + h2_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,391},{128,128}} + textureRotated + + + h2_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,391},{128,128}} + textureRotated + + + h2_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,521},{128,128}} + textureRotated + + + h2_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,651},{128,128}} + textureRotated + + + h2_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,781},{128,128}} + textureRotated + + + h2_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,911},{128,128}} + textureRotated + + + h2_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1041},{128,128}} + textureRotated + + + h2_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1171},{128,128}} + textureRotated + + + h2_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1301},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1431},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1561},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,781},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,911},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1041},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1691},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1821},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,131},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,261},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,391},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,521},{128,128}} + textureRotated + + + h2_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,651},{128,128}} + textureRotated + + metadata @@ -3044,13 +2714,13 @@ premultiplyAlpha realTextureFileName - a1c1.png + c12h12.png size - {1820,1950} + {1560,1950} smartupdate - $TexturePacker:SmartUpdate:5fb552c9f6ac90270aef5363297f8a95:af6998d9dfc13e58482372ad21a6ec2b:b99345bbb052e7310ded76211fe8ba46$ + $TexturePacker:SmartUpdate:69de45120e6193115e8a92081c50ec47:c58106afa1b58cae7e9ff39ab2fbbae2:648b64ed823a6dcc2f5bcda6c3501472$ textureFileName - a1c1.png + c12h12.png diff --git a/assets/resources/game/heros/hero/a1c1.plist.meta b/assets/resources/game/heros/hero/c12h12.plist.meta similarity index 67% rename from assets/resources/game/heros/hero/a1c1.plist.meta rename to assets/resources/game/heros/hero/c12h12.plist.meta index 7c98508a..31df1861 100644 --- a/assets/resources/game/heros/hero/a1c1.plist.meta +++ b/assets/resources/game/heros/hero/c12h12.plist.meta @@ -2,70 +2,24 @@ "ver": "1.0.8", "importer": "sprite-atlas", "imported": true, - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "files": [ ".json" ], "subMetas": { - "10581": { + "21017": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@10581", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@21017", "displayName": "", - "id": "10581", - "name": "a1_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "11326": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@11326", - "displayName": "", - "id": "11326", - "name": "c1_DAMAGED0_1_Skill_Magic_0-13", + "id": "21017", + "name": "h1_ATTACK3_1_Skill_Normal_0-6", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 781, - "trimY": 1821, + "trimY": 1041, "width": 128, "height": 128, "rawWidth": 128, @@ -88,8 +42,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -99,249 +53,19 @@ ], "subMetas": {} }, - "18367": { + "25056": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@18367", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@25056", "displayName": "", - "id": "18367", - "name": "a1_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "23920": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@23920", - "displayName": "", - "id": "23920", - "name": "c1_MOVE0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "24319": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@24319", - "displayName": "", - "id": "24319", - "name": "a1_ATTACK5_0_Attack_Bow_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "33928": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@33928", - "displayName": "", - "id": "33928", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "35219": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@35219", - "displayName": "", - "id": "35219", - "name": "a1_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "39404": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@39404", - "displayName": "", - "id": "39404", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-11", + "id": "25056", + "name": "h2_IDLE0_0_idle_0-7", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 1301, - "trimY": 1821, + "trimY": 1171, "width": 128, "height": 128, "rawWidth": 128, @@ -364,8 +88,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -375,1674 +99,18 @@ ], "subMetas": {} }, - "60710": { + "26070": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@60710", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@26070", "displayName": "", - "id": "60710", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "67242": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@67242", - "displayName": "", - "id": "67242", - "name": "c1_IDLE0_0_idle_0-11", + "id": "26070", + "name": "h1_IDLE0_0_idle_0-0", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "73703": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@73703", - "displayName": "", - "id": "73703", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "77111": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@77111", - "displayName": "", - "id": "77111", - "name": "c1_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "80024": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@80024", - "displayName": "", - "id": "80024", - "name": "c1_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "83060": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@83060", - "displayName": "", - "id": "83060", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "84181": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@84181", - "displayName": "", - "id": "84181", - "name": "c1_ATTACK3_ShotSwordAttack_1_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "85704": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@85704", - "displayName": "", - "id": "85704", - "name": "a1_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "85956": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@85956", - "displayName": "", - "id": "85956", - "name": "a1_ATTACK5_0_Attack_Bow_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "92027": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@92027", - "displayName": "", - "id": "92027", - "name": "a1_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "93628": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@93628", - "displayName": "", - "id": "93628", - "name": "a1_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "96402": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@96402", - "displayName": "", - "id": "96402", - "name": "c1_ATTACK3_ShotSwordAttack_1_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "97161": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@97161", - "displayName": "", - "id": "97161", - "name": "a1_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "98343": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@98343", - "displayName": "", - "id": "98343", - "name": "a1_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7b1f5": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7b1f5", - "displayName": "", - "id": "7b1f5", - "name": "SPUM_20260321092031794_ATTACK1_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cf210": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cf210", - "displayName": "", - "id": "cf210", - "name": "SPUM_20260321092031794_ATTACK1_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a5c45": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a5c45", - "displayName": "", - "id": "a5c45", - "name": "SPUM_20260321092031794_ATTACK1_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5c218": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5c218", - "displayName": "", - "id": "5c218", - "name": "SPUM_20260321092031794_ATTACK1_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bbab0": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@bbab0", - "displayName": "", - "id": "bbab0", - "name": "SPUM_20260321092031794_ATTACK1_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b1844": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b1844", - "displayName": "", - "id": "b1844", - "name": "SPUM_20260321092031794_ATTACK1_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9b1f5": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9b1f5", - "displayName": "", - "id": "9b1f5", - "name": "SPUM_20260321092031794_ATTACK1_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c721c": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c721c", - "displayName": "", - "id": "c721c", - "name": "SPUM_20260321092031794_ATTACK1_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ac518": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ac518", - "displayName": "", - "id": "ac518", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c6f18": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c6f18", - "displayName": "", - "id": "c6f18", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c16e3": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c16e3", - "displayName": "", - "id": "c16e3", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2238e": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2238e", - "displayName": "", - "id": "2238e", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d48b4": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d48b4", - "displayName": "", - "id": "d48b4", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e81e5": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e81e5", - "displayName": "", - "id": "e81e5", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8198a": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8198a", - "displayName": "", - "id": "8198a", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b3b01": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b3b01", - "displayName": "", - "id": "b3b01", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-16", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c9814": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c9814", - "displayName": "", - "id": "c9814", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-17", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7043f": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7043f", - "displayName": "", - "id": "7043f", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-18", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "64af7": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@64af7", - "displayName": "", - "id": "64af7", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-19", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "01a40": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@01a40", - "displayName": "", - "id": "01a40", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e12b7": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e12b7", - "displayName": "", - "id": "e12b7", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1bfe6": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1bfe6", - "displayName": "", - "id": "1bfe6", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b0dc3": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b0dc3", - "displayName": "", - "id": "b0dc3", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, "trimY": 521, "width": 128, "height": 128, @@ -2066,8 +134,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -2077,6136 +145,18 @@ ], "subMetas": {} }, - "0c2da": { + "27101": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0c2da", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@27101", "displayName": "", - "id": "0c2da", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0188e": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0188e", - "displayName": "", - "id": "0188e", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1cefc": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1cefc", - "displayName": "", - "id": "1cefc", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "065ff": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@065ff", - "displayName": "", - "id": "065ff", - "name": "SPUM_20260321092031794_ATTACK2_0_Attack_Bow_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2c738": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2c738", - "displayName": "", - "id": "2c738", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b12ff": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b12ff", - "displayName": "", - "id": "b12ff", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fb48a": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@fb48a", - "displayName": "", - "id": "fb48a", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4b75c": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4b75c", - "displayName": "", - "id": "4b75c", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e071": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9e071", - "displayName": "", - "id": "9e071", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a741e": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a741e", - "displayName": "", - "id": "a741e", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "49ba2": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@49ba2", - "displayName": "", - "id": "49ba2", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a3132": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a3132", - "displayName": "", - "id": "a3132", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e6ca6": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e6ca6", - "displayName": "", - "id": "e6ca6", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5ca04": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5ca04", - "displayName": "", - "id": "5ca04", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "62e36": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@62e36", - "displayName": "", - "id": "62e36", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "220b1": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@220b1", - "displayName": "", - "id": "220b1", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "40cce": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@40cce", - "displayName": "", - "id": "40cce", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cf92d": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cf92d", - "displayName": "", - "id": "cf92d", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ea86e": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ea86e", - "displayName": "", - "id": "ea86e", - "name": "SPUM_20260321092031794_ATTACK4_1_Skill_Bow_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f5571": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f5571", - "displayName": "", - "id": "f5571", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ae255": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ae255", - "displayName": "", - "id": "ae255", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3e046": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3e046", - "displayName": "", - "id": "3e046", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "59bf8": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@59bf8", - "displayName": "", - "id": "59bf8", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "47aa2": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@47aa2", - "displayName": "", - "id": "47aa2", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c3781": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c3781", - "displayName": "", - "id": "c3781", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4c3ba": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4c3ba", - "displayName": "", - "id": "4c3ba", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6f886": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6f886", - "displayName": "", - "id": "6f886", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "667c4": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@667c4", - "displayName": "", - "id": "667c4", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6bb3f": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6bb3f", - "displayName": "", - "id": "6bb3f", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "73c9c": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@73c9c", - "displayName": "", - "id": "73c9c", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8cd43": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8cd43", - "displayName": "", - "id": "8cd43", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ecebe": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ecebe", - "displayName": "", - "id": "ecebe", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "10a88": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@10a88", - "displayName": "", - "id": "10a88", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3c8b8": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3c8b8", - "displayName": "", - "id": "3c8b8", - "name": "SPUM_20260321092031794_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1e4e3": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1e4e3", - "displayName": "", - "id": "1e4e3", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7722": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b7722", - "displayName": "", - "id": "b7722", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f4bc5": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f4bc5", - "displayName": "", - "id": "f4bc5", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2d6fa": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2d6fa", - "displayName": "", - "id": "2d6fa", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "03c0e": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@03c0e", - "displayName": "", - "id": "03c0e", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "37ecb": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@37ecb", - "displayName": "", - "id": "37ecb", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e4794": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e4794", - "displayName": "", - "id": "e4794", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c3a10": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c3a10", - "displayName": "", - "id": "c3a10", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "00407": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@00407", - "displayName": "", - "id": "00407", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dac07": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dac07", - "displayName": "", - "id": "dac07", - "name": "SPUM_20260321092031794_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "86ff6": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@86ff6", - "displayName": "", - "id": "86ff6", - "name": "a1_ATTACK2_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ef970": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ef970", - "displayName": "", - "id": "ef970", - "name": "a1_ATTACK2_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "68ab0": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@68ab0", - "displayName": "", - "id": "68ab0", - "name": "a1_ATTACK2_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8d02d": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8d02d", - "displayName": "", - "id": "8d02d", - "name": "a1_ATTACK2_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cf58c": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cf58c", - "displayName": "", - "id": "cf58c", - "name": "a1_ATTACK2_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9a164": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9a164", - "displayName": "", - "id": "9a164", - "name": "a1_ATTACK2_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2fa19": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2fa19", - "displayName": "", - "id": "2fa19", - "name": "a1_ATTACK2_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3b56d": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3b56d", - "displayName": "", - "id": "3b56d", - "name": "a1_ATTACK2_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e9205": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e9205", - "displayName": "", - "id": "e9205", - "name": "a1_ATTACK5_0_Attack_Bow_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "35cb3": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@35cb3", - "displayName": "", - "id": "35cb3", - "name": "a1_ATTACK5_0_Attack_Bow_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0b4f6": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0b4f6", - "displayName": "", - "id": "0b4f6", - "name": "a1_ATTACK5_0_Attack_Bow_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ec4aa": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ec4aa", - "displayName": "", - "id": "ec4aa", - "name": "a1_ATTACK5_0_Attack_Bow_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "64b4c": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@64b4c", - "displayName": "", - "id": "64b4c", - "name": "a1_ATTACK5_0_Attack_Bow_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14bf2": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@14bf2", - "displayName": "", - "id": "14bf2", - "name": "a1_ATTACK5_0_Attack_Bow_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "64c77": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@64c77", - "displayName": "", - "id": "64c77", - "name": "a1_ATTACK5_0_Attack_Bow_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "faf01": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@faf01", - "displayName": "", - "id": "faf01", - "name": "a1_ATTACK5_0_Attack_Bow_0-16", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a02f7": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a02f7", - "displayName": "", - "id": "a02f7", - "name": "a1_ATTACK5_0_Attack_Bow_0-17", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "52c3b": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@52c3b", - "displayName": "", - "id": "52c3b", - "name": "a1_ATTACK5_0_Attack_Bow_0-18", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c2676": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c2676", - "displayName": "", - "id": "c2676", - "name": "a1_ATTACK5_0_Attack_Bow_0-19", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "20d4b": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@20d4b", - "displayName": "", - "id": "20d4b", - "name": "a1_ATTACK5_0_Attack_Bow_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0f1aa": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0f1aa", - "displayName": "", - "id": "0f1aa", - "name": "a1_ATTACK5_0_Attack_Bow_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cbd6c": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cbd6c", - "displayName": "", - "id": "cbd6c", - "name": "a1_ATTACK5_0_Attack_Bow_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6f67": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d6f67", - "displayName": "", - "id": "d6f67", - "name": "a1_ATTACK5_0_Attack_Bow_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "993b3": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@993b3", - "displayName": "", - "id": "993b3", - "name": "a1_ATTACK5_0_Attack_Bow_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f23a3": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f23a3", - "displayName": "", - "id": "f23a3", - "name": "a1_ATTACK5_0_Attack_Bow_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e66fc": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e66fc", - "displayName": "", - "id": "e66fc", - "name": "a1_ATTACK5_0_Attack_Bow_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e3af9": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e3af9", - "displayName": "", - "id": "e3af9", - "name": "a1_ATTACK7_1_Skill_Bow_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5cb03": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5cb03", - "displayName": "", - "id": "5cb03", - "name": "a1_ATTACK7_1_Skill_Bow_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4bbc6": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4bbc6", - "displayName": "", - "id": "4bbc6", - "name": "a1_ATTACK7_1_Skill_Bow_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f6cab": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f6cab", - "displayName": "", - "id": "f6cab", - "name": "a1_ATTACK7_1_Skill_Bow_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f1a00": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f1a00", - "displayName": "", - "id": "f1a00", - "name": "a1_ATTACK7_1_Skill_Bow_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2f215": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2f215", - "displayName": "", - "id": "2f215", - "name": "a1_ATTACK7_1_Skill_Bow_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a8e72": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a8e72", - "displayName": "", - "id": "a8e72", - "name": "a1_ATTACK7_1_Skill_Bow_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f742c": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f742c", - "displayName": "", - "id": "f742c", - "name": "a1_ATTACK7_1_Skill_Bow_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "78df0": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@78df0", - "displayName": "", - "id": "78df0", - "name": "a1_ATTACK7_1_Skill_Bow_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7b3fb": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7b3fb", - "displayName": "", - "id": "7b3fb", - "name": "a1_ATTACK7_1_Skill_Bow_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0741b": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0741b", - "displayName": "", - "id": "0741b", - "name": "a1_ATTACK7_1_Skill_Bow_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "27b3e": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@27b3e", - "displayName": "", - "id": "27b3e", - "name": "a1_ATTACK7_1_Skill_Bow_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a84bd": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a84bd", - "displayName": "", - "id": "a84bd", - "name": "a1_ATTACK7_1_Skill_Bow_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b1f80": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b1f80", - "displayName": "", - "id": "b1f80", - "name": "a1_ATTACK7_1_Skill_Bow_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e7fd0": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e7fd0", - "displayName": "", - "id": "e7fd0", - "name": "a1_ATTACK7_1_Skill_Bow_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ea280": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ea280", - "displayName": "", - "id": "ea280", - "name": "a1_ATTACK7_1_Skill_Bow_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a2ae4": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a2ae4", - "displayName": "", - "id": "a2ae4", - "name": "a1_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4d9fe": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4d9fe", - "displayName": "", - "id": "4d9fe", - "name": "a1_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "adbb1": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@adbb1", - "displayName": "", - "id": "adbb1", - "name": "a1_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ddcc8": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ddcc8", - "displayName": "", - "id": "ddcc8", - "name": "a1_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8dde2": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8dde2", - "displayName": "", - "id": "8dde2", - "name": "a1_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9c742": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9c742", - "displayName": "", - "id": "9c742", - "name": "a1_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d64b": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6d64b", - "displayName": "", - "id": "6d64b", - "name": "a1_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "849c2": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@849c2", - "displayName": "", - "id": "849c2", - "name": "a1_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7dc3d": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7dc3d", - "displayName": "", - "id": "7dc3d", - "name": "a1_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "761d4": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@761d4", - "displayName": "", - "id": "761d4", - "name": "a1_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "05c47": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@05c47", - "displayName": "", - "id": "05c47", - "name": "a1_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ecc1a": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ecc1a", - "displayName": "", - "id": "ecc1a", - "name": "a1_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f7922": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f7922", - "displayName": "", - "id": "f7922", - "name": "a1_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "73b30": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@73b30", - "displayName": "", - "id": "73b30", - "name": "a1_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d748d": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d748d", - "displayName": "", - "id": "d748d", - "name": "a1_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4d3d4": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4d3d4", - "displayName": "", - "id": "4d3d4", - "name": "a1_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "295fd": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@295fd", - "displayName": "", - "id": "295fd", - "name": "a1_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7bb9f": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7bb9f", - "displayName": "", - "id": "7bb9f", - "name": "a1_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5cd54": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5cd54", - "displayName": "", - "id": "5cd54", - "name": "a1_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6628e": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6628e", - "displayName": "", - "id": "6628e", - "name": "a1_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9d33b": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9d33b", - "displayName": "", - "id": "9d33b", - "name": "c1_ATTACK3_ShotSwordAttack_1_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "05d15": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@05d15", - "displayName": "", - "id": "05d15", - "name": "c1_ATTACK3_ShotSwordAttack_1_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "88fc8": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@88fc8", - "displayName": "", - "id": "88fc8", - "name": "c1_ATTACK3_ShotSwordAttack_1_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bce04": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@bce04", - "displayName": "", - "id": "bce04", - "name": "c1_ATTACK3_ShotSwordAttack_1_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02d80": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@02d80", - "displayName": "", - "id": "02d80", - "name": "c1_ATTACK3_ShotSwordAttack_1_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0531c": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0531c", - "displayName": "", - "id": "0531c", - "name": "c1_ATTACK3_ShotSwordAttack_1_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0e1e6": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0e1e6", - "displayName": "", - "id": "0e1e6", - "name": "c1_ATTACK3_ShotSwordAttack_1_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "93ee2": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@93ee2", - "displayName": "", - "id": "93ee2", - "name": "c1_ATTACK3_ShotSwordAttack_1_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "44e63": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@44e63", - "displayName": "", - "id": "44e63", - "name": "c1_ATTACK7_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6c9b8": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6c9b8", - "displayName": "", - "id": "6c9b8", - "name": "c1_ATTACK7_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cb359": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cb359", - "displayName": "", - "id": "cb359", - "name": "c1_ATTACK7_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dff2f": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dff2f", - "displayName": "", - "id": "dff2f", - "name": "c1_ATTACK7_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "616db": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@616db", - "displayName": "", - "id": "616db", - "name": "c1_ATTACK7_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c9b4d": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c9b4d", - "displayName": "", - "id": "c9b4d", - "name": "c1_ATTACK7_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8cb7f": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8cb7f", - "displayName": "", - "id": "8cb7f", - "name": "c1_ATTACK7_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "493e4": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@493e4", - "displayName": "", - "id": "493e4", - "name": "c1_ATTACK7_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6fa3b": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6fa3b", - "displayName": "", - "id": "6fa3b", - "name": "c1_ATTACK7_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f31a4": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f31a4", - "displayName": "", - "id": "f31a4", - "name": "c1_ATTACK7_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dc6dc": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dc6dc", - "displayName": "", - "id": "dc6dc", - "name": "c1_ATTACK7_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c0d2b": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c0d2b", - "displayName": "", - "id": "c0d2b", - "name": "c1_ATTACK7_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "48efd": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@48efd", - "displayName": "", - "id": "48efd", - "name": "c1_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a8748": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a8748", - "displayName": "", - "id": "a8748", - "name": "c1_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1ddfb": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1ddfb", - "displayName": "", - "id": "1ddfb", - "name": "c1_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5bc23": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5bc23", - "displayName": "", - "id": "5bc23", - "name": "c1_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "756bc": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@756bc", - "displayName": "", - "id": "756bc", - "name": "c1_DAMAGED0_1_Skill_Magic_0-14", + "id": "27101", + "name": "h1_IDLE0_0_idle_0-1", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 911, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c43be": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c43be", - "displayName": "", - "id": "c43be", - "name": "c1_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f3d8c": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f3d8c", - "displayName": "", - "id": "f3d8c", - "name": "c1_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7840a": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7840a", - "displayName": "", - "id": "7840a", - "name": "c1_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, "trimY": 521, "width": 128, "height": 128, @@ -8230,8 +180,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8241,202 +191,18 @@ ], "subMetas": {} }, - "329bd": { + "30783": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@329bd", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@30783", "displayName": "", - "id": "329bd", - "name": "c1_DAMAGED0_1_Skill_Magic_0-4", + "id": "30783", + "name": "c2_MOVE0_0_move_0-2", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 781, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6c7f7": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6c7f7", - "displayName": "", - "id": "6c7f7", - "name": "c1_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e1b56": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e1b56", - "displayName": "", - "id": "e1b56", - "name": "c1_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "13af7": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@13af7", - "displayName": "", - "id": "13af7", - "name": "c1_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7fd65": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7fd65", - "displayName": "", - "id": "7fd65", - "name": "c1_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, + "trimX": 521, "trimY": 1171, "width": 128, "height": 128, @@ -8460,8 +226,1204 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "31489": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@31489", + "displayName": "", + "id": "31489", + "name": "c2_ATTACK0_0_Attack_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "37378": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@37378", + "displayName": "", + "id": "37378", + "name": "h1_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "50498": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@50498", + "displayName": "", + "id": "50498", + "name": "h1_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "56295": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@56295", + "displayName": "", + "id": "56295", + "name": "h2_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "72460": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@72460", + "displayName": "", + "id": "72460", + "name": "h2_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "80568": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@80568", + "displayName": "", + "id": "80568", + "name": "h2_ATTACK3_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "81413": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@81413", + "displayName": "", + "id": "81413", + "name": "h2_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "84473": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@84473", + "displayName": "", + "id": "84473", + "name": "h2_ATTACK3_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "92972": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@92972", + "displayName": "", + "id": "92972", + "name": "h2_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3288d": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@3288d", + "displayName": "", + "id": "3288d", + "name": "c1_ATTACK0_0_Attack_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c7b8b": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c7b8b", + "displayName": "", + "id": "c7b8b", + "name": "c1_ATTACK0_0_Attack_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3d215": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@3d215", + "displayName": "", + "id": "3d215", + "name": "c1_ATTACK0_0_Attack_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cc3d6": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@cc3d6", + "displayName": "", + "id": "cc3d6", + "name": "c1_ATTACK0_0_Attack_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c53b6": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c53b6", + "displayName": "", + "id": "c53b6", + "name": "c1_ATTACK0_0_Attack_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8ea02": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8ea02", + "displayName": "", + "id": "8ea02", + "name": "c1_ATTACK0_0_Attack_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6a172": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6a172", + "displayName": "", + "id": "6a172", + "name": "c1_ATTACK0_0_Attack_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "65eee": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@65eee", + "displayName": "", + "id": "65eee", + "name": "c1_ATTACK0_0_Attack_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "82ec1": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@82ec1", + "displayName": "", + "id": "82ec1", + "name": "c1_ATTACK4_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7830e": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7830e", + "displayName": "", + "id": "7830e", + "name": "c1_ATTACK4_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "471b2": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@471b2", + "displayName": "", + "id": "471b2", + "name": "c1_ATTACK4_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0466c": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@0466c", + "displayName": "", + "id": "0466c", + "name": "c1_ATTACK4_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e30b5": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e30b5", + "displayName": "", + "id": "e30b5", + "name": "c1_ATTACK4_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d8e62": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d8e62", + "displayName": "", + "id": "d8e62", + "name": "c1_ATTACK4_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c5dd0": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c5dd0", + "displayName": "", + "id": "c5dd0", + "name": "c1_ATTACK4_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7b64a": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7b64a", + "displayName": "", + "id": "7b64a", + "name": "c1_ATTACK4_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9c2bd": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9c2bd", + "displayName": "", + "id": "9c2bd", + "name": "c1_ATTACK4_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8473,7 +1435,7 @@ }, "14e00": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@14e00", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@14e00", "displayName": "", "id": "14e00", "name": "c1_IDLE0_0_idle_0-0", @@ -8482,8 +1444,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 911, - "trimY": 261, + "trimX": 131, + "trimY": 131, "width": 128, "height": 128, "rawWidth": 128, @@ -8506,8 +1468,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8519,7 +1481,7 @@ }, "52cd6": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@52cd6", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@52cd6", "displayName": "", "id": "52cd6", "name": "c1_IDLE0_0_idle_0-1", @@ -8528,7 +1490,53 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 911, + "trimX": 131, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d8da8": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d8da8", + "displayName": "", + "id": "d8da8", + "name": "c1_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, "trimY": 261, "width": 128, "height": 128, @@ -8552,8 +1560,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8563,18 +1571,386 @@ ], "subMetas": {} }, - "140ce": { + "8edd3": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@140ce", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8edd3", "displayName": "", - "id": "140ce", - "name": "c1_IDLE0_0_idle_0-10", + "id": "8edd3", + "name": "c1_IDLE0_0_idle_0-3", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 911, + "trimX": 131, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1a65e": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1a65e", + "displayName": "", + "id": "1a65e", + "name": "c1_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a81aa": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a81aa", + "displayName": "", + "id": "a81aa", + "name": "c1_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dfcd0": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@dfcd0", + "displayName": "", + "id": "dfcd0", + "name": "c1_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "72c5c": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@72c5c", + "displayName": "", + "id": "72c5c", + "name": "c1_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "49f37": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@49f37", + "displayName": "", + "id": "49f37", + "name": "c1_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d3816": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d3816", + "displayName": "", + "id": "d3816", + "name": "c1_MOVE0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "81ca7": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@81ca7", + "displayName": "", + "id": "81ca7", + "name": "c1_MOVE0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c5456": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c5456", + "displayName": "", + "id": "c5456", + "name": "c1_MOVE0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, "trimY": 1431, "width": 128, "height": 128, @@ -8598,8 +1974,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8609,12 +1985,3692 @@ ], "subMetas": {} }, - "d8da8": { + "230fa": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d8da8", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@230fa", "displayName": "", - "id": "d8da8", - "name": "c1_IDLE0_0_idle_0-2", + "id": "230fa", + "name": "c1_MOVE0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "425d2": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@425d2", + "displayName": "", + "id": "425d2", + "name": "c1_MOVE0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c347a": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c347a", + "displayName": "", + "id": "c347a", + "name": "c1_MOVE0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "73b8b": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@73b8b", + "displayName": "", + "id": "73b8b", + "name": "c1_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5847f": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5847f", + "displayName": "", + "id": "5847f", + "name": "c1_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b489b": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b489b", + "displayName": "", + "id": "b489b", + "name": "c1_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a0b97": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a0b97", + "displayName": "", + "id": "a0b97", + "name": "c1_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "23fcf": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@23fcf", + "displayName": "", + "id": "23fcf", + "name": "c1_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c83ed": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c83ed", + "displayName": "", + "id": "c83ed", + "name": "c1_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b502d": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b502d", + "displayName": "", + "id": "b502d", + "name": "c1_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5f50e": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5f50e", + "displayName": "", + "id": "5f50e", + "name": "c1_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e6eb1": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e6eb1", + "displayName": "", + "id": "e6eb1", + "name": "c1_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a7cdc": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a7cdc", + "displayName": "", + "id": "a7cdc", + "name": "c1_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6dfd4": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6dfd4", + "displayName": "", + "id": "6dfd4", + "name": "c1_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5725a": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5725a", + "displayName": "", + "id": "5725a", + "name": "c1_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "de419": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@de419", + "displayName": "", + "id": "de419", + "name": "c1_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3eb39": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@3eb39", + "displayName": "", + "id": "3eb39", + "name": "c2_ATTACK0_0_Attack_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fe5b1": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fe5b1", + "displayName": "", + "id": "fe5b1", + "name": "c2_ATTACK0_0_Attack_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fa59f": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fa59f", + "displayName": "", + "id": "fa59f", + "name": "c2_ATTACK0_0_Attack_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2daf8": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@2daf8", + "displayName": "", + "id": "2daf8", + "name": "c2_ATTACK0_0_Attack_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fbe36": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fbe36", + "displayName": "", + "id": "fbe36", + "name": "c2_ATTACK0_0_Attack_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b478c": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b478c", + "displayName": "", + "id": "b478c", + "name": "c2_ATTACK0_0_Attack_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d7aca": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d7aca", + "displayName": "", + "id": "d7aca", + "name": "c2_ATTACK0_0_Attack_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1995d": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1995d", + "displayName": "", + "id": "1995d", + "name": "c2_ATTACK4_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a8226": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a8226", + "displayName": "", + "id": "a8226", + "name": "c2_ATTACK4_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a736a": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a736a", + "displayName": "", + "id": "a736a", + "name": "c2_ATTACK4_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9ea0b": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9ea0b", + "displayName": "", + "id": "9ea0b", + "name": "c2_ATTACK4_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "eeb88": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@eeb88", + "displayName": "", + "id": "eeb88", + "name": "c2_ATTACK4_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b1640": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b1640", + "displayName": "", + "id": "b1640", + "name": "c2_ATTACK4_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7343d": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7343d", + "displayName": "", + "id": "7343d", + "name": "c2_ATTACK4_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "529ba": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@529ba", + "displayName": "", + "id": "529ba", + "name": "c2_ATTACK4_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5769b": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5769b", + "displayName": "", + "id": "5769b", + "name": "c2_ATTACK4_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "28c51": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@28c51", + "displayName": "", + "id": "28c51", + "name": "c2_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a5141": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a5141", + "displayName": "", + "id": "a5141", + "name": "c2_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7be70": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7be70", + "displayName": "", + "id": "7be70", + "name": "c2_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "297ea": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@297ea", + "displayName": "", + "id": "297ea", + "name": "c2_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6dd09": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6dd09", + "displayName": "", + "id": "6dd09", + "name": "c2_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ba57f": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ba57f", + "displayName": "", + "id": "ba57f", + "name": "c2_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bdb6f": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@bdb6f", + "displayName": "", + "id": "bdb6f", + "name": "c2_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "72a39": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@72a39", + "displayName": "", + "id": "72a39", + "name": "c2_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8c200": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8c200", + "displayName": "", + "id": "8c200", + "name": "c2_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "958dd": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@958dd", + "displayName": "", + "id": "958dd", + "name": "c2_MOVE0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "915da": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@915da", + "displayName": "", + "id": "915da", + "name": "c2_MOVE0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7a23d": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7a23d", + "displayName": "", + "id": "7a23d", + "name": "c2_MOVE0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "961c4": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@961c4", + "displayName": "", + "id": "961c4", + "name": "c2_MOVE0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "56bc9": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@56bc9", + "displayName": "", + "id": "56bc9", + "name": "c2_MOVE0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f5e50": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@f5e50", + "displayName": "", + "id": "f5e50", + "name": "c2_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "62cd5": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@62cd5", + "displayName": "", + "id": "62cd5", + "name": "c2_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a7173": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a7173", + "displayName": "", + "id": "a7173", + "name": "c2_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8e89e": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8e89e", + "displayName": "", + "id": "8e89e", + "name": "c2_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c30a2": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c30a2", + "displayName": "", + "id": "c30a2", + "name": "c2_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "de666": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@de666", + "displayName": "", + "id": "de666", + "name": "c2_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7d894": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7d894", + "displayName": "", + "id": "7d894", + "name": "c2_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "674ab": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@674ab", + "displayName": "", + "id": "674ab", + "name": "c2_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0e1dc": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@0e1dc", + "displayName": "", + "id": "0e1dc", + "name": "c2_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5bec9": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5bec9", + "displayName": "", + "id": "5bec9", + "name": "c2_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "151bd": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@151bd", + "displayName": "", + "id": "151bd", + "name": "c2_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1fd8a": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1fd8a", + "displayName": "", + "id": "1fd8a", + "name": "c2_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1fee8": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1fee8", + "displayName": "", + "id": "1fee8", + "name": "c2_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7bf01": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7bf01", + "displayName": "", + "id": "7bf01", + "name": "h1_ATTACK0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "278fc": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@278fc", + "displayName": "", + "id": "278fc", + "name": "h1_ATTACK0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0d1e1": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@0d1e1", + "displayName": "", + "id": "0d1e1", + "name": "h1_ATTACK0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e6138": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e6138", + "displayName": "", + "id": "e6138", + "name": "h1_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ac028": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ac028", + "displayName": "", + "id": "ac028", + "name": "h1_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cbb80": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@cbb80", + "displayName": "", + "id": "cbb80", + "name": "h1_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d1898": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d1898", + "displayName": "", + "id": "d1898", + "name": "h1_ATTACK3_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d66d2": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d66d2", + "displayName": "", + "id": "d66d2", + "name": "h1_ATTACK3_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "daa29": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@daa29", + "displayName": "", + "id": "daa29", + "name": "h1_ATTACK3_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "907a2": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@907a2", + "displayName": "", + "id": "907a2", + "name": "h1_ATTACK3_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f8023": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@f8023", + "displayName": "", + "id": "f8023", + "name": "h1_ATTACK3_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fb67c": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fb67c", + "displayName": "", + "id": "fb67c", + "name": "h1_ATTACK3_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "38ea1": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@38ea1", + "displayName": "", + "id": "38ea1", + "name": "h1_ATTACK3_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "17c0b": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@17c0b", + "displayName": "", + "id": "17c0b", + "name": "h1_ATTACK3_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ca093": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ca093", + "displayName": "", + "id": "ca093", + "name": "h1_ATTACK4_0_Attack_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b8018": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b8018", + "displayName": "", + "id": "b8018", + "name": "h1_ATTACK4_0_Attack_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e3878": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e3878", + "displayName": "", + "id": "e3878", + "name": "h1_ATTACK4_0_Attack_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "65d65": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@65d65", + "displayName": "", + "id": "65d65", + "name": "h1_ATTACK4_0_Attack_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4c49c": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@4c49c", + "displayName": "", + "id": "4c49c", + "name": "h1_ATTACK4_0_Attack_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "61a82": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@61a82", + "displayName": "", + "id": "61a82", + "name": "h1_ATTACK4_0_Attack_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c58c3": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c58c3", + "displayName": "", + "id": "c58c3", + "name": "h1_ATTACK4_0_Attack_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0ba45": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@0ba45", + "displayName": "", + "id": "0ba45", + "name": "h1_ATTACK4_0_Attack_Magic_0-7", "userData": { "trimThreshold": 1, "rotated": false, @@ -8644,8 +5700,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8655,58 +5711,12 @@ ], "subMetas": {} }, - "8edd3": { + "ae691": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8edd3", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ae691", "displayName": "", - "id": "8edd3", - "name": "c1_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a65e": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1a65e", - "displayName": "", - "id": "1a65e", - "name": "c1_IDLE0_0_idle_0-4", + "id": "ae691", + "name": "h1_IDLE0_0_idle_0-2", "userData": { "trimThreshold": 1, "rotated": false, @@ -8736,8 +5746,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8747,12 +5757,12 @@ ], "subMetas": {} }, - "a81aa": { + "d730e": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a81aa", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d730e", "displayName": "", - "id": "a81aa", - "name": "c1_IDLE0_0_idle_0-5", + "id": "d730e", + "name": "h1_IDLE0_0_idle_0-3", "userData": { "trimThreshold": 1, "rotated": false, @@ -8782,8 +5792,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8793,12 +5803,12 @@ ], "subMetas": {} }, - "dfcd0": { + "c2ff5": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dfcd0", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c2ff5", "displayName": "", - "id": "dfcd0", - "name": "c1_IDLE0_0_idle_0-6", + "id": "c2ff5", + "name": "h1_IDLE0_0_idle_0-4", "userData": { "trimThreshold": 1, "rotated": false, @@ -8828,8 +5838,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8839,12 +5849,12 @@ ], "subMetas": {} }, - "72c5c": { + "d2d4a": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@72c5c", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d2d4a", "displayName": "", - "id": "72c5c", - "name": "c1_IDLE0_0_idle_0-7", + "id": "d2d4a", + "name": "h1_IDLE0_0_idle_0-5", "userData": { "trimThreshold": 1, "rotated": false, @@ -8874,8 +5884,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8885,58 +5895,12 @@ ], "subMetas": {} }, - "49f37": { + "aa382": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@49f37", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@aa382", "displayName": "", - "id": "49f37", - "name": "c1_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cbe0f": { - "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cbe0f", - "displayName": "", - "id": "cbe0f", - "name": "c1_IDLE0_0_idle_0-9", + "id": "aa382", + "name": "h1_IDLE0_0_idle_0-7", "userData": { "trimThreshold": 1, "rotated": false, @@ -8966,8 +5930,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -8977,12 +5941,104 @@ ], "subMetas": {} }, - "d3816": { + "556be": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d3816", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@556be", "displayName": "", - "id": "d3816", - "name": "c1_MOVE0_0_move_0-0", + "id": "556be", + "name": "h1_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "42c1f": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@42c1f", + "displayName": "", + "id": "42c1f", + "name": "h1_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7889e": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7889e", + "displayName": "", + "id": "7889e", + "name": "h1_OTHER2_1_Skill_Magic_0-1", "userData": { "trimThreshold": 1, "rotated": false, @@ -9012,8 +6068,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -9023,12 +6079,104 @@ ], "subMetas": {} }, - "81ca7": { + "ac6a4": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@81ca7", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ac6a4", "displayName": "", - "id": "81ca7", - "name": "c1_MOVE0_0_move_0-1", + "id": "ac6a4", + "name": "h1_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "618da": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@618da", + "displayName": "", + "id": "618da", + "name": "h1_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6e363": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6e363", + "displayName": "", + "id": "6e363", + "name": "h1_OTHER2_1_Skill_Magic_0-2", "userData": { "trimThreshold": 1, "rotated": false, @@ -9058,8 +6206,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -9069,12 +6217,12 @@ ], "subMetas": {} }, - "c5456": { + "e4f1f": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c5456", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e4f1f", "displayName": "", - "id": "c5456", - "name": "c1_MOVE0_0_move_0-2", + "id": "e4f1f", + "name": "h1_OTHER2_1_Skill_Magic_0-3", "userData": { "trimThreshold": 1, "rotated": false, @@ -9104,8 +6252,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -9115,12 +6263,12 @@ ], "subMetas": {} }, - "230fa": { + "bcf6c": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@230fa", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@bcf6c", "displayName": "", - "id": "230fa", - "name": "c1_MOVE0_0_move_0-3", + "id": "bcf6c", + "name": "h1_OTHER2_1_Skill_Magic_0-4", "userData": { "trimThreshold": 1, "rotated": false, @@ -9150,8 +6298,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -9161,12 +6309,12 @@ ], "subMetas": {} }, - "425d2": { + "9183f": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@425d2", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9183f", "displayName": "", - "id": "425d2", - "name": "c1_MOVE0_0_move_0-4", + "id": "9183f", + "name": "h1_OTHER2_1_Skill_Magic_0-5", "userData": { "trimThreshold": 1, "rotated": false, @@ -9196,8 +6344,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -9207,12 +6355,12 @@ ], "subMetas": {} }, - "c347a": { + "05513": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c347a", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@05513", "displayName": "", - "id": "c347a", - "name": "c1_MOVE0_0_move_0-5", + "id": "05513", + "name": "h1_OTHER2_1_Skill_Magic_0-6", "userData": { "trimThreshold": 1, "rotated": false, @@ -9242,8 +6390,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -9253,12 +6401,58 @@ ], "subMetas": {} }, - "8041d": { + "dce9b": { "importer": "sprite-frame", - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8041d", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@dce9b", "displayName": "", - "id": "8041d", - "name": "c1_MOVE0_0_move_0-7", + "id": "dce9b", + "name": "h1_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7a13e": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7a13e", + "displayName": "", + "id": "7a13e", + "name": "h1_OTHER2_1_Skill_Magic_0-8", "userData": { "trimThreshold": 1, "rotated": false, @@ -9288,8 +6482,1802 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "atlasUuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d3bbd": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d3bbd", + "displayName": "", + "id": "d3bbd", + "name": "h1_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c77e6": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c77e6", + "displayName": "", + "id": "c77e6", + "name": "h2_ATTACK0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a9e1c": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a9e1c", + "displayName": "", + "id": "a9e1c", + "name": "h2_ATTACK0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6a7df": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6a7df", + "displayName": "", + "id": "6a7df", + "name": "h2_ATTACK0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9ea3e": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9ea3e", + "displayName": "", + "id": "9ea3e", + "name": "h2_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fc2a4": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fc2a4", + "displayName": "", + "id": "fc2a4", + "name": "h2_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6d278": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6d278", + "displayName": "", + "id": "6d278", + "name": "h2_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c0d78": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c0d78", + "displayName": "", + "id": "c0d78", + "name": "h2_ATTACK3_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "266b8": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@266b8", + "displayName": "", + "id": "266b8", + "name": "h2_ATTACK3_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8716f": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8716f", + "displayName": "", + "id": "8716f", + "name": "h2_ATTACK3_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2c514": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@2c514", + "displayName": "", + "id": "2c514", + "name": "h2_ATTACK3_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9d1f3": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9d1f3", + "displayName": "", + "id": "9d1f3", + "name": "h2_ATTACK3_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c8bb4": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c8bb4", + "displayName": "", + "id": "c8bb4", + "name": "h2_ATTACK3_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3ab16": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@3ab16", + "displayName": "", + "id": "3ab16", + "name": "h2_ATTACK3_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1ac60": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1ac60", + "displayName": "", + "id": "1ac60", + "name": "h2_ATTACK4_0_Attack_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e9c4a": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e9c4a", + "displayName": "", + "id": "e9c4a", + "name": "h2_ATTACK4_0_Attack_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "498fd": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@498fd", + "displayName": "", + "id": "498fd", + "name": "h2_ATTACK4_0_Attack_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "322c9": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@322c9", + "displayName": "", + "id": "322c9", + "name": "h2_ATTACK4_0_Attack_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ec601": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ec601", + "displayName": "", + "id": "ec601", + "name": "h2_ATTACK4_0_Attack_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f1dc4": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@f1dc4", + "displayName": "", + "id": "f1dc4", + "name": "h2_ATTACK4_0_Attack_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e14c3": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e14c3", + "displayName": "", + "id": "e14c3", + "name": "h2_ATTACK4_0_Attack_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f7176": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@f7176", + "displayName": "", + "id": "f7176", + "name": "h2_ATTACK4_0_Attack_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7d4ec": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7d4ec", + "displayName": "", + "id": "7d4ec", + "name": "h2_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9cafe": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9cafe", + "displayName": "", + "id": "9cafe", + "name": "h2_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7e8db": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7e8db", + "displayName": "", + "id": "7e8db", + "name": "h2_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a7789": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a7789", + "displayName": "", + "id": "a7789", + "name": "h2_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "72fc6": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@72fc6", + "displayName": "", + "id": "72fc6", + "name": "h2_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1202f": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1202f", + "displayName": "", + "id": "1202f", + "name": "h2_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3a3bf": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@3a3bf", + "displayName": "", + "id": "3a3bf", + "name": "h2_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "09670": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@09670", + "displayName": "", + "id": "09670", + "name": "h2_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6f587": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6f587", + "displayName": "", + "id": "6f587", + "name": "h2_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "59d44": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@59d44", + "displayName": "", + "id": "59d44", + "name": "h2_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a82bc": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a82bc", + "displayName": "", + "id": "a82bc", + "name": "h2_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ad6a1": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ad6a1", + "displayName": "", + "id": "ad6a1", + "name": "h2_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c979e": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c979e", + "displayName": "", + "id": "c979e", + "name": "h2_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1fcdb": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1fcdb", + "displayName": "", + "id": "1fcdb", + "name": "h2_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "98ce1": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@98ce1", + "displayName": "", + "id": "98ce1", + "name": "h2_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "14b41": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@14b41", + "displayName": "", + "id": "14b41", + "name": "h2_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "02175": { + "importer": "sprite-frame", + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@02175", + "displayName": "", + "id": "02175", + "name": "h2_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "atlasUuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", "trimType": "auto" }, "ver": "1.0.12", @@ -9301,9 +8289,9 @@ } }, "userData": { - "atlasTextureName": "a1c1.png", + "atlasTextureName": "c12h12.png", "format": 3, - "uuid": "97aa0f88-8138-4b35-94bc-4f691e3f6269", - "textureUuid": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a" + "uuid": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d", + "textureUuid": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a" } } diff --git a/assets/resources/game/heros/hero/c12h12.png b/assets/resources/game/heros/hero/c12h12.png new file mode 100644 index 00000000..b6fa6617 Binary files /dev/null and b/assets/resources/game/heros/hero/c12h12.png differ diff --git a/assets/resources/game/heros/hero/c12h12.png.meta b/assets/resources/game/heros/hero/c12h12.png.meta new file mode 100644 index 00000000..89a78c94 --- /dev/null +++ b/assets/resources/game/heros/hero/c12h12.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aa5e5be6-1b46-4849-af44-38d6187291a2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a", + "displayName": "c12h12", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa5e5be6-1b46-4849-af44-38d6187291a2", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aa5e5be6-1b46-4849-af44-38d6187291a2@6c48a" + } +} diff --git a/assets/resources/game/heros/hero/h1m2.plist b/assets/resources/game/heros/hero/h1m2.plist deleted file mode 100644 index 5e0e7573..00000000 --- a/assets/resources/game/heros/hero/h1m2.plist +++ /dev/null @@ -1,3566 +0,0 @@ - - - - - frames - - SPUM_20260321092350198_ATTACK1_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1301},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK1_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1431},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK1_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1561},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK1_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK1_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1821},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK1_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK1_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,131},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK1_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,261},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,391},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,521},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1821},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,131},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,261},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,391},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-16.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,521},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-17.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,651},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-18.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,781},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-19.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,911},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,651},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,781},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1041},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1171},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1301},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1431},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1561},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,391},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1041},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,261},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,391},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,521},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,651},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,781},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,911},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1171},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1301},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1431},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1561},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1821},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1},{128,128}} - textureRotated - - - SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,131},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1041},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1171},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,391},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,521},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,651},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,781},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,911},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1041},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1301},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1431},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1561},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1821},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,131},{128,128}} - textureRotated - - - SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,261},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1171},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1171},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,391},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,521},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1301},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1431},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1561},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,131},{128,128}} - textureRotated - - - SPUM_20260321092350198_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,261},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,651},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,781},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,911},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1041},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1171},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1301},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1431},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1561},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1691},{128,128}} - textureRotated - - - SPUM_20260321092350198_OTHER2_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1691,1691},{128,128}} - textureRotated - - - h1_ATTACK2_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1},{128,128}} - textureRotated - - - h1_ATTACK2_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,131},{128,128}} - textureRotated - - - h1_ATTACK2_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,261},{128,128}} - textureRotated - - - h1_ATTACK2_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,391},{128,128}} - textureRotated - - - h1_ATTACK2_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,521},{128,128}} - textureRotated - - - h1_ATTACK2_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,651},{128,128}} - textureRotated - - - h1_ATTACK2_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,781},{128,128}} - textureRotated - - - h1_ATTACK2_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,911},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1041},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1171},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,391},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1041},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1301},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1431},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1561},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1691},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1821},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,131},{128,128}} - textureRotated - - - h1_ATTACK6_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,261},{128,128}} - textureRotated - - - h1_ATTACK7_0_Attack_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,521},{128,128}} - textureRotated - - - h1_ATTACK7_0_Attack_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,651},{128,128}} - textureRotated - - - h1_ATTACK7_0_Attack_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - h1_ATTACK7_0_Attack_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,911},{128,128}} - textureRotated - - - h1_ATTACK7_0_Attack_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1041},{128,128}} - textureRotated - - - h1_ATTACK7_0_Attack_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1171},{128,128}} - textureRotated - - - h1_ATTACK7_0_Attack_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1301},{128,128}} - textureRotated - - - h1_ATTACK7_0_Attack_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1431},{128,128}} - textureRotated - - - h1_ATTACK7_0_Attack_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1561},{128,128}} - textureRotated - - - h1_ATTACK7_0_Attack_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1691},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1821},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1171},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1301},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1431},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1691},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1821},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,131},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,261},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,391},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,521},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,651},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,781},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,911},{128,128}} - textureRotated - - - h1_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1041},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,131},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,261},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,391},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,521},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,651},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,781},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,911},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - h1_DEATH0_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1171},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1171},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1301},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1431},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1561},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1691},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1821},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,131},{128,128}} - textureRotated - - - h1_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,261},{128,128}} - textureRotated - - - m1_ATTACK4_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,651},{128,128}} - textureRotated - - - m1_ATTACK4_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,781},{128,128}} - textureRotated - - - m1_ATTACK4_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,911},{128,128}} - textureRotated - - - m1_ATTACK4_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1041},{128,128}} - textureRotated - - - m1_ATTACK4_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1171},{128,128}} - textureRotated - - - m1_ATTACK4_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1301},{128,128}} - textureRotated - - - m1_ATTACK4_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1431},{128,128}} - textureRotated - - - m1_ATTACK4_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1561},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1691},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1821},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1041},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1691},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,131},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,261},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,391},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,521},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,651},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,781},{128,128}} - textureRotated - - - m1_ATTACK6_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,911},{128,128}} - textureRotated - - - m1_ATTACK7_0_Attack_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1171},{128,128}} - textureRotated - - - m1_ATTACK7_0_Attack_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1301},{128,128}} - textureRotated - - - m1_ATTACK7_0_Attack_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1431},{128,128}} - textureRotated - - - m1_ATTACK7_0_Attack_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1561},{128,128}} - textureRotated - - - m1_ATTACK7_0_Attack_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1691},{128,128}} - textureRotated - - - m1_ATTACK7_0_Attack_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1821},{128,128}} - textureRotated - - - m1_ATTACK7_0_Attack_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1},{128,128}} - textureRotated - - - m1_ATTACK7_0_Attack_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,131},{128,128}} - textureRotated - - - m1_ATTACK7_0_Attack_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,261},{128,128}} - textureRotated - - - m1_ATTACK7_0_Attack_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,391},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,521},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,651},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1821},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,131},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,261},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,391},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,521},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,781},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,911},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1041},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1171},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1301},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1431},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1561},{128,128}} - textureRotated - - - m1_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1691},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,781},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,911},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1041},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1171},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1301},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1431},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - m1_DEATH0_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1821},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1821},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1041},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,131},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,261},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,391},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,521},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,651},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,781},{128,128}} - textureRotated - - - m1_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,911},{128,128}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - h1m2.png - size - {1820,1950} - smartupdate - $TexturePacker:SmartUpdate:162a48e334d3241ad0b869a33430fde9:ab25e2ad8ac24bdfb4ec7aa983895949:d0eb2a7d6d3059e1fe6c2fd1010eb375$ - textureFileName - h1m2.png - - - diff --git a/assets/resources/game/heros/hero/h1m2.plist.meta b/assets/resources/game/heros/hero/h1m2.plist.meta deleted file mode 100644 index 63913043..00000000 --- a/assets/resources/game/heros/hero/h1m2.plist.meta +++ /dev/null @@ -1,10873 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "files": [ - ".json" - ], - "subMetas": { - "15051": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@15051", - "displayName": "", - "id": "15051", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "26070": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@26070", - "displayName": "", - "id": "26070", - "name": "h1_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "27101": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@27101", - "displayName": "", - "id": "27101", - "name": "h1_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "29039": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@29039", - "displayName": "", - "id": "29039", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "30798": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@30798", - "displayName": "", - "id": "30798", - "name": "h1_DEATH0_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "32630": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@32630", - "displayName": "", - "id": "32630", - "name": "h1_ATTACK6_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "33844": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@33844", - "displayName": "", - "id": "33844", - "name": "m1_ATTACK7_0_Attack_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "37378": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@37378", - "displayName": "", - "id": "37378", - "name": "h1_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "38210": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@38210", - "displayName": "", - "id": "38210", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "39536": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@39536", - "displayName": "", - "id": "39536", - "name": "h1_ATTACK7_0_Attack_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "42581": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@42581", - "displayName": "", - "id": "42581", - "name": "m1_ATTACK6_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "42750": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@42750", - "displayName": "", - "id": "42750", - "name": "h1_ATTACK2_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "44853": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@44853", - "displayName": "", - "id": "44853", - "name": "h1_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51359": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@51359", - "displayName": "", - "id": "51359", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "53293": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@53293", - "displayName": "", - "id": "53293", - "name": "SPUM_20260321092350198_ATTACK1_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "54482": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@54482", - "displayName": "", - "id": "54482", - "name": "h1_ATTACK2_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "54561": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@54561", - "displayName": "", - "id": "54561", - "name": "h1_ATTACK7_0_Attack_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "57040": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@57040", - "displayName": "", - "id": "57040", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "61087": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@61087", - "displayName": "", - "id": "61087", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "61856": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@61856", - "displayName": "", - "id": "61856", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69374": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@69374", - "displayName": "", - "id": "69374", - "name": "m1_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "70530": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@70530", - "displayName": "", - "id": "70530", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "73337": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@73337", - "displayName": "", - "id": "73337", - "name": "h1_ATTACK6_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "76880": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@76880", - "displayName": "", - "id": "76880", - "name": "SPUM_20260321092350198_ATTACK1_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79887": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@79887", - "displayName": "", - "id": "79887", - "name": "h1_ATTACK6_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "82225": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@82225", - "displayName": "", - "id": "82225", - "name": "m1_ATTACK6_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "82299": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@82299", - "displayName": "", - "id": "82299", - "name": "h1_ATTACK2_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "82719": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@82719", - "displayName": "", - "id": "82719", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "82741": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@82741", - "displayName": "", - "id": "82741", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "84421": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@84421", - "displayName": "", - "id": "84421", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "87623": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@87623", - "displayName": "", - "id": "87623", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "91735": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@91735", - "displayName": "", - "id": "91735", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c25f8": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c25f8", - "displayName": "", - "id": "c25f8", - "name": "SPUM_20260321092350198_ATTACK1_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b0b5e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b0b5e", - "displayName": "", - "id": "b0b5e", - "name": "SPUM_20260321092350198_ATTACK1_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eadff": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@eadff", - "displayName": "", - "id": "eadff", - "name": "SPUM_20260321092350198_ATTACK1_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8563d": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8563d", - "displayName": "", - "id": "8563d", - "name": "SPUM_20260321092350198_ATTACK1_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1703c": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1703c", - "displayName": "", - "id": "1703c", - "name": "SPUM_20260321092350198_ATTACK1_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c3736": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c3736", - "displayName": "", - "id": "c3736", - "name": "SPUM_20260321092350198_ATTACK1_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e5f42": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e5f42", - "displayName": "", - "id": "e5f42", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "456ce": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@456ce", - "displayName": "", - "id": "456ce", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9bbc8": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9bbc8", - "displayName": "", - "id": "9bbc8", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "de758": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@de758", - "displayName": "", - "id": "de758", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2ea37": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2ea37", - "displayName": "", - "id": "2ea37", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bcfae": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@bcfae", - "displayName": "", - "id": "bcfae", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "38bd1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@38bd1", - "displayName": "", - "id": "38bd1", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-16", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "be458": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@be458", - "displayName": "", - "id": "be458", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-17", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79fcc": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@79fcc", - "displayName": "", - "id": "79fcc", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-18", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b4692": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b4692", - "displayName": "", - "id": "b4692", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-19", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "470a7": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@470a7", - "displayName": "", - "id": "470a7", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d340e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d340e", - "displayName": "", - "id": "d340e", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "427f4": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@427f4", - "displayName": "", - "id": "427f4", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d818": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6d818", - "displayName": "", - "id": "6d818", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe8d1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@fe8d1", - "displayName": "", - "id": "fe8d1", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "58ba7": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@58ba7", - "displayName": "", - "id": "58ba7", - "name": "SPUM_20260321092350198_ATTACK2_0_Attack_Bow_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "febca": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@febca", - "displayName": "", - "id": "febca", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "faba7": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@faba7", - "displayName": "", - "id": "faba7", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ce34d": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ce34d", - "displayName": "", - "id": "ce34d", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "571ae": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@571ae", - "displayName": "", - "id": "571ae", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5c2e4": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5c2e4", - "displayName": "", - "id": "5c2e4", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "078fc": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@078fc", - "displayName": "", - "id": "078fc", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8c7e8": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8c7e8", - "displayName": "", - "id": "8c7e8", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dbe54": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@dbe54", - "displayName": "", - "id": "dbe54", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "afb16": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@afb16", - "displayName": "", - "id": "afb16", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f5238": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f5238", - "displayName": "", - "id": "f5238", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5bee7": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5bee7", - "displayName": "", - "id": "5bee7", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "06414": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@06414", - "displayName": "", - "id": "06414", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "04443": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@04443", - "displayName": "", - "id": "04443", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b2f8b": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b2f8b", - "displayName": "", - "id": "b2f8b", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3c3d1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@3c3d1", - "displayName": "", - "id": "3c3d1", - "name": "SPUM_20260321092350198_ATTACK4_1_Skill_Bow_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9d68d": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9d68d", - "displayName": "", - "id": "9d68d", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a9093": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a9093", - "displayName": "", - "id": "a9093", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "15d31": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@15d31", - "displayName": "", - "id": "15d31", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1072": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d1072", - "displayName": "", - "id": "d1072", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b65f5": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b65f5", - "displayName": "", - "id": "b65f5", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "119da": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@119da", - "displayName": "", - "id": "119da", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0c4b3": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@0c4b3", - "displayName": "", - "id": "0c4b3", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff087": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ff087", - "displayName": "", - "id": "ff087", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a32d5": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a32d5", - "displayName": "", - "id": "a32d5", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7a7e5": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7a7e5", - "displayName": "", - "id": "7a7e5", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9756b": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9756b", - "displayName": "", - "id": "9756b", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4647d": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@4647d", - "displayName": "", - "id": "4647d", - "name": "SPUM_20260321092350198_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7d01e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7d01e", - "displayName": "", - "id": "7d01e", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c480a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c480a", - "displayName": "", - "id": "c480a", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "71e25": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@71e25", - "displayName": "", - "id": "71e25", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f11d1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f11d1", - "displayName": "", - "id": "f11d1", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8329e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8329e", - "displayName": "", - "id": "8329e", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c3865": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c3865", - "displayName": "", - "id": "c3865", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "52c75": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@52c75", - "displayName": "", - "id": "52c75", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "271e3": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@271e3", - "displayName": "", - "id": "271e3", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba0e0": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ba0e0", - "displayName": "", - "id": "ba0e0", - "name": "SPUM_20260321092350198_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4d96e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@4d96e", - "displayName": "", - "id": "4d96e", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f51db": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f51db", - "displayName": "", - "id": "f51db", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e1157": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e1157", - "displayName": "", - "id": "e1157", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "65a7c": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@65a7c", - "displayName": "", - "id": "65a7c", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "539eb": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@539eb", - "displayName": "", - "id": "539eb", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0f50d": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@0f50d", - "displayName": "", - "id": "0f50d", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2d352": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2d352", - "displayName": "", - "id": "2d352", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "06f6d": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@06f6d", - "displayName": "", - "id": "06f6d", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e564a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e564a", - "displayName": "", - "id": "e564a", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "497db": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@497db", - "displayName": "", - "id": "497db", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0a61c": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@0a61c", - "displayName": "", - "id": "0a61c", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "47b2a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@47b2a", - "displayName": "", - "id": "47b2a", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "442c0": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@442c0", - "displayName": "", - "id": "442c0", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60ce3": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@60ce3", - "displayName": "", - "id": "60ce3", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a2a07": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a2a07", - "displayName": "", - "id": "a2a07", - "name": "SPUM_20260321092350198_OTHER2_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1691, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8464a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8464a", - "displayName": "", - "id": "8464a", - "name": "h1_ATTACK2_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7df96": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7df96", - "displayName": "", - "id": "7df96", - "name": "h1_ATTACK2_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9452e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9452e", - "displayName": "", - "id": "9452e", - "name": "h1_ATTACK2_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5b595": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5b595", - "displayName": "", - "id": "5b595", - "name": "h1_ATTACK2_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8be9d": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8be9d", - "displayName": "", - "id": "8be9d", - "name": "h1_ATTACK2_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b9d02": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b9d02", - "displayName": "", - "id": "b9d02", - "name": "h1_ATTACK6_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c530f": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c530f", - "displayName": "", - "id": "c530f", - "name": "h1_ATTACK6_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f4ea4": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f4ea4", - "displayName": "", - "id": "f4ea4", - "name": "h1_ATTACK6_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d46e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6d46e", - "displayName": "", - "id": "6d46e", - "name": "h1_ATTACK6_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "af68e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@af68e", - "displayName": "", - "id": "af68e", - "name": "h1_ATTACK6_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "194c7": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@194c7", - "displayName": "", - "id": "194c7", - "name": "h1_ATTACK6_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1fffc": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1fffc", - "displayName": "", - "id": "1fffc", - "name": "h1_ATTACK6_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d70d9": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d70d9", - "displayName": "", - "id": "d70d9", - "name": "h1_ATTACK6_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "03301": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@03301", - "displayName": "", - "id": "03301", - "name": "h1_ATTACK6_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "01fa0": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@01fa0", - "displayName": "", - "id": "01fa0", - "name": "h1_ATTACK7_0_Attack_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a8e8e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a8e8e", - "displayName": "", - "id": "a8e8e", - "name": "h1_ATTACK7_0_Attack_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5164f": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5164f", - "displayName": "", - "id": "5164f", - "name": "h1_ATTACK7_0_Attack_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1c0fd": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1c0fd", - "displayName": "", - "id": "1c0fd", - "name": "h1_ATTACK7_0_Attack_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9326b": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9326b", - "displayName": "", - "id": "9326b", - "name": "h1_ATTACK7_0_Attack_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6c817": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6c817", - "displayName": "", - "id": "6c817", - "name": "h1_ATTACK7_0_Attack_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1bf74": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1bf74", - "displayName": "", - "id": "1bf74", - "name": "h1_ATTACK7_0_Attack_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff446": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ff446", - "displayName": "", - "id": "ff446", - "name": "h1_ATTACK7_0_Attack_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "311b1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@311b1", - "displayName": "", - "id": "311b1", - "name": "h1_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f95d2": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f95d2", - "displayName": "", - "id": "f95d2", - "name": "h1_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3b42f": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@3b42f", - "displayName": "", - "id": "3b42f", - "name": "h1_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e435c": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e435c", - "displayName": "", - "id": "e435c", - "name": "h1_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "441f1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@441f1", - "displayName": "", - "id": "441f1", - "name": "h1_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0e11a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@0e11a", - "displayName": "", - "id": "0e11a", - "name": "h1_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "65cf5": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@65cf5", - "displayName": "", - "id": "65cf5", - "name": "h1_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb7ff": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@eb7ff", - "displayName": "", - "id": "eb7ff", - "name": "h1_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eba89": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@eba89", - "displayName": "", - "id": "eba89", - "name": "h1_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a9183": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a9183", - "displayName": "", - "id": "a9183", - "name": "h1_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2d154": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2d154", - "displayName": "", - "id": "2d154", - "name": "h1_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "287ab": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@287ab", - "displayName": "", - "id": "287ab", - "name": "h1_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7dfa2": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7dfa2", - "displayName": "", - "id": "7dfa2", - "name": "h1_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e52f1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e52f1", - "displayName": "", - "id": "e52f1", - "name": "h1_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e026b": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e026b", - "displayName": "", - "id": "e026b", - "name": "h1_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dcd81": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@dcd81", - "displayName": "", - "id": "dcd81", - "name": "h1_DEATH0_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8ac47": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8ac47", - "displayName": "", - "id": "8ac47", - "name": "h1_DEATH0_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b336e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b336e", - "displayName": "", - "id": "b336e", - "name": "h1_DEATH0_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "80ee4": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@80ee4", - "displayName": "", - "id": "80ee4", - "name": "h1_DEATH0_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b3a0f": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b3a0f", - "displayName": "", - "id": "b3a0f", - "name": "h1_DEATH0_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "20b31": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@20b31", - "displayName": "", - "id": "20b31", - "name": "h1_DEATH0_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4d00": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c4d00", - "displayName": "", - "id": "c4d00", - "name": "h1_DEATH0_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1d72e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1d72e", - "displayName": "", - "id": "1d72e", - "name": "h1_DEATH0_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "df5a8": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@df5a8", - "displayName": "", - "id": "df5a8", - "name": "h1_DEATH0_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b8be4": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b8be4", - "displayName": "", - "id": "b8be4", - "name": "h1_DEATH0_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3ce22": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@3ce22", - "displayName": "", - "id": "3ce22", - "name": "h1_DEATH0_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "47d2d": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@47d2d", - "displayName": "", - "id": "47d2d", - "name": "h1_DEATH0_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "36c7c": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@36c7c", - "displayName": "", - "id": "36c7c", - "name": "h1_DEATH0_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "036aa": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@036aa", - "displayName": "", - "id": "036aa", - "name": "h1_DEATH0_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "66b6b": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@66b6b", - "displayName": "", - "id": "66b6b", - "name": "h1_DEATH0_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "27a42": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@27a42", - "displayName": "", - "id": "27a42", - "name": "h1_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9a41a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9a41a", - "displayName": "", - "id": "9a41a", - "name": "h1_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ae691": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ae691", - "displayName": "", - "id": "ae691", - "name": "h1_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d730e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d730e", - "displayName": "", - "id": "d730e", - "name": "h1_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c2ff5": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c2ff5", - "displayName": "", - "id": "c2ff5", - "name": "h1_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d2d4a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d2d4a", - "displayName": "", - "id": "d2d4a", - "name": "h1_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "aa382": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@aa382", - "displayName": "", - "id": "aa382", - "name": "h1_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "556be": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@556be", - "displayName": "", - "id": "556be", - "name": "h1_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "05437": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@05437", - "displayName": "", - "id": "05437", - "name": "h1_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cb2a6": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@cb2a6", - "displayName": "", - "id": "cb2a6", - "name": "m1_ATTACK4_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2ed7e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2ed7e", - "displayName": "", - "id": "2ed7e", - "name": "m1_ATTACK4_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b424f": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b424f", - "displayName": "", - "id": "b424f", - "name": "m1_ATTACK4_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f3f61": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f3f61", - "displayName": "", - "id": "f3f61", - "name": "m1_ATTACK4_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8501a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8501a", - "displayName": "", - "id": "8501a", - "name": "m1_ATTACK4_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9d70c": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9d70c", - "displayName": "", - "id": "9d70c", - "name": "m1_ATTACK4_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "04e81": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@04e81", - "displayName": "", - "id": "04e81", - "name": "m1_ATTACK4_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "089cc": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@089cc", - "displayName": "", - "id": "089cc", - "name": "m1_ATTACK4_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8a626": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8a626", - "displayName": "", - "id": "8a626", - "name": "m1_ATTACK6_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69ffa": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@69ffa", - "displayName": "", - "id": "69ffa", - "name": "m1_ATTACK6_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8ed31": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8ed31", - "displayName": "", - "id": "8ed31", - "name": "m1_ATTACK6_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ce458": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ce458", - "displayName": "", - "id": "ce458", - "name": "m1_ATTACK6_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bfb4f": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@bfb4f", - "displayName": "", - "id": "bfb4f", - "name": "m1_ATTACK6_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "150be": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@150be", - "displayName": "", - "id": "150be", - "name": "m1_ATTACK6_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "244d1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@244d1", - "displayName": "", - "id": "244d1", - "name": "m1_ATTACK6_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "af5b0": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@af5b0", - "displayName": "", - "id": "af5b0", - "name": "m1_ATTACK6_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1eb6a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1eb6a", - "displayName": "", - "id": "1eb6a", - "name": "m1_ATTACK6_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "be874": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@be874", - "displayName": "", - "id": "be874", - "name": "m1_ATTACK6_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "483e5": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@483e5", - "displayName": "", - "id": "483e5", - "name": "m1_ATTACK7_0_Attack_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1ab50": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1ab50", - "displayName": "", - "id": "1ab50", - "name": "m1_ATTACK7_0_Attack_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "de438": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@de438", - "displayName": "", - "id": "de438", - "name": "m1_ATTACK7_0_Attack_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e418f": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e418f", - "displayName": "", - "id": "e418f", - "name": "m1_ATTACK7_0_Attack_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a657a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a657a", - "displayName": "", - "id": "a657a", - "name": "m1_ATTACK7_0_Attack_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d3559": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d3559", - "displayName": "", - "id": "d3559", - "name": "m1_ATTACK7_0_Attack_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "016ac": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@016ac", - "displayName": "", - "id": "016ac", - "name": "m1_ATTACK7_0_Attack_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "09d32": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@09d32", - "displayName": "", - "id": "09d32", - "name": "m1_ATTACK7_0_Attack_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6813a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6813a", - "displayName": "", - "id": "6813a", - "name": "m1_ATTACK7_0_Attack_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9ac06": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9ac06", - "displayName": "", - "id": "9ac06", - "name": "m1_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2ba31": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2ba31", - "displayName": "", - "id": "2ba31", - "name": "m1_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "73d6e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@73d6e", - "displayName": "", - "id": "73d6e", - "name": "m1_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fda98": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@fda98", - "displayName": "", - "id": "fda98", - "name": "m1_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8b904": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8b904", - "displayName": "", - "id": "8b904", - "name": "m1_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6fef": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d6fef", - "displayName": "", - "id": "d6fef", - "name": "m1_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2fd4e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2fd4e", - "displayName": "", - "id": "2fd4e", - "name": "m1_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "66f14": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@66f14", - "displayName": "", - "id": "66f14", - "name": "m1_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3fda7": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@3fda7", - "displayName": "", - "id": "3fda7", - "name": "m1_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bdee6": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@bdee6", - "displayName": "", - "id": "bdee6", - "name": "m1_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f58ef": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f58ef", - "displayName": "", - "id": "f58ef", - "name": "m1_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b5ff5": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b5ff5", - "displayName": "", - "id": "b5ff5", - "name": "m1_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f20f2": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f20f2", - "displayName": "", - "id": "f20f2", - "name": "m1_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2a562": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2a562", - "displayName": "", - "id": "2a562", - "name": "m1_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a3161": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a3161", - "displayName": "", - "id": "a3161", - "name": "m1_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "24d79": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@24d79", - "displayName": "", - "id": "24d79", - "name": "m1_DEATH0_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bcf79": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@bcf79", - "displayName": "", - "id": "bcf79", - "name": "m1_DEATH0_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "87d38": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@87d38", - "displayName": "", - "id": "87d38", - "name": "m1_DEATH0_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c319d": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c319d", - "displayName": "", - "id": "c319d", - "name": "m1_DEATH0_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ebc14": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ebc14", - "displayName": "", - "id": "ebc14", - "name": "m1_DEATH0_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ce80c": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ce80c", - "displayName": "", - "id": "ce80c", - "name": "m1_DEATH0_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f1e1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@4f1e1", - "displayName": "", - "id": "4f1e1", - "name": "m1_DEATH0_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0d4dc": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@0d4dc", - "displayName": "", - "id": "0d4dc", - "name": "m1_DEATH0_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7f2da": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7f2da", - "displayName": "", - "id": "7f2da", - "name": "m1_DEATH0_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1445f": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1445f", - "displayName": "", - "id": "1445f", - "name": "m1_DEATH0_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd00f": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@cd00f", - "displayName": "", - "id": "cd00f", - "name": "m1_DEATH0_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ccf0d": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ccf0d", - "displayName": "", - "id": "ccf0d", - "name": "m1_DEATH0_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5569a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5569a", - "displayName": "", - "id": "5569a", - "name": "m1_DEATH0_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b0dc1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b0dc1", - "displayName": "", - "id": "b0dc1", - "name": "m1_DEATH0_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a3346": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a3346", - "displayName": "", - "id": "a3346", - "name": "m1_DEATH0_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69a0a": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@69a0a", - "displayName": "", - "id": "69a0a", - "name": "m1_DEATH0_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5e109": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5e109", - "displayName": "", - "id": "5e109", - "name": "m1_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a5da0": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a5da0", - "displayName": "", - "id": "a5da0", - "name": "m1_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8f9fa": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8f9fa", - "displayName": "", - "id": "8f9fa", - "name": "m1_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "93a3e": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@93a3e", - "displayName": "", - "id": "93a3e", - "name": "m1_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "985a1": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@985a1", - "displayName": "", - "id": "985a1", - "name": "m1_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "01866": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@01866", - "displayName": "", - "id": "01866", - "name": "m1_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d86cc": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d86cc", - "displayName": "", - "id": "d86cc", - "name": "m1_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cfaf8": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@cfaf8", - "displayName": "", - "id": "cfaf8", - "name": "m1_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cf247": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@cf247", - "displayName": "", - "id": "cf247", - "name": "m1_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "00511": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@00511", - "displayName": "", - "id": "00511", - "name": "m1_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "653a5": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@653a5", - "displayName": "", - "id": "653a5", - "name": "m1_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8ab6f": { - "importer": "sprite-frame", - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8ab6f", - "displayName": "", - "id": "8ab6f", - "name": "m1_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "atlasUuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "h1m2.png", - "format": 3, - "uuid": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "textureUuid": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a" - } -} diff --git a/assets/resources/game/heros/hero/h1m2.png b/assets/resources/game/heros/hero/h1m2.png deleted file mode 100644 index 79f4bf33..00000000 Binary files a/assets/resources/game/heros/hero/h1m2.png and /dev/null differ diff --git a/assets/resources/game/heros/hero/ha1/atk0.anim b/assets/resources/game/heros/hero/ha1/atk0.anim deleted file mode 100644 index efdfb568..00000000 --- a/assets/resources/game/heros/hero/ha1/atk0.anim +++ /dev/null @@ -1,173 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6666666666666666, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5, - 0.5333333333333333, - 0.5666666666666667, - 0.6, - 0.6333333333333333 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e9205", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@35cb3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@20d4b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0f1aa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cbd6c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d6f67", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@993b3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f23a3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@85956", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e66fc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0b4f6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ec4aa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@64b4c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@14bf2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@24319", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@64c77", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@faf01", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a02f7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@52c3b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c2676", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha1/idle.anim b/assets/resources/game/heros/hero/ha1/idle.anim deleted file mode 100644 index 17628161..00000000 --- a/assets/resources/game/heros/hero/ha1/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@85704", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@35219", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d748d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@92027", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4d3d4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@18367", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@295fd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7bb9f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5cd54", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6628e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f7922", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@73b30", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha1/max0.anim b/assets/resources/game/heros/hero/ha1/max0.anim deleted file mode 100644 index 5ee34870..00000000 --- a/assets/resources/game/heros/hero/ha1/max0.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55, - 0.6, - 0.65, - 0.7, - 0.75 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e3af9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5cb03", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@78df0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7b3fb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0741b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@27b3e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a84bd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b1f80", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e7fd0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ea280", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4bbc6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f6cab", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f1a00", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2f215", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a8e72", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f742c", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha1/max1.anim b/assets/resources/game/heros/hero/ha1/max1.anim deleted file mode 100644 index 0ca87d3c..00000000 --- a/assets/resources/game/heros/hero/ha1/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a2ae4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4d9fe", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@93628", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6d64b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@849c2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@98343", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7dc3d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@761d4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@05c47", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ecc1a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@adbb1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ddcc8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8dde2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@97161", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@10581", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9c742", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha2.meta b/assets/resources/game/heros/hero/ha2.meta deleted file mode 100644 index 002c4d24..00000000 --- a/assets/resources/game/heros/hero/ha2.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"97e6ae27-9f43-4343-8801-ecdfd49cd39e","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/ha2/atk0.anim b/assets/resources/game/heros/hero/ha2/atk0.anim deleted file mode 100644 index 2eecbe92..00000000 --- a/assets/resources/game/heros/hero/ha2/atk0.anim +++ /dev/null @@ -1,173 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6666666666666666, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5, - 0.5333333333333333, - 0.5666666666666667, - 0.6, - 0.6333333333333333 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ac518", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c6f18", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@01a40", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e12b7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1bfe6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b0dc3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0c2da", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0188e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1cefc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@065ff", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c16e3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2238e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d48b4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e81e5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8198a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@73703", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b3b01", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c9814", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7043f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@64af7", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha2/max0.anim b/assets/resources/game/heros/hero/ha2/max0.anim deleted file mode 100644 index dc34414a..00000000 --- a/assets/resources/game/heros/hero/ha2/max0.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6666666666666666, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333, - 0.5, - 0.5416666666666666, - 0.5833333333333334, - 0.625 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2c738", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b12ff", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a3132", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e6ca6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5ca04", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@62e36", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@220b1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@40cce", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cf92d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ea86e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@fb48a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@39404", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4b75c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9e071", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a741e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@49ba2", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha2/max1.anim b/assets/resources/game/heros/hero/ha2/max1.anim deleted file mode 100644 index dabcbef3..00000000 --- a/assets/resources/game/heros/hero/ha2/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f5571", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ae255", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6f886", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@667c4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6bb3f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@73c9c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8cd43", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ecebe", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@10a88", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3c8b8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3e046", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@59bf8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@47aa2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c3781", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4c3ba", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@60710", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha2/max1.anim.meta b/assets/resources/game/heros/hero/ha2/max1.anim.meta deleted file mode 100644 index fe6ffe36..00000000 --- a/assets/resources/game/heros/hero/ha2/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a8ecc076-98b4-45c6-99e1-ab67992682fa","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/ha2/move.anim b/assets/resources/game/heros/hero/ha2/move.anim deleted file mode 100644 index d4a01366..00000000 --- a/assets/resources/game/heros/hero/ha2/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7b1f5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cf210", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a5c45", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5c218", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@bbab0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b1844", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9b1f5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c721c", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha3.meta b/assets/resources/game/heros/hero/ha3.meta deleted file mode 100644 index d48518ca..00000000 --- a/assets/resources/game/heros/hero/ha3.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"a6fcca3b-9137-4073-b74a-bdfa6a707593","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/ha3/atk0.anim b/assets/resources/game/heros/hero/ha3/atk0.anim deleted file mode 100644 index e7155e5a..00000000 --- a/assets/resources/game/heros/hero/ha3/atk0.anim +++ /dev/null @@ -1,173 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6666666666666666, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5, - 0.5333333333333333, - 0.5666666666666667, - 0.6, - 0.6333333333333333 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@57040", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e5f42", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@470a7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@61856", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@29039", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d340e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@427f4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6d818", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@fe8d1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@58ba7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@456ce", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9bbc8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@de758", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@38210", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2ea37", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@bcfae", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@38bd1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@be458", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@79fcc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b4692", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha3/idle.anim b/assets/resources/game/heros/hero/ha3/idle.anim deleted file mode 100644 index f13b5346..00000000 --- a/assets/resources/game/heros/hero/ha3/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7d01e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@82741", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@51359", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@84421", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f11d1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8329e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c3865", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@52c75", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@271e3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ba0e0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c480a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@71e25", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha3/max0.anim b/assets/resources/game/heros/hero/ha3/max0.anim deleted file mode 100644 index be88ef02..00000000 --- a/assets/resources/game/heros/hero/ha3/max0.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55, - 0.6, - 0.65, - 0.7, - 0.75 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@febca", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@faba7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@dbe54", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@afb16", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f5238", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5bee7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@06414", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@04443", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b2f8b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@3c3d1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ce34d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@15051", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@571ae", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5c2e4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@078fc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8c7e8", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/ha3/max1.anim b/assets/resources/game/heros/hero/ha3/max1.anim deleted file mode 100644 index 42fb75f0..00000000 --- a/assets/resources/game/heros/hero/ha3/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@87623", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9d68d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ff087", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a32d5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@61087", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@82719", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@70530", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7a7e5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9756b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@4647d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a9093", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@15d31", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d1072", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b65f5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@119da", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@0c4b3", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hc1.meta b/assets/resources/game/heros/hero/hc1.meta deleted file mode 100644 index c86f7b04..00000000 --- a/assets/resources/game/heros/hero/hc1.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"23745e1e-bf2b-4d9f-a9d4-3319b0d8f9bc","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hc1/atk0.anim b/assets/resources/game/heros/hero/hc1/atk0.anim deleted file mode 100644 index f106a81b..00000000 --- a/assets/resources/game/heros/hero/hc1/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9d33b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@05d15", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@88fc8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@96402", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@bce04", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@84181", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@02d80", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0531c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0e1e6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@93ee2", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hc1/atk0.anim.meta b/assets/resources/game/heros/hero/hc1/atk0.anim.meta deleted file mode 100644 index e1a27801..00000000 --- a/assets/resources/game/heros/hero/hc1/atk0.anim.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "2.0.3", - "importer": "animation-clip", - "imported": true, - "uuid": "c7a0ded9-a870-4fc4-93e2-1bec11801142", - "files": [ - ".cconb" - ], - "subMetas": {}, - "userData": { - "name": "atk0" - } -} diff --git a/assets/resources/game/heros/hero/hc1/idle.anim b/assets/resources/game/heros/hero/hc1/idle.anim deleted file mode 100644 index cdb737f5..00000000 --- a/assets/resources/game/heros/hero/hc1/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@14e00", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@52cd6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d8da8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8edd3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1a65e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a81aa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dfcd0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@72c5c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@49f37", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cbe0f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@140ce", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@67242", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hc1/max0.anim b/assets/resources/game/heros/hero/hc1/max0.anim deleted file mode 100644 index ebfe10b1..00000000 --- a/assets/resources/game/heros/hero/hc1/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@44e63", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6c9b8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@616db", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c9b4d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8cb7f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@493e4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6fa3b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f31a4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dc6dc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c0d2b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cb359", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dff2f", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hc1/move.anim b/assets/resources/game/heros/hero/hc1/move.anim deleted file mode 100644 index e4d8faf4..00000000 --- a/assets/resources/game/heros/hero/hc1/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d3816", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@81ca7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c5456", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@230fa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@425d2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c347a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@23920", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8041d", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hh1.meta b/assets/resources/game/heros/hero/hh1.meta deleted file mode 100644 index def09d7a..00000000 --- a/assets/resources/game/heros/hero/hh1.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"12ecfa94-d93b-4dd3-a654-df3380f1f571","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hh1/atk0.anim b/assets/resources/game/heros/hero/hh1/atk0.anim deleted file mode 100644 index bd2f3e70..00000000 --- a/assets/resources/game/heros/hero/hh1/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@01fa0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@39536", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a8e8e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5164f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1c0fd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@54561", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9326b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6c817", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1bf74", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ff446", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hh1/atk0.anim.meta b/assets/resources/game/heros/hero/hh1/atk0.anim.meta deleted file mode 100644 index 7ebfbd26..00000000 --- a/assets/resources/game/heros/hero/hh1/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"13b4ced8-671e-444d-b78c-0de515ce10d1","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hh1/idle.anim b/assets/resources/game/heros/hero/hh1/idle.anim deleted file mode 100644 index 54abc8bd..00000000 --- a/assets/resources/game/heros/hero/hh1/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@26070", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@27101", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ae691", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d730e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c2ff5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d2d4a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@37378", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@aa382", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@556be", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@05437", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@27a42", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9a41a", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hh1/idle.anim.meta b/assets/resources/game/heros/hero/hh1/idle.anim.meta deleted file mode 100644 index d7ec484d..00000000 --- a/assets/resources/game/heros/hero/hh1/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"8f095457-d3e1-408c-b1eb-427651b92c4c","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hh1/max0.anim b/assets/resources/game/heros/hero/hh1/max0.anim deleted file mode 100644 index d8c7d8c3..00000000 --- a/assets/resources/game/heros/hero/hh1/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b9d02", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c530f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6d46e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@af68e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@194c7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1fffc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d70d9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@73337", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@32630", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@03301", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@79887", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f4ea4", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hh1/max0.anim.meta b/assets/resources/game/heros/hero/hh1/max0.anim.meta deleted file mode 100644 index dc33ad96..00000000 --- a/assets/resources/game/heros/hero/hh1/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1bc5a383-9f9c-4c25-b63c-16a4f840716b","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hh1/max1.anim b/assets/resources/game/heros/hero/hh1/max1.anim deleted file mode 100644 index b628655c..00000000 --- a/assets/resources/game/heros/hero/hh1/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@311b1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f95d2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@eba89", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a9183", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2d154", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@287ab", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@44853", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7dfa2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e52f1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e026b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@3b42f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e435c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@441f1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@0e11a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@65cf5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@eb7ff", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hh1/move.anim b/assets/resources/game/heros/hero/hh1/move.anim deleted file mode 100644 index 6bf5a179..00000000 --- a/assets/resources/game/heros/hero/hh1/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8464a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7df96", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9452e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@42750", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5b595", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@82299", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8be9d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@54482", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hh1/move.anim.meta b/assets/resources/game/heros/hero/hh1/move.anim.meta deleted file mode 100644 index a03137c3..00000000 --- a/assets/resources/game/heros/hero/hh1/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"288b2048-c72f-4d8f-9bfd-6ca4edc81cd6","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hk1.meta b/assets/resources/game/heros/hero/hk1.meta deleted file mode 100644 index 2f85cd94..00000000 --- a/assets/resources/game/heros/hero/hk1.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"4f0ba751-a3e5-4d7a-b5c9-7b3202af4372","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hk1/atk0.anim b/assets/resources/game/heros/hero/hk1/atk0.anim deleted file mode 100644 index 0e2d838a..00000000 --- a/assets/resources/game/heros/hero/hk1/atk0.anim +++ /dev/null @@ -1,134 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [ - { - "frame": 0.3, - "func": "", - "params": [] - }, - { - "frame": 0.3, - "func": "onAtkEvent", - "params": [] - } - ], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@cfbe3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@94a2d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@c34a0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@b035f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@31d0b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@9a144", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@faa9a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@6141b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@b7b5e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@3bee5", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk1/atk0.anim.meta b/assets/resources/game/heros/hero/hk1/atk0.anim.meta deleted file mode 100644 index fd37d9f5..00000000 --- a/assets/resources/game/heros/hero/hk1/atk0.anim.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "2.0.3", - "importer": "animation-clip", - "imported": true, - "uuid": "0bc2f26c-2f61-4ee9-ada4-11d3abe24e16", - "files": [ - ".cconb" - ], - "subMetas": {}, - "userData": { - "name": "atk0" - } -} diff --git a/assets/resources/game/heros/hero/hk1/idle.anim b/assets/resources/game/heros/hero/hk1/idle.anim deleted file mode 100644 index 6a84623f..00000000 --- a/assets/resources/game/heros/hero/hk1/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@6ce90", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@743c0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@5e149", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@677d6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@1acaa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@87469", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@7aee7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@7418c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@6f476", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@db8aa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@7901b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@d780a", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk1/idle.anim.meta b/assets/resources/game/heros/hero/hk1/idle.anim.meta deleted file mode 100644 index 6e8ce254..00000000 --- a/assets/resources/game/heros/hero/hk1/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"6212c4e3-2e8f-4851-b21d-629731d0ff51","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hk1/max0.anim b/assets/resources/game/heros/hero/hk1/max0.anim deleted file mode 100644 index 402f4368..00000000 --- a/assets/resources/game/heros/hero/hk1/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@f7a9e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@0c921", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@60081", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@edc2c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@4c849", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@b914a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@484b9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@59c37", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@23244", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@a47ef", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@bc415", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@33937", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk1/max0.anim.meta b/assets/resources/game/heros/hero/hk1/max0.anim.meta deleted file mode 100644 index ae997582..00000000 --- a/assets/resources/game/heros/hero/hk1/max0.anim.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "2.0.3", - "importer": "animation-clip", - "imported": true, - "uuid": "704cf861-02fa-4e0b-b1d1-a3982a2b6a30", - "files": [ - ".cconb" - ], - "subMetas": {}, - "userData": { - "name": "max0" - } -} diff --git a/assets/resources/game/heros/hero/hk1/max1.anim b/assets/resources/game/heros/hero/hk1/max1.anim deleted file mode 100644 index e16051fe..00000000 --- a/assets/resources/game/heros/hero/hk1/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@05efa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@ccbe2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@47865", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@9473c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e8d6e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@9149f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@0f935", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@b576d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@81cdd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@df118", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@96301", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@c6912", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@3c9f7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@08157", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@9c5b3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@0945e", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk1/max1.anim.meta b/assets/resources/game/heros/hero/hk1/max1.anim.meta deleted file mode 100644 index e63fabc9..00000000 --- a/assets/resources/game/heros/hero/hk1/max1.anim.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "2.0.3", - "importer": "animation-clip", - "imported": true, - "uuid": "3c5ad97d-3d20-4bde-bf38-00d6fe1d41ba", - "files": [ - ".cconb" - ], - "subMetas": {}, - "userData": { - "name": "max1" - } -} diff --git a/assets/resources/game/heros/hero/hk1/move.anim b/assets/resources/game/heros/hero/hk1/move.anim deleted file mode 100644 index 84c16023..00000000 --- a/assets/resources/game/heros/hero/hk1/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e2787", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@bd00d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@a722c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@73b72", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@4816f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@56aea", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@b8cd6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e2957", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk1/move.anim.meta b/assets/resources/game/heros/hero/hk1/move.anim.meta deleted file mode 100644 index e4ae60cd..00000000 --- a/assets/resources/game/heros/hero/hk1/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"aa5b9fe9-25de-4ea2-bab3-0364834cba6d","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hk2.meta b/assets/resources/game/heros/hero/hk2.meta deleted file mode 100644 index f728130b..00000000 --- a/assets/resources/game/heros/hero/hk2.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"b3a4cd79-24e7-4c4c-8a58-8666a4aee850","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hk2/atk0.anim b/assets/resources/game/heros/hero/hk2/atk0.anim deleted file mode 100644 index f08cb5c5..00000000 --- a/assets/resources/game/heros/hero/hk2/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@2f9eb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e65f0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@eb423", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@44da3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@55de1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@55f65", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e089d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@3e297", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@c4ec6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@fa9c0", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk2/atk0.anim.meta b/assets/resources/game/heros/hero/hk2/atk0.anim.meta deleted file mode 100644 index a607cc67..00000000 --- a/assets/resources/game/heros/hero/hk2/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"5272a0b9-046b-495d-82ef-769642dda72b","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hk2/idle.anim b/assets/resources/game/heros/hero/hk2/idle.anim deleted file mode 100644 index e8affcd7..00000000 --- a/assets/resources/game/heros/hero/hk2/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@5860b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@b4fba", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@4ff83", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e6852", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@f23ed", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@83a2d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@c0e5e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@1eb99", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@026c8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@8256e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@5b5c4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@5b0e5", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk2/idle.anim.meta b/assets/resources/game/heros/hero/hk2/idle.anim.meta deleted file mode 100644 index a382b185..00000000 --- a/assets/resources/game/heros/hero/hk2/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"f76fc336-2a7e-4755-b32c-d74a6d0e116f","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hk2/max0.anim b/assets/resources/game/heros/hero/hk2/max0.anim deleted file mode 100644 index ff531bc5..00000000 --- a/assets/resources/game/heros/hero/hk2/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@5ef40", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@61137", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@5cd3f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@c5995", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@6eb60", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@ad8a0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@2a969", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@225b1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@cd289", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@cc171", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@d9749", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@fb182", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk2/max0.anim.meta b/assets/resources/game/heros/hero/hk2/max0.anim.meta deleted file mode 100644 index c1c5b49f..00000000 --- a/assets/resources/game/heros/hero/hk2/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1d782f73-ad37-4b9e-a3f0-5a8feeff661f","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hk2/max1.anim b/assets/resources/game/heros/hero/hk2/max1.anim deleted file mode 100644 index edab6b5f..00000000 --- a/assets/resources/game/heros/hero/hk2/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@35d33", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@ba648", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@f3569", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@09900", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@7be8b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@4e3f4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@33e78", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@87a0e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@4afcb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@65bde", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@839d0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@08e55", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@7a46d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@0be40", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@0ac9c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@362c6", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk2/max1.anim.meta b/assets/resources/game/heros/hero/hk2/max1.anim.meta deleted file mode 100644 index 9c3b8ebf..00000000 --- a/assets/resources/game/heros/hero/hk2/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"d819f764-bda8-4272-aedf-cc4c48226ff2","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hk2/move.anim b/assets/resources/game/heros/hero/hk2/move.anim deleted file mode 100644 index c734b572..00000000 --- a/assets/resources/game/heros/hero/hk2/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@96b3e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@5cd45", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@237a8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@7206c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@075c2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@6f7b6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e9032", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@d3629", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk2/move.anim.meta b/assets/resources/game/heros/hero/hk2/move.anim.meta deleted file mode 100644 index a39aaaee..00000000 --- a/assets/resources/game/heros/hero/hk2/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1f6061e5-1955-41b9-842b-52ecc4f896e2","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hk3.meta b/assets/resources/game/heros/hero/hk3.meta deleted file mode 100644 index 7bd35592..00000000 --- a/assets/resources/game/heros/hero/hk3.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"47af2102-1667-4068-9549-d142bf0ea7c4","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hk3/atk0.anim b/assets/resources/game/heros/hero/hk3/atk0.anim deleted file mode 100644 index c2707510..00000000 --- a/assets/resources/game/heros/hero/hk3/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@a3690", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@f53c7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@fddf1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@a78a2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@eb80d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@2484d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@88a6d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@f35d6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@99709", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@8d29e", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk3/atk0.anim.meta b/assets/resources/game/heros/hero/hk3/atk0.anim.meta deleted file mode 100644 index 5c4795c8..00000000 --- a/assets/resources/game/heros/hero/hk3/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b7a1c300-a69b-4ba2-a79f-b392f54a990c","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hk3/idle.anim b/assets/resources/game/heros/hero/hk3/idle.anim deleted file mode 100644 index 035329fd..00000000 --- a/assets/resources/game/heros/hero/hk3/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@225ff", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@e4df6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@c4f22", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@7a557", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@3ca79", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@eeea1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@e408e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@26183", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@62188", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@a0b58", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@3dd8d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@a4892", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk3/idle.anim.meta b/assets/resources/game/heros/hero/hk3/idle.anim.meta deleted file mode 100644 index b70a7de2..00000000 --- a/assets/resources/game/heros/hero/hk3/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"9bdd0427-554d-4da7-96a1-006e04b512b2","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hk3/max0.anim b/assets/resources/game/heros/hero/hk3/max0.anim deleted file mode 100644 index e80d96ab..00000000 --- a/assets/resources/game/heros/hero/hk3/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@f3f25", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@31155", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@eacdd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@07d97", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@58621", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@c7e57", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@c9d43", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@b14ff", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@a7ded", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@d93cc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@8fc74", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@26961", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk3/max0.anim.meta b/assets/resources/game/heros/hero/hk3/max0.anim.meta deleted file mode 100644 index c6ce8bc7..00000000 --- a/assets/resources/game/heros/hero/hk3/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"92f11240-9192-480d-93b2-5079156af0ec","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hk3/max1.anim b/assets/resources/game/heros/hero/hk3/max1.anim deleted file mode 100644 index 6ce43add..00000000 --- a/assets/resources/game/heros/hero/hk3/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@992d7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@87bb2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@40219", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@7c3f7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@b6c97", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@98823", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@5fea8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@2aea1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@d93df", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@baa95", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@0103e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@15f30", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@49f94", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@e64b2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@4d8d5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@426bc", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk3/max1.anim.meta b/assets/resources/game/heros/hero/hk3/max1.anim.meta deleted file mode 100644 index bdd09dc4..00000000 --- a/assets/resources/game/heros/hero/hk3/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"fc73a22a-d7f6-4ce1-8fc6-ad12b72407c0","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hk3/move.anim b/assets/resources/game/heros/hero/hk3/move.anim deleted file mode 100644 index e5df7be2..00000000 --- a/assets/resources/game/heros/hero/hk3/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@925e2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@5fb84", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@64290", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@90661", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@a4461", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@49ae4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@eedec", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@7f8d3", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk3/move.anim.meta b/assets/resources/game/heros/hero/hk3/move.anim.meta deleted file mode 100644 index 3a5af068..00000000 --- a/assets/resources/game/heros/hero/hk3/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"03850824-d187-41e1-8045-59a4d0d10c1a","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hk4.meta b/assets/resources/game/heros/hero/hk4.meta deleted file mode 100644 index 0d4b3ba6..00000000 --- a/assets/resources/game/heros/hero/hk4.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"d01891f9-f9b5-45fe-a2ed-c92299183190","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hk4/atk0.anim b/assets/resources/game/heros/hero/hk4/atk0.anim deleted file mode 100644 index 2b045daf..00000000 --- a/assets/resources/game/heros/hero/hk4/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@d7443", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@95014", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@4b868", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@08eb8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@3bbee", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e398b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@1a91c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e8b6e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@735da", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@f8e84", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk4/atk0.anim.meta b/assets/resources/game/heros/hero/hk4/atk0.anim.meta deleted file mode 100644 index 6874d6c6..00000000 --- a/assets/resources/game/heros/hero/hk4/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"924e7e45-eb80-49e5-b786-6c501f6b5d35","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hk4/idle.anim b/assets/resources/game/heros/hero/hk4/idle.anim deleted file mode 100644 index 39cf2300..00000000 --- a/assets/resources/game/heros/hero/hk4/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@beb3a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@d6f3b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@da5d4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@a5958", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@19108", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@6ed69", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@376c0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@86602", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@16bfa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@9fcd0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@7ec27", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@f4414", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk4/idle.anim.meta b/assets/resources/game/heros/hero/hk4/idle.anim.meta deleted file mode 100644 index adfc8fde..00000000 --- a/assets/resources/game/heros/hero/hk4/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"f4687e0b-85dd-4254-b29a-79b89bf30e87","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hk4/max0.anim b/assets/resources/game/heros/hero/hk4/max0.anim deleted file mode 100644 index 28212d1f..00000000 --- a/assets/resources/game/heros/hero/hk4/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@31fdd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@761f1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@ef635", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@6cf43", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@d81d3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@afb18", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@0ef7a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@4594b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@abf6f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@4735a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@60ce5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@1e835", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk4/max0.anim.meta b/assets/resources/game/heros/hero/hk4/max0.anim.meta deleted file mode 100644 index f435e5c4..00000000 --- a/assets/resources/game/heros/hero/hk4/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"113e8728-16b3-4351-a1ad-dbe50418f3af","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hk4/max1.anim b/assets/resources/game/heros/hero/hk4/max1.anim deleted file mode 100644 index 542cfa66..00000000 --- a/assets/resources/game/heros/hero/hk4/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@872ef", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@9ef99", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@8fbda", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@b94d8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@36b5b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@19d8d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@350b6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@8ebf9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e666a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@a90ab", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@d0661", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@6153a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@8288e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@da2a7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@d27f0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@4228e", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk4/max1.anim.meta b/assets/resources/game/heros/hero/hk4/max1.anim.meta deleted file mode 100644 index 4d328618..00000000 --- a/assets/resources/game/heros/hero/hk4/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"aa31e0ba-609f-445b-86eb-8f3a3e384f0f","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hk4/move.anim b/assets/resources/game/heros/hero/hk4/move.anim deleted file mode 100644 index 80680897..00000000 --- a/assets/resources/game/heros/hero/hk4/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@37246", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@d656c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@1dd4d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@fab5d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@6d0d8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@e5572", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@ce233", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@bfad7", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hk4/move.anim.meta b/assets/resources/game/heros/hero/hk4/move.anim.meta deleted file mode 100644 index b719beab..00000000 --- a/assets/resources/game/heros/hero/hk4/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"48603b7f-a468-4261-83d1-3a48bb01c245","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hm1.meta b/assets/resources/game/heros/hero/hm1.meta deleted file mode 100644 index ae940272..00000000 --- a/assets/resources/game/heros/hero/hm1.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"953ab931-1ff1-4e3d-9319-62ce0b413c74","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm1/atk0.anim b/assets/resources/game/heros/hero/hm1/atk0.anim deleted file mode 100644 index 87e86666..00000000 --- a/assets/resources/game/heros/hero/hm1/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@483e5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1ab50", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@de438", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e418f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a657a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d3559", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@016ac", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@33844", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@09d32", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6813a", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm1/atk0.anim.meta b/assets/resources/game/heros/hero/hm1/atk0.anim.meta deleted file mode 100644 index 71de9b1c..00000000 --- a/assets/resources/game/heros/hero/hm1/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"7ccb2254-2d5e-49d3-9a73-2d91ff672efc","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm1/idle.anim b/assets/resources/game/heros/hero/hm1/idle.anim deleted file mode 100644 index 6a13eb3b..00000000 --- a/assets/resources/game/heros/hero/hm1/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5e109", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a5da0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@985a1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@01866", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d86cc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@cfaf8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@cf247", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@00511", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@653a5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8ab6f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8f9fa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@93a3e", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm1/idle.anim.meta b/assets/resources/game/heros/hero/hm1/idle.anim.meta deleted file mode 100644 index aaf8b68b..00000000 --- a/assets/resources/game/heros/hero/hm1/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"801ebce4-190d-4a5d-bbda-626df50dd770","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm1/max0.anim b/assets/resources/game/heros/hero/hm1/max0.anim deleted file mode 100644 index e33efe9f..00000000 --- a/assets/resources/game/heros/hero/hm1/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8a626", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@69ffa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ce458", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@bfb4f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@150be", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@244d1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@af5b0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1eb6a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@42581", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@be874", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8ed31", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@82225", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm1/max0.anim.meta b/assets/resources/game/heros/hero/hm1/max0.anim.meta deleted file mode 100644 index 15a74661..00000000 --- a/assets/resources/game/heros/hero/hm1/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"8258b71d-4b0d-4478-9e65-bcdf18b9215b","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm1/max1.anim b/assets/resources/game/heros/hero/hm1/max1.anim deleted file mode 100644 index 22d70a3a..00000000 --- a/assets/resources/game/heros/hero/hm1/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9ac06", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2ba31", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@3fda7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@bdee6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f58ef", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b5ff5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@69374", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f20f2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2a562", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a3161", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@73d6e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@fda98", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8b904", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d6fef", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2fd4e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@66f14", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm1/max1.anim.meta b/assets/resources/game/heros/hero/hm1/max1.anim.meta deleted file mode 100644 index ee791afb..00000000 --- a/assets/resources/game/heros/hero/hm1/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b68f44b5-8737-4d5f-a8bf-48c550c5ffd1","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hm1/move.anim b/assets/resources/game/heros/hero/hm1/move.anim deleted file mode 100644 index 9a08cb35..00000000 --- a/assets/resources/game/heros/hero/hm1/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@cb2a6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2ed7e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b424f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f3f61", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8501a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9d70c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@04e81", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@089cc", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm1/move.anim.meta b/assets/resources/game/heros/hero/hm1/move.anim.meta deleted file mode 100644 index b27796de..00000000 --- a/assets/resources/game/heros/hero/hm1/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"67314b9b-d99c-4b7b-b9a2-7dfd2e6e7df4","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hm2/atk0.anim b/assets/resources/game/heros/hero/hm2/atk0.anim deleted file mode 100644 index f8118901..00000000 --- a/assets/resources/game/heros/hero/hm2/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@60f5c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@32a95", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@d67bb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@14582", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@3f8a0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@d1807", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@8117b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@8762a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@58bef", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@4c199", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm2/atk0.anim.meta b/assets/resources/game/heros/hero/hm2/atk0.anim.meta deleted file mode 100644 index b7f615d8..00000000 --- a/assets/resources/game/heros/hero/hm2/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"de71b49f-6f46-4381-8a2e-6bb505904e0e","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm2/idle.anim b/assets/resources/game/heros/hero/hm2/idle.anim deleted file mode 100644 index 99f3a71c..00000000 --- a/assets/resources/game/heros/hero/hm2/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@db384", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@1da39", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@17ba6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@c71a0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@92696", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@1a9c6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@27f8c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@f21c3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@518cb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@1672b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@3865b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@4a0aa", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm2/idle.anim.meta b/assets/resources/game/heros/hero/hm2/idle.anim.meta deleted file mode 100644 index 760bc815..00000000 --- a/assets/resources/game/heros/hero/hm2/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"7c7f292b-ddb9-45b7-a4b4-074c6a86bdbf","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm2/max0.anim b/assets/resources/game/heros/hero/hm2/max0.anim deleted file mode 100644 index 59ae393d..00000000 --- a/assets/resources/game/heros/hero/hm2/max0.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55, - 0.6, - 0.65, - 0.7, - 0.75 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@1299d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@35a5b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@f7567", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@4e34c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@46bb4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@79429", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@1f90e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@df273", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@31af8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@bfc55", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@af2b5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@48ec7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@2c75a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@5d136", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@14e90", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@6c02e", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm2/max0.anim.meta b/assets/resources/game/heros/hero/hm2/max0.anim.meta deleted file mode 100644 index c6b61bd3..00000000 --- a/assets/resources/game/heros/hero/hm2/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"82f5a777-fb40-4757-ba3e-7a3e96dc8d22","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm2/max1.anim b/assets/resources/game/heros/hero/hm2/max1.anim deleted file mode 100644 index 5280f806..00000000 --- a/assets/resources/game/heros/hero/hm2/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@1299d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@35a5b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@f7567", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@4e34c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@46bb4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@79429", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@1f90e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@df273", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@31af8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@bfc55", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@af2b5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@48ec7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@2c75a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@5d136", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@14e90", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@6c02e", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm2/move.anim b/assets/resources/game/heros/hero/hm2/move.anim deleted file mode 100644 index acc52d74..00000000 --- a/assets/resources/game/heros/hero/hm2/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@4fc74", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@aef58", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@99d85", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@948e2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@334d6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@49864", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@61ad3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@1db82", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm2/move.anim.meta b/assets/resources/game/heros/hero/hm2/move.anim.meta deleted file mode 100644 index de457cc4..00000000 --- a/assets/resources/game/heros/hero/hm2/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c92d6a17-f579-4da3-a12f-bde8f5e46426","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hm3.meta b/assets/resources/game/heros/hero/hm3.meta deleted file mode 100644 index 9cae8209..00000000 --- a/assets/resources/game/heros/hero/hm3.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"40dcd79b-c81d-4c95-84f1-7c77b1797804","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm3/atk0.anim b/assets/resources/game/heros/hero/hm3/atk0.anim deleted file mode 100644 index a7c6fda0..00000000 --- a/assets/resources/game/heros/hero/hm3/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@10f7b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@dedf4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@a9232", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@28070", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@cb3f9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@41508", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@fdec9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@3a019", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@0c6c4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@426d6", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm3/atk0.anim.meta b/assets/resources/game/heros/hero/hm3/atk0.anim.meta deleted file mode 100644 index 86d96f3a..00000000 --- a/assets/resources/game/heros/hero/hm3/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c3657922-b265-4928-afdf-ebff5d866372","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm3/dead.anim b/assets/resources/game/heros/hero/hm3/dead.anim deleted file mode 100644 index 543747ed..00000000 --- a/assets/resources/game/heros/hero/hm3/dead.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "dead", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@44266", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@90c1e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@0a750", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@02e74", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@0fe6c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@b0548", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@c3c78", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@0fd50", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@3cfe3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@567fb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@34982", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@9e13d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@621c1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@aeca0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@47c5c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@4e949", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm3/dead.anim.meta b/assets/resources/game/heros/hero/hm3/dead.anim.meta deleted file mode 100644 index 6ea5dc26..00000000 --- a/assets/resources/game/heros/hero/hm3/dead.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b33f4dc0-90a6-4db3-9ec8-32b5ef03138d","files":[".cconb"],"subMetas":{},"userData":{"name":"dead"}} diff --git a/assets/resources/game/heros/hero/hm3/idle.anim b/assets/resources/game/heros/hero/hm3/idle.anim deleted file mode 100644 index 4ab81894..00000000 --- a/assets/resources/game/heros/hero/hm3/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@9235c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@b513d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@3bf0c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@7915f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@f1073", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@bac4a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@3b614", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@dd682", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@97341", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@f812c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@6abd9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@806dc", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm3/idle.anim.meta b/assets/resources/game/heros/hero/hm3/idle.anim.meta deleted file mode 100644 index c6b7179a..00000000 --- a/assets/resources/game/heros/hero/hm3/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b27a4be1-56c7-4868-8f25-0c100e1158a7","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm3/max0.anim.meta b/assets/resources/game/heros/hero/hm3/max0.anim.meta deleted file mode 100644 index 4e1eb9e8..00000000 --- a/assets/resources/game/heros/hero/hm3/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"477894a1-fa8d-496f-9e0f-265b29ad9087","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm3/max1.anim b/assets/resources/game/heros/hero/hm3/max1.anim deleted file mode 100644 index 3ddd6b58..00000000 --- a/assets/resources/game/heros/hero/hm3/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@cb565", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@e0cda", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@5ccd6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@e5ea9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@6acf4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@9e6c9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@2e7c6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@77ed9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@20305", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@ca4b4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@856b4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@e75b0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@b0153", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@41197", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@76446", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@8c114", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm3/max1.anim.meta b/assets/resources/game/heros/hero/hm3/max1.anim.meta deleted file mode 100644 index 35332ab6..00000000 --- a/assets/resources/game/heros/hero/hm3/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"6588a261-411d-4d89-8907-eec03ea2a3a0","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hm3/move.anim b/assets/resources/game/heros/hero/hm3/move.anim deleted file mode 100644 index ac00b494..00000000 --- a/assets/resources/game/heros/hero/hm3/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@f81e4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@ecd33", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@9127e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@6c229", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@37bc7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@bdc62", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@70c0e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@5f10d", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm3/move.anim.meta b/assets/resources/game/heros/hero/hm3/move.anim.meta deleted file mode 100644 index 764dcd06..00000000 --- a/assets/resources/game/heros/hero/hm3/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"f77b3953-db93-4d64-b398-a0353bfa5f4a","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hm4.meta b/assets/resources/game/heros/hero/hm4.meta deleted file mode 100644 index bf28465f..00000000 --- a/assets/resources/game/heros/hero/hm4.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"f1a0e20f-33d9-4474-831a-b9e46b1076b3","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm4/atk0.anim b/assets/resources/game/heros/hero/hm4/atk0.anim deleted file mode 100644 index 1202dcc6..00000000 --- a/assets/resources/game/heros/hero/hm4/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.3333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3 - ], - "_values": [ - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@1943c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b2625", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@68bfc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@cbfb4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f8b5b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c8ef6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c371a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@cd7c8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@9ae75", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a4a2a", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm4/atk0.anim.meta b/assets/resources/game/heros/hero/hm4/atk0.anim.meta deleted file mode 100644 index c1d4aa3e..00000000 --- a/assets/resources/game/heros/hero/hm4/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"4d8d5ab2-98a3-4ffa-85e5-c998de054a3d","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm4/idle.anim b/assets/resources/game/heros/hero/hm4/idle.anim deleted file mode 100644 index 69b7a530..00000000 --- a/assets/resources/game/heros/hero/hm4/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@7563c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b45a8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@3b405", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@dede2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@60d1b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@3ce72", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@51315", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@1eb39", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@14312", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@74f17", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@cdde5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@000e9", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm4/idle.anim.meta b/assets/resources/game/heros/hero/hm4/idle.anim.meta deleted file mode 100644 index 2c67dae1..00000000 --- a/assets/resources/game/heros/hero/hm4/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"febe9e99-93cc-4cec-a8e5-acaa7bb3b4c7","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm4/max0.anim b/assets/resources/game/heros/hero/hm4/max0.anim deleted file mode 100644 index b80c3bc0..00000000 --- a/assets/resources/game/heros/hero/hm4/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@1888d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@34f92", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@6e6b2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@658b3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@1c67c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@93c39", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@52941", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@8006b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b33c1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@41a0a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2ee59", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@52b12", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm4/max0.anim.meta b/assets/resources/game/heros/hero/hm4/max0.anim.meta deleted file mode 100644 index 8109f107..00000000 --- a/assets/resources/game/heros/hero/hm4/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"67506597-7303-4eaf-9406-9f273aefecb0","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm4/max1.anim b/assets/resources/game/heros/hero/hm4/max1.anim deleted file mode 100644 index 54c4da32..00000000 --- a/assets/resources/game/heros/hero/hm4/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@05706", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@fa6a2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@23485", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@19022", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2e69a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a7b60", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c34f6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b16b1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@c77d1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@90407", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@3923d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@99c07", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f248b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@db3d8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@7f562", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2b91f", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm4/max1.anim.meta b/assets/resources/game/heros/hero/hm4/max1.anim.meta deleted file mode 100644 index 1710564e..00000000 --- a/assets/resources/game/heros/hero/hm4/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"f09d798c-b375-48e8-9b7e-a5b559b125c8","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hm4/move.anim b/assets/resources/game/heros/hero/hm4/move.anim deleted file mode 100644 index c572249d..00000000 --- a/assets/resources/game/heros/hero/hm4/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@77da2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@b4f3f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@a2a1c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@d0266", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@2ebb0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@e8d44", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@245d1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "291f9343-4e76-46fa-9b8b-a44fffdc4d71@f0a99", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm4/move.anim.meta b/assets/resources/game/heros/hero/hm4/move.anim.meta deleted file mode 100644 index 475b4c91..00000000 --- a/assets/resources/game/heros/hero/hm4/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"65059101-3778-40b3-9a6b-f38c9de7dcc6","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hm5.meta b/assets/resources/game/heros/hero/hm5.meta deleted file mode 100644 index 87b1c3c0..00000000 --- a/assets/resources/game/heros/hero/hm5.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"1aca2b2c-2df0-4a7b-a935-cacb425443fa","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm5/atk0.anim.meta b/assets/resources/game/heros/hero/hm5/atk0.anim.meta deleted file mode 100644 index c21ba476..00000000 --- a/assets/resources/game/heros/hero/hm5/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"51c55cb4-4874-4fb7-81bb-3f7cddb9b365","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm5/dead.anim.meta b/assets/resources/game/heros/hero/hm5/dead.anim.meta deleted file mode 100644 index 7c3c515c..00000000 --- a/assets/resources/game/heros/hero/hm5/dead.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"bc62173a-c5f2-4dba-a667-14329403fc31","files":[".cconb"],"subMetas":{},"userData":{"name":"dead"}} diff --git a/assets/resources/game/heros/hero/hm5/idle.anim.meta b/assets/resources/game/heros/hero/hm5/idle.anim.meta deleted file mode 100644 index e7165587..00000000 --- a/assets/resources/game/heros/hero/hm5/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"81dda814-6e20-4e23-b4f8-55fea574d6f8","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm5/max0.anim.meta b/assets/resources/game/heros/hero/hm5/max0.anim.meta deleted file mode 100644 index 33b6415f..00000000 --- a/assets/resources/game/heros/hero/hm5/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"abed7a31-a287-4666-9aca-8ee7730add74","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm5/max1.anim.meta b/assets/resources/game/heros/hero/hm5/max1.anim.meta deleted file mode 100644 index 8bb2b361..00000000 --- a/assets/resources/game/heros/hero/hm5/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"d641171f-2a20-4f9a-be7f-21ee41d46887","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hm5/move.anim.meta b/assets/resources/game/heros/hero/hm5/move.anim.meta deleted file mode 100644 index 717bfb03..00000000 --- a/assets/resources/game/heros/hero/hm5/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"34951eaa-9c69-44fe-8875-3e8871b19f19","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hm6.meta b/assets/resources/game/heros/hero/hm6.meta deleted file mode 100644 index db03bb34..00000000 --- a/assets/resources/game/heros/hero/hm6.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"dfb14f29-d536-4e2e-93fc-beba34e30ff8","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm6/atk0.anim b/assets/resources/game/heros/hero/hm6/atk0.anim deleted file mode 100644 index 13a9b34b..00000000 --- a/assets/resources/game/heros/hero/hm6/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9aefe", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@7f02d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f7c7e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@13a75", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@dbe41", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c8315", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@030a6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d2e36", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@2717b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@20639", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm6/atk0.anim.meta b/assets/resources/game/heros/hero/hm6/atk0.anim.meta deleted file mode 100644 index e71a7dfe..00000000 --- a/assets/resources/game/heros/hero/hm6/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"3335957a-6ba6-4c04-8c6e-c392f64ae47d","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm6/idle.anim b/assets/resources/game/heros/hero/hm6/idle.anim deleted file mode 100644 index c3246b55..00000000 --- a/assets/resources/game/heros/hero/hm6/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@cca32", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@80807", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@be6a0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9fd62", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@3d1e1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@3ca6d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9b784", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c4c9e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f2872", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b6d83", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d9df1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@69dfe", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm6/idle.anim.meta b/assets/resources/game/heros/hero/hm6/idle.anim.meta deleted file mode 100644 index 841b606e..00000000 --- a/assets/resources/game/heros/hero/hm6/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"3f7337c1-7574-4c27-b9d9-fad58df5d9a8","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm6/max0.anim b/assets/resources/game/heros/hero/hm6/max0.anim deleted file mode 100644 index 3dee5ed2..00000000 --- a/assets/resources/game/heros/hero/hm6/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@3b520", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@1dc1c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c70f6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@fc658", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@2de00", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ff5c7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@676a8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ef7e7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@be04e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@11070", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9aaf1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b64b2", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm6/max0.anim.meta b/assets/resources/game/heros/hero/hm6/max0.anim.meta deleted file mode 100644 index cab658e1..00000000 --- a/assets/resources/game/heros/hero/hm6/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"2a42adaa-a86c-4271-86ff-b21bbf570f06","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm6/max1.anim b/assets/resources/game/heros/hero/hm6/max1.anim deleted file mode 100644 index f6fe18cb..00000000 --- a/assets/resources/game/heros/hero/hm6/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b810c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@bd1ca", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@742e8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ac239", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@324e5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@32dde", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@17bc1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b6793", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b8654", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@acf2b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@871d4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f856d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c2d9e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@e0f47", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@3b394", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@748bb", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm6/max1.anim.meta b/assets/resources/game/heros/hero/hm6/max1.anim.meta deleted file mode 100644 index 6e05da0e..00000000 --- a/assets/resources/game/heros/hero/hm6/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"af17361f-b4d8-47b6-8786-3fafc3be53f9","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hm6/move.anim b/assets/resources/game/heros/hero/hm6/move.anim deleted file mode 100644 index 2fae7509..00000000 --- a/assets/resources/game/heros/hero/hm6/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a7674", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@dcd40", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@60cab", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c76e2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@297e1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@77c35", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ff8cf", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5d540", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm6/move.anim.meta b/assets/resources/game/heros/hero/hm6/move.anim.meta deleted file mode 100644 index c32a6cfe..00000000 --- a/assets/resources/game/heros/hero/hm6/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"6f9bc36a-e805-4bda-92b1-9d46e119e17a","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hm7.meta b/assets/resources/game/heros/hero/hm7.meta deleted file mode 100644 index 529c37a2..00000000 --- a/assets/resources/game/heros/hero/hm7.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"e6d6e95e-22cd-45e1-93d4-eda32c0a44ea","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm7/atk0.anim b/assets/resources/game/heros/hero/hm7/atk0.anim deleted file mode 100644 index 11e43dc1..00000000 --- a/assets/resources/game/heros/hero/hm7/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9b83b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@09b94", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@88de4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@10d14", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@88c1c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@19556", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@96395", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@42711", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@67e90", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d9902", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm7/atk0.anim.meta b/assets/resources/game/heros/hero/hm7/atk0.anim.meta deleted file mode 100644 index c1dd31f5..00000000 --- a/assets/resources/game/heros/hero/hm7/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"244b437a-7625-48e6-9377-7bb63b784dcc","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm7/idle.anim b/assets/resources/game/heros/hero/hm7/idle.anim deleted file mode 100644 index ec99741f..00000000 --- a/assets/resources/game/heros/hero/hm7/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d71e7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@7c2d7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a7f7e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@15963", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@25ccb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ef9d4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@38ff7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d08aa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f0d79", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a5223", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@086cc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@18a14", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm7/idle.anim.meta b/assets/resources/game/heros/hero/hm7/idle.anim.meta deleted file mode 100644 index f28e1c28..00000000 --- a/assets/resources/game/heros/hero/hm7/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"2047567e-307a-4c8b-b179-32e340691361","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm7/max0.anim b/assets/resources/game/heros/hero/hm7/max0.anim deleted file mode 100644 index a68bce86..00000000 --- a/assets/resources/game/heros/hero/hm7/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b19c4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@963d6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@8830e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d4665", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@6dfc6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@baf7b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c41cf", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a666c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b4ca7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@560e6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@38d03", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@51a29", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm7/max0.anim.meta b/assets/resources/game/heros/hero/hm7/max0.anim.meta deleted file mode 100644 index 92a78301..00000000 --- a/assets/resources/game/heros/hero/hm7/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"ef999e38-d873-4d45-a748-35d435d66e7e","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm7/max1.anim b/assets/resources/game/heros/hero/hm7/max1.anim deleted file mode 100644 index 192fe897..00000000 --- a/assets/resources/game/heros/hero/hm7/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@00467", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5ff40", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@81f9e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@14630", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f3071", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@8fd64", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@917d1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c1a99", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@cd4ee", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@375b4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@0c4a4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ef8a7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@4bcc0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d369c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@fd869", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@6cab2", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm7/max1.anim.meta b/assets/resources/game/heros/hero/hm7/max1.anim.meta deleted file mode 100644 index 3278bc09..00000000 --- a/assets/resources/game/heros/hero/hm7/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"07225964-a1e6-412d-aab7-59214084505b","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hm7/move.anim b/assets/resources/game/heros/hero/hm7/move.anim deleted file mode 100644 index bcaa5f7f..00000000 --- a/assets/resources/game/heros/hero/hm7/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@03c2b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f27c3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c8a6b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@91c7e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@4d792", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@4a05f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b71c3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@00015", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm7/move.anim.meta b/assets/resources/game/heros/hero/hm7/move.anim.meta deleted file mode 100644 index da62439e..00000000 --- a/assets/resources/game/heros/hero/hm7/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"6da8ecd0-92d1-4bbe-b3d8-b27493cd1715","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hm789.plist b/assets/resources/game/heros/hero/hm789.plist deleted file mode 100644 index def98a6d..00000000 --- a/assets/resources/game/heros/hero/hm789.plist +++ /dev/null @@ -1,3356 +0,0 @@ - - - - - frames - - hm7_ATTACK0_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1},{128,128}} - textureRotated - - - hm7_ATTACK0_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,131},{128,128}} - textureRotated - - - hm7_ATTACK0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,261},{128,128}} - textureRotated - - - hm7_ATTACK0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,391},{128,128}} - textureRotated - - - hm7_ATTACK0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,521},{128,128}} - textureRotated - - - hm7_ATTACK0_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,651},{128,128}} - textureRotated - - - hm7_ATTACK0_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,781},{128,128}} - textureRotated - - - hm7_ATTACK0_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,911},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1041},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1171},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,391},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1041},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1301},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1431},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1561},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1691},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1821},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,131},{128,128}} - textureRotated - - - hm7_ATTACK3_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,261},{128,128}} - textureRotated - - - hm7_ATTACK4_0_Attack_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,521},{128,128}} - textureRotated - - - hm7_ATTACK4_0_Attack_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,651},{128,128}} - textureRotated - - - hm7_ATTACK4_0_Attack_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - hm7_ATTACK4_0_Attack_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,911},{128,128}} - textureRotated - - - hm7_ATTACK4_0_Attack_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1041},{128,128}} - textureRotated - - - hm7_ATTACK4_0_Attack_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1171},{128,128}} - textureRotated - - - hm7_ATTACK4_0_Attack_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1301},{128,128}} - textureRotated - - - hm7_ATTACK4_0_Attack_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1431},{128,128}} - textureRotated - - - hm7_ATTACK4_0_Attack_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1561},{128,128}} - textureRotated - - - hm7_ATTACK4_0_Attack_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1691},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1821},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1171},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1301},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1431},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1691},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1821},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,131},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,261},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,391},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,521},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,651},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,781},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,911},{128,128}} - textureRotated - - - hm7_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1041},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1171},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1301},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,131},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,261},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,391},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,521},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,651},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,781},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,911},{128,128}} - textureRotated - - - hm7_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1431},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1561},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1691},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1821},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,131},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,261},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - hm7_OTHER2_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - hm9_ATTACK0_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,651},{128,128}} - textureRotated - - - hm9_ATTACK0_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,781},{128,128}} - textureRotated - - - hm9_ATTACK0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,911},{128,128}} - textureRotated - - - hm9_ATTACK0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1041},{128,128}} - textureRotated - - - hm9_ATTACK0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1171},{128,128}} - textureRotated - - - hm9_ATTACK0_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1301},{128,128}} - textureRotated - - - hm9_ATTACK0_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1431},{128,128}} - textureRotated - - - hm9_ATTACK0_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1561},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1691},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1821},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1041},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1691},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,131},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,261},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,391},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,521},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,651},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,781},{128,128}} - textureRotated - - - hm9_ATTACK3_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,911},{128,128}} - textureRotated - - - hm9_ATTACK4_0_Attack_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1171},{128,128}} - textureRotated - - - hm9_ATTACK4_0_Attack_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1301},{128,128}} - textureRotated - - - hm9_ATTACK4_0_Attack_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1431},{128,128}} - textureRotated - - - hm9_ATTACK4_0_Attack_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1561},{128,128}} - textureRotated - - - hm9_ATTACK4_0_Attack_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1691},{128,128}} - textureRotated - - - hm9_ATTACK4_0_Attack_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1821},{128,128}} - textureRotated - - - hm9_ATTACK4_0_Attack_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1},{128,128}} - textureRotated - - - hm9_ATTACK4_0_Attack_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,131},{128,128}} - textureRotated - - - hm9_ATTACK4_0_Attack_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,261},{128,128}} - textureRotated - - - hm9_ATTACK4_0_Attack_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,391},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,521},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,651},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1821},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,131},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,261},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,391},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,521},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,781},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,911},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1041},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1171},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1301},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1431},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1561},{128,128}} - textureRotated - - - hm9_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1691},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1821},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,781},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,911},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1041},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1171},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1301},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1431},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - hm9_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,131},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,261},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,391},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,521},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,651},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,781},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,911},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1041},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - hm9_OTHER2_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - hmy6_ATTACK0_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1301},{128,128}} - textureRotated - - - hmy6_ATTACK0_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1431},{128,128}} - textureRotated - - - hmy6_ATTACK0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1561},{128,128}} - textureRotated - - - hmy6_ATTACK0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1691},{128,128}} - textureRotated - - - hmy6_ATTACK0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1821},{128,128}} - textureRotated - - - hmy6_ATTACK0_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1},{128,128}} - textureRotated - - - hmy6_ATTACK0_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,131},{128,128}} - textureRotated - - - hmy6_ATTACK0_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,261},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,391},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,521},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1691},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,391},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,651},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,781},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1041},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1171},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1301},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1431},{128,128}} - textureRotated - - - hmy6_ATTACK3_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1561},{128,128}} - textureRotated - - - hmy6_ATTACK4_0_Attack_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1821},{128,128}} - textureRotated - - - hmy6_ATTACK4_0_Attack_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1},{128,128}} - textureRotated - - - hmy6_ATTACK4_0_Attack_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,131},{128,128}} - textureRotated - - - hmy6_ATTACK4_0_Attack_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,261},{128,128}} - textureRotated - - - hmy6_ATTACK4_0_Attack_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,391},{128,128}} - textureRotated - - - hmy6_ATTACK4_0_Attack_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,521},{128,128}} - textureRotated - - - hmy6_ATTACK4_0_Attack_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,651},{128,128}} - textureRotated - - - hmy6_ATTACK4_0_Attack_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,781},{128,128}} - textureRotated - - - hmy6_ATTACK4_0_Attack_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,911},{128,128}} - textureRotated - - - hmy6_ATTACK4_0_Attack_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1041},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1171},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1301},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,521},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,651},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,781},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,911},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1041},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1171},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1431},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1561},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1821},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,131},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,261},{128,128}} - textureRotated - - - hmy6_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,391},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1301},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1301},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,521},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,651},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1431},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1561},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1691},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1821},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,131},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,261},{128,128}} - textureRotated - - - hmy6_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,391},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,781},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,911},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1041},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1171},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1301},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1431},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1561},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - hmy6_OTHER2_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1821},{128,128}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - hm789.png - size - {1690,1950} - smartupdate - $TexturePacker:SmartUpdate:b5adb7bee5811811d3db45fab7edcd45:516e50d7d5a4f55fdfeeb33e315cbe10:d49227bad059c02e6e810e4146545a96$ - textureFileName - hm789.png - - - diff --git a/assets/resources/game/heros/hero/hm789.plist.meta b/assets/resources/game/heros/hero/hm789.plist.meta deleted file mode 100644 index d517c704..00000000 --- a/assets/resources/game/heros/hero/hm789.plist.meta +++ /dev/null @@ -1,10229 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "files": [ - ".json" - ], - "subMetas": { - "11070": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@11070", - "displayName": "", - "id": "11070", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14630": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@14630", - "displayName": "", - "id": "14630", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "15963": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@15963", - "displayName": "", - "id": "15963", - "name": "hm7_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "16433": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@16433", - "displayName": "", - "id": "16433", - "name": "hm9_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "18393": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@18393", - "displayName": "", - "id": "18393", - "name": "hmy6_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "19556": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@19556", - "displayName": "", - "id": "19556", - "name": "hm7_ATTACK4_0_Attack_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "20639": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@20639", - "displayName": "", - "id": "20639", - "name": "hmy6_ATTACK4_0_Attack_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "29702": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@29702", - "displayName": "", - "id": "29702", - "name": "hm9_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "40503": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@40503", - "displayName": "", - "id": "40503", - "name": "hm9_ATTACK3_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "42162": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@42162", - "displayName": "", - "id": "42162", - "name": "hm9_ATTACK4_0_Attack_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "42711": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@42711", - "displayName": "", - "id": "42711", - "name": "hm7_ATTACK4_0_Attack_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "45703": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@45703", - "displayName": "", - "id": "45703", - "name": "hm9_ATTACK4_0_Attack_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "48354": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@48354", - "displayName": "", - "id": "48354", - "name": "hm7_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "49789": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@49789", - "displayName": "", - "id": "49789", - "name": "hm9_ATTACK3_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50554": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@50554", - "displayName": "", - "id": "50554", - "name": "hm9_ATTACK0_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "52621": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@52621", - "displayName": "", - "id": "52621", - "name": "hm9_ATTACK3_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "64153": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@64153", - "displayName": "", - "id": "64153", - "name": "hm7_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69496": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@69496", - "displayName": "", - "id": "69496", - "name": "hm9_ATTACK3_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "76488": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@76488", - "displayName": "", - "id": "76488", - "name": "hm7_OTHER2_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "77495": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@77495", - "displayName": "", - "id": "77495", - "name": "hm9_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "80417": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@80417", - "displayName": "", - "id": "80417", - "name": "hm9_ATTACK0_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "80807": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@80807", - "displayName": "", - "id": "80807", - "name": "hmy6_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "83558": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@83558", - "displayName": "", - "id": "83558", - "name": "hm7_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "86507": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@86507", - "displayName": "", - "id": "86507", - "name": "hm9_ATTACK4_0_Attack_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "95861": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@95861", - "displayName": "", - "id": "95861", - "name": "hm9_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "96395": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@96395", - "displayName": "", - "id": "96395", - "name": "hm7_ATTACK4_0_Attack_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "03c2b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@03c2b", - "displayName": "", - "id": "03c2b", - "name": "hm7_ATTACK0_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f27c3": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f27c3", - "displayName": "", - "id": "f27c3", - "name": "hm7_ATTACK0_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c8a6b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c8a6b", - "displayName": "", - "id": "c8a6b", - "name": "hm7_ATTACK0_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "91c7e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@91c7e", - "displayName": "", - "id": "91c7e", - "name": "hm7_ATTACK0_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4d792": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@4d792", - "displayName": "", - "id": "4d792", - "name": "hm7_ATTACK0_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4a05f": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@4a05f", - "displayName": "", - "id": "4a05f", - "name": "hm7_ATTACK0_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b71c3": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b71c3", - "displayName": "", - "id": "b71c3", - "name": "hm7_ATTACK0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "00015": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@00015", - "displayName": "", - "id": "00015", - "name": "hm7_ATTACK0_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b19c4": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b19c4", - "displayName": "", - "id": "b19c4", - "name": "hm7_ATTACK3_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "963d6": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@963d6", - "displayName": "", - "id": "963d6", - "name": "hm7_ATTACK3_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "38d03": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@38d03", - "displayName": "", - "id": "38d03", - "name": "hm7_ATTACK3_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51a29": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@51a29", - "displayName": "", - "id": "51a29", - "name": "hm7_ATTACK3_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8830e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@8830e", - "displayName": "", - "id": "8830e", - "name": "hm7_ATTACK3_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d4665": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d4665", - "displayName": "", - "id": "d4665", - "name": "hm7_ATTACK3_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6dfc6": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@6dfc6", - "displayName": "", - "id": "6dfc6", - "name": "hm7_ATTACK3_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "baf7b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@baf7b", - "displayName": "", - "id": "baf7b", - "name": "hm7_ATTACK3_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c41cf": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c41cf", - "displayName": "", - "id": "c41cf", - "name": "hm7_ATTACK3_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a666c": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a666c", - "displayName": "", - "id": "a666c", - "name": "hm7_ATTACK3_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b4ca7": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b4ca7", - "displayName": "", - "id": "b4ca7", - "name": "hm7_ATTACK3_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "560e6": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@560e6", - "displayName": "", - "id": "560e6", - "name": "hm7_ATTACK3_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9b83b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9b83b", - "displayName": "", - "id": "9b83b", - "name": "hm7_ATTACK4_0_Attack_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "09b94": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@09b94", - "displayName": "", - "id": "09b94", - "name": "hm7_ATTACK4_0_Attack_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "88de4": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@88de4", - "displayName": "", - "id": "88de4", - "name": "hm7_ATTACK4_0_Attack_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "10d14": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@10d14", - "displayName": "", - "id": "10d14", - "name": "hm7_ATTACK4_0_Attack_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "88c1c": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@88c1c", - "displayName": "", - "id": "88c1c", - "name": "hm7_ATTACK4_0_Attack_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "67e90": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@67e90", - "displayName": "", - "id": "67e90", - "name": "hm7_ATTACK4_0_Attack_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d9902": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d9902", - "displayName": "", - "id": "d9902", - "name": "hm7_ATTACK4_0_Attack_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "00467": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@00467", - "displayName": "", - "id": "00467", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5ff40": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5ff40", - "displayName": "", - "id": "5ff40", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0c4a4": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@0c4a4", - "displayName": "", - "id": "0c4a4", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ef8a7": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ef8a7", - "displayName": "", - "id": "ef8a7", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4bcc0": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@4bcc0", - "displayName": "", - "id": "4bcc0", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d369c": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d369c", - "displayName": "", - "id": "d369c", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fd869": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@fd869", - "displayName": "", - "id": "fd869", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6cab2": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@6cab2", - "displayName": "", - "id": "6cab2", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "81f9e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@81f9e", - "displayName": "", - "id": "81f9e", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f3071": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f3071", - "displayName": "", - "id": "f3071", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8fd64": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@8fd64", - "displayName": "", - "id": "8fd64", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "917d1": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@917d1", - "displayName": "", - "id": "917d1", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c1a99": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c1a99", - "displayName": "", - "id": "c1a99", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd4ee": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@cd4ee", - "displayName": "", - "id": "cd4ee", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "375b4": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@375b4", - "displayName": "", - "id": "375b4", - "name": "hm7_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d71e7": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d71e7", - "displayName": "", - "id": "d71e7", - "name": "hm7_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7c2d7": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@7c2d7", - "displayName": "", - "id": "7c2d7", - "name": "hm7_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "086cc": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@086cc", - "displayName": "", - "id": "086cc", - "name": "hm7_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "18a14": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@18a14", - "displayName": "", - "id": "18a14", - "name": "hm7_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a7f7e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a7f7e", - "displayName": "", - "id": "a7f7e", - "name": "hm7_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "25ccb": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@25ccb", - "displayName": "", - "id": "25ccb", - "name": "hm7_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ef9d4": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ef9d4", - "displayName": "", - "id": "ef9d4", - "name": "hm7_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "38ff7": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@38ff7", - "displayName": "", - "id": "38ff7", - "name": "hm7_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d08aa": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d08aa", - "displayName": "", - "id": "d08aa", - "name": "hm7_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f0d79": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f0d79", - "displayName": "", - "id": "f0d79", - "name": "hm7_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a5223": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a5223", - "displayName": "", - "id": "a5223", - "name": "hm7_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cf090": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@cf090", - "displayName": "", - "id": "cf090", - "name": "hm7_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ce23e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ce23e", - "displayName": "", - "id": "ce23e", - "name": "hm7_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5cccc": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5cccc", - "displayName": "", - "id": "5cccc", - "name": "hm7_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3dc8d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@3dc8d", - "displayName": "", - "id": "3dc8d", - "name": "hm7_OTHER2_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ef2fe": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ef2fe", - "displayName": "", - "id": "ef2fe", - "name": "hm7_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2bc7f": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@2bc7f", - "displayName": "", - "id": "2bc7f", - "name": "hm7_OTHER2_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e1c0c": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@e1c0c", - "displayName": "", - "id": "e1c0c", - "name": "hm7_OTHER2_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51fbe": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@51fbe", - "displayName": "", - "id": "51fbe", - "name": "hm7_OTHER2_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f8138": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f8138", - "displayName": "", - "id": "f8138", - "name": "hm7_OTHER2_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff2e5": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ff2e5", - "displayName": "", - "id": "ff2e5", - "name": "hm7_OTHER2_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c0536": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c0536", - "displayName": "", - "id": "c0536", - "name": "hm7_OTHER2_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ee7be": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ee7be", - "displayName": "", - "id": "ee7be", - "name": "hm7_OTHER2_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "419af": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@419af", - "displayName": "", - "id": "419af", - "name": "hm9_ATTACK0_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "76cf8": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@76cf8", - "displayName": "", - "id": "76cf8", - "name": "hm9_ATTACK0_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe5f8": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@fe5f8", - "displayName": "", - "id": "fe5f8", - "name": "hm9_ATTACK0_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "faa2d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@faa2d", - "displayName": "", - "id": "faa2d", - "name": "hm9_ATTACK0_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5a1ee": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5a1ee", - "displayName": "", - "id": "5a1ee", - "name": "hm9_ATTACK0_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e9594": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@e9594", - "displayName": "", - "id": "e9594", - "name": "hm9_ATTACK0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "13f27": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@13f27", - "displayName": "", - "id": "13f27", - "name": "hm9_ATTACK3_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "38ebd": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@38ebd", - "displayName": "", - "id": "38ebd", - "name": "hm9_ATTACK3_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0d3e9": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@0d3e9", - "displayName": "", - "id": "0d3e9", - "name": "hm9_ATTACK3_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d89df": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d89df", - "displayName": "", - "id": "d89df", - "name": "hm9_ATTACK3_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6ac5d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@6ac5d", - "displayName": "", - "id": "6ac5d", - "name": "hm9_ATTACK3_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b0c8d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b0c8d", - "displayName": "", - "id": "b0c8d", - "name": "hm9_ATTACK3_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b9893": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b9893", - "displayName": "", - "id": "b9893", - "name": "hm9_ATTACK3_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "06078": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@06078", - "displayName": "", - "id": "06078", - "name": "hm9_ATTACK3_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4122a": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@4122a", - "displayName": "", - "id": "4122a", - "name": "hm9_ATTACK4_0_Attack_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fcd77": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@fcd77", - "displayName": "", - "id": "fcd77", - "name": "hm9_ATTACK4_0_Attack_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1471b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@1471b", - "displayName": "", - "id": "1471b", - "name": "hm9_ATTACK4_0_Attack_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7d4f7": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@7d4f7", - "displayName": "", - "id": "7d4f7", - "name": "hm9_ATTACK4_0_Attack_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "905e0": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@905e0", - "displayName": "", - "id": "905e0", - "name": "hm9_ATTACK4_0_Attack_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "99f97": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@99f97", - "displayName": "", - "id": "99f97", - "name": "hm9_ATTACK4_0_Attack_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ab6a0": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ab6a0", - "displayName": "", - "id": "ab6a0", - "name": "hm9_ATTACK4_0_Attack_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "816c0": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@816c0", - "displayName": "", - "id": "816c0", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9a508": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9a508", - "displayName": "", - "id": "9a508", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6fb19": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@6fb19", - "displayName": "", - "id": "6fb19", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "06cdf": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@06cdf", - "displayName": "", - "id": "06cdf", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d123b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d123b", - "displayName": "", - "id": "d123b", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b71ca": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b71ca", - "displayName": "", - "id": "b71ca", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "06d31": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@06d31", - "displayName": "", - "id": "06d31", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f2ef9": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f2ef9", - "displayName": "", - "id": "f2ef9", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2231d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@2231d", - "displayName": "", - "id": "2231d", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d3c1": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5d3c1", - "displayName": "", - "id": "5d3c1", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "53bf5": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@53bf5", - "displayName": "", - "id": "53bf5", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d137f": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d137f", - "displayName": "", - "id": "d137f", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "098a9": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@098a9", - "displayName": "", - "id": "098a9", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c6db5": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c6db5", - "displayName": "", - "id": "c6db5", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5c845": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5c845", - "displayName": "", - "id": "5c845", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "aef58": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@aef58", - "displayName": "", - "id": "aef58", - "name": "hm9_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f081b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f081b", - "displayName": "", - "id": "f081b", - "name": "hm9_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "af58f": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@af58f", - "displayName": "", - "id": "af58f", - "name": "hm9_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8b82d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@8b82d", - "displayName": "", - "id": "8b82d", - "name": "hm9_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a1296": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a1296", - "displayName": "", - "id": "a1296", - "name": "hm9_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8ad0e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@8ad0e", - "displayName": "", - "id": "8ad0e", - "name": "hm9_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2ec27": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@2ec27", - "displayName": "", - "id": "2ec27", - "name": "hm9_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d7e8f": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d7e8f", - "displayName": "", - "id": "d7e8f", - "name": "hm9_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "801a5": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@801a5", - "displayName": "", - "id": "801a5", - "name": "hm9_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f4669": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f4669", - "displayName": "", - "id": "f4669", - "name": "hm9_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "aac70": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@aac70", - "displayName": "", - "id": "aac70", - "name": "hm9_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cdd2c": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@cdd2c", - "displayName": "", - "id": "cdd2c", - "name": "hm9_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ae0d3": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ae0d3", - "displayName": "", - "id": "ae0d3", - "name": "hm9_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6e23": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d6e23", - "displayName": "", - "id": "d6e23", - "name": "hm9_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "20d09": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@20d09", - "displayName": "", - "id": "20d09", - "name": "hm9_OTHER2_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "aeb5f": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@aeb5f", - "displayName": "", - "id": "aeb5f", - "name": "hm9_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f216d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f216d", - "displayName": "", - "id": "f216d", - "name": "hm9_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0e5f8": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@0e5f8", - "displayName": "", - "id": "0e5f8", - "name": "hm9_OTHER2_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1ae8f": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@1ae8f", - "displayName": "", - "id": "1ae8f", - "name": "hm9_OTHER2_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "96f4f": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@96f4f", - "displayName": "", - "id": "96f4f", - "name": "hm9_OTHER2_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb1fd": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@eb1fd", - "displayName": "", - "id": "eb1fd", - "name": "hm9_OTHER2_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d1f0": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@6d1f0", - "displayName": "", - "id": "6d1f0", - "name": "hm9_OTHER2_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "75c2b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@75c2b", - "displayName": "", - "id": "75c2b", - "name": "hm9_OTHER2_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50d88": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@50d88", - "displayName": "", - "id": "50d88", - "name": "hm9_OTHER2_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5cb79": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5cb79", - "displayName": "", - "id": "5cb79", - "name": "hm9_OTHER2_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a7674": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a7674", - "displayName": "", - "id": "a7674", - "name": "hmy6_ATTACK0_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dcd40": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@dcd40", - "displayName": "", - "id": "dcd40", - "name": "hmy6_ATTACK0_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60cab": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@60cab", - "displayName": "", - "id": "60cab", - "name": "hmy6_ATTACK0_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c76e2": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c76e2", - "displayName": "", - "id": "c76e2", - "name": "hmy6_ATTACK0_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "297e1": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@297e1", - "displayName": "", - "id": "297e1", - "name": "hmy6_ATTACK0_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "77c35": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@77c35", - "displayName": "", - "id": "77c35", - "name": "hmy6_ATTACK0_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff8cf": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ff8cf", - "displayName": "", - "id": "ff8cf", - "name": "hmy6_ATTACK0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d540": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5d540", - "displayName": "", - "id": "5d540", - "name": "hmy6_ATTACK0_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3b520": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@3b520", - "displayName": "", - "id": "3b520", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1dc1c": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@1dc1c", - "displayName": "", - "id": "1dc1c", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9aaf1": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9aaf1", - "displayName": "", - "id": "9aaf1", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b64b2": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b64b2", - "displayName": "", - "id": "b64b2", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c70f6": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c70f6", - "displayName": "", - "id": "c70f6", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fc658": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@fc658", - "displayName": "", - "id": "fc658", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2de00": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@2de00", - "displayName": "", - "id": "2de00", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff5c7": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ff5c7", - "displayName": "", - "id": "ff5c7", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "676a8": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@676a8", - "displayName": "", - "id": "676a8", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ef7e7": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ef7e7", - "displayName": "", - "id": "ef7e7", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "be04e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@be04e", - "displayName": "", - "id": "be04e", - "name": "hmy6_ATTACK3_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9aefe": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9aefe", - "displayName": "", - "id": "9aefe", - "name": "hmy6_ATTACK4_0_Attack_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7f02d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@7f02d", - "displayName": "", - "id": "7f02d", - "name": "hmy6_ATTACK4_0_Attack_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f7c7e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f7c7e", - "displayName": "", - "id": "f7c7e", - "name": "hmy6_ATTACK4_0_Attack_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "13a75": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@13a75", - "displayName": "", - "id": "13a75", - "name": "hmy6_ATTACK4_0_Attack_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dbe41": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@dbe41", - "displayName": "", - "id": "dbe41", - "name": "hmy6_ATTACK4_0_Attack_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c8315": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c8315", - "displayName": "", - "id": "c8315", - "name": "hmy6_ATTACK4_0_Attack_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "030a6": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@030a6", - "displayName": "", - "id": "030a6", - "name": "hmy6_ATTACK4_0_Attack_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d2e36": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d2e36", - "displayName": "", - "id": "d2e36", - "name": "hmy6_ATTACK4_0_Attack_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2717b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@2717b", - "displayName": "", - "id": "2717b", - "name": "hmy6_ATTACK4_0_Attack_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b810c": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b810c", - "displayName": "", - "id": "b810c", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bd1ca": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@bd1ca", - "displayName": "", - "id": "bd1ca", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "871d4": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@871d4", - "displayName": "", - "id": "871d4", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f856d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f856d", - "displayName": "", - "id": "f856d", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c2d9e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c2d9e", - "displayName": "", - "id": "c2d9e", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e0f47": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@e0f47", - "displayName": "", - "id": "e0f47", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3b394": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@3b394", - "displayName": "", - "id": "3b394", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "748bb": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@748bb", - "displayName": "", - "id": "748bb", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "742e8": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@742e8", - "displayName": "", - "id": "742e8", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ac239": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ac239", - "displayName": "", - "id": "ac239", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "324e5": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@324e5", - "displayName": "", - "id": "324e5", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "32dde": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@32dde", - "displayName": "", - "id": "32dde", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "17bc1": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@17bc1", - "displayName": "", - "id": "17bc1", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b6793": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b6793", - "displayName": "", - "id": "b6793", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b8654": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b8654", - "displayName": "", - "id": "b8654", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "acf2b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@acf2b", - "displayName": "", - "id": "acf2b", - "name": "hmy6_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cca32": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@cca32", - "displayName": "", - "id": "cca32", - "name": "hmy6_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d9df1": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d9df1", - "displayName": "", - "id": "d9df1", - "name": "hmy6_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69dfe": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@69dfe", - "displayName": "", - "id": "69dfe", - "name": "hmy6_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "be6a0": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@be6a0", - "displayName": "", - "id": "be6a0", - "name": "hmy6_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9fd62": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9fd62", - "displayName": "", - "id": "9fd62", - "name": "hmy6_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3d1e1": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@3d1e1", - "displayName": "", - "id": "3d1e1", - "name": "hmy6_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3ca6d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@3ca6d", - "displayName": "", - "id": "3ca6d", - "name": "hmy6_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9b784": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9b784", - "displayName": "", - "id": "9b784", - "name": "hmy6_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4c9e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c4c9e", - "displayName": "", - "id": "c4c9e", - "name": "hmy6_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f2872": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f2872", - "displayName": "", - "id": "f2872", - "name": "hmy6_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b6d83": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b6d83", - "displayName": "", - "id": "b6d83", - "name": "hmy6_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "29d7d": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@29d7d", - "displayName": "", - "id": "29d7d", - "name": "hmy6_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d3ed": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5d3ed", - "displayName": "", - "id": "5d3ed", - "name": "hmy6_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "083ef": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@083ef", - "displayName": "", - "id": "083ef", - "name": "hmy6_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "516c8": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@516c8", - "displayName": "", - "id": "516c8", - "name": "hmy6_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9de7e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9de7e", - "displayName": "", - "id": "9de7e", - "name": "hmy6_OTHER2_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "29a3b": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@29a3b", - "displayName": "", - "id": "29a3b", - "name": "hmy6_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7a6c3": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@7a6c3", - "displayName": "", - "id": "7a6c3", - "name": "hmy6_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8fbd8": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@8fbd8", - "displayName": "", - "id": "8fbd8", - "name": "hmy6_OTHER2_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "350ab": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@350ab", - "displayName": "", - "id": "350ab", - "name": "hmy6_OTHER2_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "32ea8": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@32ea8", - "displayName": "", - "id": "32ea8", - "name": "hmy6_OTHER2_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a5e7c": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a5e7c", - "displayName": "", - "id": "a5e7c", - "name": "hmy6_OTHER2_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1d22e": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@1d22e", - "displayName": "", - "id": "1d22e", - "name": "hmy6_OTHER2_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "df9f9": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@df9f9", - "displayName": "", - "id": "df9f9", - "name": "hmy6_OTHER2_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b0d21": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b0d21", - "displayName": "", - "id": "b0d21", - "name": "hmy6_OTHER2_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cb721": { - "importer": "sprite-frame", - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5@cb721", - "displayName": "", - "id": "cb721", - "name": "hmy6_OTHER2_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "atlasUuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "hm789.png", - "format": 3, - "uuid": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "textureUuid": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a" - } -} diff --git a/assets/resources/game/heros/hero/hm789.png b/assets/resources/game/heros/hero/hm789.png deleted file mode 100644 index afcc8ffa..00000000 Binary files a/assets/resources/game/heros/hero/hm789.png and /dev/null differ diff --git a/assets/resources/game/heros/hero/hm8.meta b/assets/resources/game/heros/hero/hm8.meta deleted file mode 100644 index 50a87d0e..00000000 --- a/assets/resources/game/heros/hero/hm8.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"295496ac-9bfc-4aa2-b349-1a3c982303dd","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm8/atk0.anim.meta b/assets/resources/game/heros/hero/hm8/atk0.anim.meta deleted file mode 100644 index d755d46b..00000000 --- a/assets/resources/game/heros/hero/hm8/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c05e1fba-fbad-4d0b-a613-b864a16ab731","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm8/dead.anim.meta b/assets/resources/game/heros/hero/hm8/dead.anim.meta deleted file mode 100644 index 009c8540..00000000 --- a/assets/resources/game/heros/hero/hm8/dead.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"35c506d5-6c88-409c-99db-ef2db419cd69","files":[".cconb"],"subMetas":{},"userData":{"name":"dead"}} diff --git a/assets/resources/game/heros/hero/hm8/idle.anim.meta b/assets/resources/game/heros/hero/hm8/idle.anim.meta deleted file mode 100644 index 894ac35b..00000000 --- a/assets/resources/game/heros/hero/hm8/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"5ae5903e-b565-48b7-9aa0-b911e188cba8","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm8/max0.anim.meta b/assets/resources/game/heros/hero/hm8/max0.anim.meta deleted file mode 100644 index 3d2675bf..00000000 --- a/assets/resources/game/heros/hero/hm8/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b5a1ace7-b72b-447e-ad85-e4b8b1eb1afe","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm8/max1.anim.meta b/assets/resources/game/heros/hero/hm8/max1.anim.meta deleted file mode 100644 index c181adb5..00000000 --- a/assets/resources/game/heros/hero/hm8/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"f1238b67-3dbb-45fa-a7f1-1118da7fecd5","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hm8/move.anim.meta b/assets/resources/game/heros/hero/hm8/move.anim.meta deleted file mode 100644 index cdc3ee26..00000000 --- a/assets/resources/game/heros/hero/hm8/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"6c04522e-73ba-4e64-9b25-758c35babcec","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hm9.meta b/assets/resources/game/heros/hero/hm9.meta deleted file mode 100644 index e64020a3..00000000 --- a/assets/resources/game/heros/hero/hm9.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"0a57aa36-62e8-4e19-918e-1920c85f2235","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hm9/atk0.anim b/assets/resources/game/heros/hero/hm9/atk0.anim deleted file mode 100644 index f0e8737b..00000000 --- a/assets/resources/game/heros/hero/hm9/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@42162", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@4122a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@fcd77", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@1471b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@7d4f7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@86507", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@905e0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@99f97", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@45703", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@ab6a0", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm9/atk0.anim.meta b/assets/resources/game/heros/hero/hm9/atk0.anim.meta deleted file mode 100644 index ab199975..00000000 --- a/assets/resources/game/heros/hero/hm9/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b51bdbf8-c93c-4dcd-9796-0195848be5b3","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hm9/idle.anim b/assets/resources/game/heros/hero/hm9/idle.anim deleted file mode 100644 index 0fe5d8d7..00000000 --- a/assets/resources/game/heros/hero/hm9/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f081b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@af58f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@8ad0e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@2ec27", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d7e8f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@801a5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@29702", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f4669", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@aac70", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@cdd2c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@8b82d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@a1296", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm9/idle.anim.meta b/assets/resources/game/heros/hero/hm9/idle.anim.meta deleted file mode 100644 index 80cb4448..00000000 --- a/assets/resources/game/heros/hero/hm9/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a3d777a8-c77b-4423-a91b-4d56034028ab","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hm9/max0.anim b/assets/resources/game/heros/hero/hm9/max0.anim deleted file mode 100644 index 30bd3c70..00000000 --- a/assets/resources/game/heros/hero/hm9/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@52621", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@13f27", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@0d3e9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d89df", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@6ac5d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@69496", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b0c8d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b9893", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@49789", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@06078", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@38ebd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@40503", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm9/max0.anim.meta b/assets/resources/game/heros/hero/hm9/max0.anim.meta deleted file mode 100644 index 81f6a2ad..00000000 --- a/assets/resources/game/heros/hero/hm9/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"587d2453-bca0-4d9c-bfd4-de47255c89d0","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hm9/max1.anim b/assets/resources/game/heros/hero/hm9/max1.anim deleted file mode 100644 index 641621cb..00000000 --- a/assets/resources/game/heros/hero/hm9/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@816c0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@9a508", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@2231d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5d3c1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@53bf5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d137f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@098a9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@c6db5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5c845", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@aef58", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@6fb19", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@06cdf", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d123b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@b71ca", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@06d31", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f2ef9", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm9/max1.anim.meta b/assets/resources/game/heros/hero/hm9/max1.anim.meta deleted file mode 100644 index 132ed1ba..00000000 --- a/assets/resources/game/heros/hero/hm9/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c5071f48-6ffe-4d58-a824-d87ca5d87c58","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hm9/move.anim b/assets/resources/game/heros/hero/hm9/move.anim deleted file mode 100644 index 125514f3..00000000 --- a/assets/resources/game/heros/hero/hm9/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@50554", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@419af", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@76cf8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@fe5f8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@faa2d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@5a1ee", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@e9594", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@80417", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hm9/move.anim.meta b/assets/resources/game/heros/hero/hm9/move.anim.meta deleted file mode 100644 index f0eb588e..00000000 --- a/assets/resources/game/heros/hero/hm9/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"3ff9d16f-259c-4d41-9f9e-0bb9a91c5475","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/hz1.meta b/assets/resources/game/heros/hero/hz1.meta deleted file mode 100644 index c66f572b..00000000 --- a/assets/resources/game/heros/hero/hz1.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"e299e22e-2f59-4077-babf-4ec08c58116a","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/heros/hero/hz1/atk0.anim b/assets/resources/game/heros/hero/hz1/atk0.anim deleted file mode 100644 index 1917c4d7..00000000 --- a/assets/resources/game/heros/hero/hz1/atk0.anim +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@81b06", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@d3447", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@99226", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@deebe", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@4aec0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@655f7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@f354b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@88026", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@82f6d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@45e10", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hz1/atk0.anim.meta b/assets/resources/game/heros/hero/hz1/atk0.anim.meta deleted file mode 100644 index 6bb0c395..00000000 --- a/assets/resources/game/heros/hero/hz1/atk0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"6584970d-6f08-4a6d-841c-ad607fdb5ba4","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}} diff --git a/assets/resources/game/heros/hero/hz1/idle.anim b/assets/resources/game/heros/hero/hz1/idle.anim deleted file mode 100644 index d6df32c2..00000000 --- a/assets/resources/game/heros/hero/hz1/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.8, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667, - 0.5333333333333333, - 0.6, - 0.6666666666666666, - 0.7333333333333333 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@2f975", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@48499", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@eae7b", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@54622", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@a3b97", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@4eb63", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@9271e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@81d84", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@d6df0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@b344e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@c6648", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@2ada7", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hz1/idle.anim.meta b/assets/resources/game/heros/hero/hz1/idle.anim.meta deleted file mode 100644 index 3336e7d4..00000000 --- a/assets/resources/game/heros/hero/hz1/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"f1de4092-7e1d-4cce-862a-153a40ed5d65","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/heros/hero/hz1/max0.anim b/assets/resources/game/heros/hero/hz1/max0.anim deleted file mode 100644 index 5f4222a4..00000000 --- a/assets/resources/game/heros/hero/hz1/max0.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max0", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 20, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.6, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.05, - 0.1, - 0.15, - 0.2, - 0.25, - 0.3, - 0.35, - 0.4, - 0.45, - 0.5, - 0.55 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@564ad", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@0ea7a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@3f85e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@02ed1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@8e15d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@2d568", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@7d894", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@7d038", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@0ec90", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@8aa7c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@c11b1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@e989e", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hz1/max0.anim.meta b/assets/resources/game/heros/hero/hz1/max0.anim.meta deleted file mode 100644 index b23b155f..00000000 --- a/assets/resources/game/heros/hero/hz1/max0.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"fd55f78d-9794-461d-bdd7-32ed7eaad92e","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}} diff --git a/assets/resources/game/heros/hero/hz1/max1.anim b/assets/resources/game/heros/hero/hz1/max1.anim deleted file mode 100644 index 18d6e970..00000000 --- a/assets/resources/game/heros/hero/hz1/max1.anim +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max1", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 30, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.03333333333333333, - 0.06666666666666667, - 0.1, - 0.13333333333333333, - 0.16666666666666666, - 0.2, - 0.23333333333333334, - 0.26666666666666666, - 0.3, - 0.3333333333333333, - 0.36666666666666664, - 0.4, - 0.43333333333333335, - 0.4666666666666667, - 0.5 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@e4de9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@b8690", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@a54e5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@eb3b9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@09725", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@ec646", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@a551d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@246c7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@f0a73", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@234d0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@2b6f1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@4cd3d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@b03b7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@8459f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@5085c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@38c89", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hz1/max1.anim.meta b/assets/resources/game/heros/hero/hz1/max1.anim.meta deleted file mode 100644 index 59fc7ff1..00000000 --- a/assets/resources/game/heros/hero/hz1/max1.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b44da24e-66e0-4635-ad32-573a72f4796d","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}} diff --git a/assets/resources/game/heros/hero/hz1/move.anim b/assets/resources/game/heros/hero/hz1/move.anim deleted file mode 100644 index 46d218e2..00000000 --- a/assets/resources/game/heros/hero/hz1/move.anim +++ /dev/null @@ -1,113 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 15, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.5333333333333333, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.06666666666666667, - 0.13333333333333333, - 0.2, - 0.26666666666666666, - 0.3333333333333333, - 0.4, - 0.4666666666666667 - ], - "_values": [ - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@49454", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@c6007", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@4759f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@b63aa", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@41361", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@3cac1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@c041f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@b52db", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hero/hz1/move.anim.meta b/assets/resources/game/heros/hero/hz1/move.anim.meta deleted file mode 100644 index 07a0b2ee..00000000 --- a/assets/resources/game/heros/hero/hz1/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b10e5ef0-6f07-4cd9-97d6-1a9ce6e17e4c","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/heros/hero/k1k2.plist b/assets/resources/game/heros/hero/k1234.plist similarity index 68% rename from assets/resources/game/heros/hero/k1k2.plist rename to assets/resources/game/heros/hero/k1234.plist index dac213fb..547cc1d8 100644 --- a/assets/resources/game/heros/hero/k1k2.plist +++ b/assets/resources/game/heros/hero/k1234.plist @@ -4,7 +4,7 @@ frames - SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-0.png + k1_ATTACK0_0_Attack_Normal_0-0.png aliases @@ -15,11 +15,11 @@ spriteSourceSize {128,128} textureRect - {{1041,1301},{128,128}} + {{391,423},{128,128}} textureRotated - SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-1.png + k1_ATTACK0_0_Attack_Normal_0-1.png aliases @@ -30,11 +30,11 @@ spriteSourceSize {128,128} textureRect - {{1041,1431},{128,128}} + {{391,553},{128,128}} textureRotated - SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-2.png + k1_ATTACK0_0_Attack_Normal_0-2.png aliases @@ -45,11 +45,11 @@ spriteSourceSize {128,128} textureRect - {{1041,1561},{128,128}} + {{391,683},{128,128}} textureRotated - SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-3.png + k1_ATTACK0_0_Attack_Normal_0-3.png aliases @@ -60,11 +60,11 @@ spriteSourceSize {128,128} textureRect - {{1041,1691},{128,128}} + {{391,813},{128,128}} textureRotated - SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-4.png + k1_ATTACK0_0_Attack_Normal_0-4.png aliases @@ -75,11 +75,11 @@ spriteSourceSize {128,128} textureRect - {{1041,1821},{128,128}} + {{391,943},{128,128}} textureRotated - SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-5.png + k1_ATTACK0_0_Attack_Normal_0-5.png aliases @@ -90,11 +90,11 @@ spriteSourceSize {128,128} textureRect - {{1171,1},{128,128}} + {{391,1073},{128,128}} textureRotated - SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-6.png + k1_ATTACK0_0_Attack_Normal_0-6.png aliases @@ -105,11 +105,11 @@ spriteSourceSize {128,128} textureRect - {{1171,131},{128,128}} + {{391,1203},{128,128}} textureRotated - SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-7.png + k1_ATTACK0_0_Attack_Normal_0-7.png aliases @@ -120,11 +120,11 @@ spriteSourceSize {128,128} textureRect - {{1171,261},{128,128}} + {{391,1333},{128,128}} textureRotated - SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-8.png + k1_ATTACK4_1_Skill_Normal_0-0.png aliases @@ -135,11 +135,11 @@ spriteSourceSize {128,128} textureRect - {{1171,391},{128,128}} + {{391,423},{128,128}} textureRotated - SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-9.png + k1_ATTACK4_1_Skill_Normal_0-1.png aliases @@ -150,2036 +150,11 @@ spriteSourceSize {128,128} textureRect - {{1171,521},{128,128}} + {{391,1463},{128,128}} textureRotated - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1301},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,651},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1821},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1301},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,781},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,911},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1041},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1171},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1301},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1431},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1561},{128,128}} - textureRotated - - - SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1171,1691},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,131},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1301},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1431},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1561},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1691},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1821},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,261},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,391},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,521},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,651},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,781},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,911},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1041},{128,128}} - textureRotated - - - SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1301,1171},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,131},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,131},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1301},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1431},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,261},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,391},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,521},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,651},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,781},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,911},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1041},{128,128}} - textureRotated - - - SPUM_20260321091327157_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1171},{128,128}} - textureRotated - - - SPUM_20260321091327157_MOVE0_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1561},{128,128}} - textureRotated - - - SPUM_20260321091327157_MOVE0_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1691},{128,128}} - textureRotated - - - SPUM_20260321091327157_MOVE0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1431,1821},{128,128}} - textureRotated - - - SPUM_20260321091327157_MOVE0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1},{128,128}} - textureRotated - - - SPUM_20260321091327157_MOVE0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,131},{128,128}} - textureRotated - - - SPUM_20260321091327157_MOVE0_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,261},{128,128}} - textureRotated - - - SPUM_20260321091327157_MOVE0_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,391},{128,128}} - textureRotated - - - SPUM_20260321091327157_MOVE0_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,521},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,651},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,781},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,911},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1041},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1171},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1301},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1431},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1561},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - SPUM_20260321091327157_OTHER2_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1561,1691},{128,128}} - textureRotated - - - k1_ATTACK2_0_Attack_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1},{128,128}} - textureRotated - - - k1_ATTACK2_0_Attack_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,131},{128,128}} - textureRotated - - - k1_ATTACK2_0_Attack_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,261},{128,128}} - textureRotated - - - k1_ATTACK2_0_Attack_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,391},{128,128}} - textureRotated - - - k1_ATTACK2_0_Attack_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,521},{128,128}} - textureRotated - - - k1_ATTACK2_0_Attack_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,651},{128,128}} - textureRotated - - - k1_ATTACK2_0_Attack_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,781},{128,128}} - textureRotated - - - k1_ATTACK2_0_Attack_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,911},{128,128}} - textureRotated - - - k1_ATTACK2_0_Attack_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1041},{128,128}} - textureRotated - - - k1_ATTACK2_0_Attack_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1171},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1301},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1431},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,651},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1301},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1561},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1691},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1821},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,131},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,261},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,391},{128,128}} - textureRotated - - - k1_ATTACK7_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,521},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,911},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,131},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,261},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,391},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,521},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,651},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,781},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1041},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1171},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1301},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1431},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1561},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1691},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1821},{128,128}} - textureRotated - - - k1_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,911},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1041},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1171},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1301},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1431},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1561},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1691},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1821},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - k1_DEATH0_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,131},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,131},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1301},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1431},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,261},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,391},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,521},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,651},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,781},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,911},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1041},{128,128}} - textureRotated - - - k1_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1171},{128,128}} - textureRotated - - - k1_MOVE0_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1561},{128,128}} - textureRotated - - - k1_MOVE0_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1691},{128,128}} - textureRotated - - - k1_MOVE0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1821},{128,128}} - textureRotated - - - k1_MOVE0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1},{128,128}} - textureRotated - - - k1_MOVE0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,131},{128,128}} - textureRotated - - - k1_MOVE0_0_move_0-5.png + k1_ATTACK4_1_Skill_Normal_0-2.png aliases @@ -2194,7 +169,7 @@ textureRotated - k1_MOVE0_0_move_0-6.png + k1_ATTACK4_1_Skill_Normal_0-3.png aliases @@ -2209,7 +184,7 @@ textureRotated - k1_MOVE0_0_move_0-7.png + k1_ATTACK4_1_Skill_Normal_0-4.png aliases @@ -2224,7 +199,7 @@ textureRotated - k2_ATTACK3_ShotSwordAttack_1_0-0.png + k1_ATTACK4_1_Skill_Normal_0-5.png aliases @@ -2239,7 +214,7 @@ textureRotated - k2_ATTACK3_ShotSwordAttack_1_0-1.png + k1_ATTACK4_1_Skill_Normal_0-6.png aliases @@ -2254,7 +229,7 @@ textureRotated - k2_ATTACK3_ShotSwordAttack_1_0-2.png + k1_ATTACK4_1_Skill_Normal_0-7.png aliases @@ -2269,7 +244,7 @@ textureRotated - k2_ATTACK3_ShotSwordAttack_1_0-3.png + k1_ATTACK4_1_Skill_Normal_0-8.png aliases @@ -2284,7 +259,7 @@ textureRotated - k2_ATTACK3_ShotSwordAttack_1_0-4.png + k1_IDLE0_0_idle_0-0.png aliases @@ -2299,7 +274,22 @@ textureRotated - k2_ATTACK3_ShotSwordAttack_1_0-5.png + k1_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1171},{128,128}} + textureRotated + + + k1_IDLE0_0_idle_0-2.png aliases @@ -2314,7 +304,7 @@ textureRotated - k2_ATTACK3_ShotSwordAttack_1_0-6.png + k1_IDLE0_0_idle_0-3.png aliases @@ -2329,7 +319,7 @@ textureRotated - k2_ATTACK3_ShotSwordAttack_1_0-7.png + k1_IDLE0_0_idle_0-4.png aliases @@ -2344,97 +334,7 @@ textureRotated - k2_ATTACK3_ShotSwordAttack_1_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1691},{128,128}} - textureRotated - - - k2_ATTACK3_ShotSwordAttack_1_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1821},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,131},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1301},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-2.png + k1_IDLE0_0_idle_0-5.png aliases @@ -2449,292 +349,7 @@ textureRotated - k2_ATTACK7_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,391},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,521},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,651},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,781},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,911},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1041},{128,128}} - textureRotated - - - k2_ATTACK7_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1171},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1431},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1561},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,781},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,911},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1041},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1171},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1301},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1431},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1691},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1821},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,131},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-6.png + k1_IDLE0_0_idle_0-6.png aliases @@ -2749,217 +364,7 @@ textureRotated - k2_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,391},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,521},{128,128}} - textureRotated - - - k2_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,651},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1561},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1691},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1821},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,131},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-5.png + k1_IDLE0_0_idle_0-7.png aliases @@ -2974,247 +379,7 @@ textureRotated - k2_DEATH0_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,391},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,521},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - k2_DEATH0_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,781},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,781},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,131},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,911},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1041},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1171},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1301},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1431},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1561},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1691},{128,128}} - textureRotated - - - k2_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1821},{128,128}} - textureRotated - - - k2_MOVE0_0_move_0-0.png + k1_IDLE0_0_idle_0-8.png aliases @@ -3229,7 +394,157 @@ textureRotated - k2_MOVE0_0_move_0-1.png + k1_MOVE0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,261},{128,128}} + textureRotated + + + k1_MOVE0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,261},{128,128}} + textureRotated + + + k1_MOVE0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,261},{128,128}} + textureRotated + + + k1_MOVE0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,261},{128,128}} + textureRotated + + + k1_MOVE0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,261},{128,128}} + textureRotated + + + k1_MOVE0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,261},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,391},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,521},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,391},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,391},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-12.png aliases @@ -3244,7 +559,382 @@ textureRotated - k2_MOVE0_0_move_0-2.png + k1_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,651},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,781},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,911},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1041},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1171},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1301},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1431},{128,128}} + textureRotated + + + k1_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1561},{128,128}} + textureRotated + + + k2_ATTACK0_0_Attack_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,391},{128,128}} + textureRotated + + + k2_ATTACK0_0_Attack_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,391},{128,128}} + textureRotated + + + k2_ATTACK0_0_Attack_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,391},{128,128}} + textureRotated + + + k2_ATTACK0_0_Attack_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,391},{128,128}} + textureRotated + + + k2_ATTACK0_0_Attack_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,391},{128,128}} + textureRotated + + + k2_ATTACK0_0_Attack_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,391},{128,128}} + textureRotated + + + k2_ATTACK0_0_Attack_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,521},{128,128}} + textureRotated + + + k2_ATTACK0_0_Attack_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,651},{128,128}} + textureRotated + + + k2_ATTACK4_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,391},{128,128}} + textureRotated + + + k2_ATTACK4_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,781},{128,128}} + textureRotated + + + k2_ATTACK4_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,911},{128,128}} + textureRotated + + + k2_ATTACK4_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1041},{128,128}} + textureRotated + + + k2_ATTACK4_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1171},{128,128}} + textureRotated + + + k2_ATTACK4_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1301},{128,128}} + textureRotated + + + k2_ATTACK4_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1431},{128,128}} + textureRotated + + + k2_ATTACK4_1_Skill_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1561},{128,128}} + textureRotated + + + k2_ATTACK4_1_Skill_Normal_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,521},{128,128}} + textureRotated + + + k2_IDLE0_0_idle_0-0.png aliases @@ -3259,6 +949,171 @@ textureRotated + k2_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,521},{128,128}} + textureRotated + + + k2_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,521},{128,128}} + textureRotated + + + k2_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,521},{128,128}} + textureRotated + + + k2_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,521},{128,128}} + textureRotated + + + k2_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,521},{128,128}} + textureRotated + + + k2_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,521},{128,128}} + textureRotated + + + k2_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,521},{128,128}} + textureRotated + + + k2_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,651},{128,128}} + textureRotated + + + k2_MOVE0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,781},{128,128}} + textureRotated + + + k2_MOVE0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,911},{128,128}} + textureRotated + + + k2_MOVE0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1041},{128,128}} + textureRotated + + k2_MOVE0_0_move_0-3.png aliases @@ -3270,7 +1125,7 @@ spriteSourceSize {128,128} textureRect - {{1041,651},{128,128}} + {{911,1171},{128,128}} textureRotated @@ -3285,7 +1140,7 @@ spriteSourceSize {128,128} textureRect - {{1041,781},{128,128}} + {{911,1301},{128,128}} textureRotated @@ -3300,11 +1155,41 @@ spriteSourceSize {128,128} textureRect - {{1041,911},{128,128}} + {{911,1431},{128,128}} textureRotated - k2_MOVE0_0_move_0-6.png + k2_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1561},{128,128}} + textureRotated + + + k2_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,651},{128,128}} + textureRotated + + + k2_OTHER2_1_Skill_Magic_0-10.png aliases @@ -3319,7 +1204,7 @@ textureRotated - k2_MOVE0_0_move_0-7.png + k2_OTHER2_1_Skill_Magic_0-11.png aliases @@ -3334,6 +1219,1566 @@ textureRotated + k2_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1301},{128,128}} + textureRotated + + + k2_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,651},{128,128}} + textureRotated + + + k2_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,651},{128,128}} + textureRotated + + + k2_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,651},{128,128}} + textureRotated + + + k2_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,651},{128,128}} + textureRotated + + + k2_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,651},{128,128}} + textureRotated + + + k2_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,651},{128,128}} + textureRotated + + + k2_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,781},{128,128}} + textureRotated + + + k2_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,911},{128,128}} + textureRotated + + + k3_ATTACK0_0_Attack_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1431},{128,128}} + textureRotated + + + k3_ATTACK0_0_Attack_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1561},{128,128}} + textureRotated + + + k3_ATTACK0_0_Attack_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,781},{128,128}} + textureRotated + + + k3_ATTACK0_0_Attack_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,781},{128,128}} + textureRotated + + + k3_ATTACK0_0_Attack_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,781},{128,128}} + textureRotated + + + k3_ATTACK0_0_Attack_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,781},{128,128}} + textureRotated + + + k3_ATTACK0_0_Attack_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,781},{128,128}} + textureRotated + + + k3_ATTACK0_0_Attack_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,781},{128,128}} + textureRotated + + + k3_ATTACK4_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1431},{128,128}} + textureRotated + + + k3_ATTACK4_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,911},{128,128}} + textureRotated + + + k3_ATTACK4_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1041},{128,128}} + textureRotated + + + k3_ATTACK4_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1171},{128,128}} + textureRotated + + + k3_ATTACK4_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1301},{128,128}} + textureRotated + + + k3_ATTACK4_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1431},{128,128}} + textureRotated + + + k3_ATTACK4_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1561},{128,128}} + textureRotated + + + k3_ATTACK4_1_Skill_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,911},{128,128}} + textureRotated + + + k3_ATTACK4_1_Skill_Normal_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,911},{128,128}} + textureRotated + + + k3_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,911},{128,128}} + textureRotated + + + k3_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,911},{128,128}} + textureRotated + + + k3_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,911},{128,128}} + textureRotated + + + k3_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,911},{128,128}} + textureRotated + + + k3_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1041},{128,128}} + textureRotated + + + k3_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1171},{128,128}} + textureRotated + + + k3_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1301},{128,128}} + textureRotated + + + k3_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1431},{128,128}} + textureRotated + + + k3_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1561},{128,128}} + textureRotated + + + k3_MOVE0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1041},{128,128}} + textureRotated + + + k3_MOVE0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1041},{128,128}} + textureRotated + + + k3_MOVE0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1041},{128,128}} + textureRotated + + + k3_MOVE0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,1041},{128,128}} + textureRotated + + + k3_MOVE0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1171},{128,128}} + textureRotated + + + k3_MOVE0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1301},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1431},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1431},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,1301},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1431},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1561},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1561},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1171},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1171},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,1171},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1301},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1431},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,1561},{128,128}} + textureRotated + + + k3_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,1301},{128,128}} + textureRotated + + + k4_ATTACK0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,1},{160,128}} + textureRotated + + + k4_ATTACK0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,163},{160,128}} + textureRotated + + + k4_ATTACK0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,325},{160,128}} + textureRotated + + + k4_ATTACK0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,487},{160,128}} + textureRotated + + + k4_ATTACK0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,649},{160,128}} + textureRotated + + + k4_ATTACK0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,811},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,973},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,1135},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{131,973},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{131,1135},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{131,1297},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{131,1459},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,1297},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,1459},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{131,1},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{131,163},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{131,325},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{131,487},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{131,649},{160,128}} + textureRotated + + + k4_ATTACK1_AxeAttack_1_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{131,811},{160,128}} + textureRotated + + + k4_ATTACK3_ShotSwordAttack_1_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{261,1},{160,128}} + textureRotated + + + k4_ATTACK3_ShotSwordAttack_1_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{423,1},{160,128}} + textureRotated + + + k4_ATTACK3_ShotSwordAttack_1_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{585,1},{160,128}} + textureRotated + + + k4_ATTACK3_ShotSwordAttack_1_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{747,1},{160,128}} + textureRotated + + + k4_ATTACK3_ShotSwordAttack_1_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{909,1},{160,128}} + textureRotated + + + k4_ATTACK3_ShotSwordAttack_1_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1071,1},{160,128}} + textureRotated + + + k4_ATTACK3_ShotSwordAttack_1_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1233,1},{160,128}} + textureRotated + + + k4_ATTACK3_ShotSwordAttack_1_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1395,1},{160,128}} + textureRotated + + + k4_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1557,1},{160,128}} + textureRotated + + + k4_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1557,1},{160,128}} + textureRotated + + + k4_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1719,1},{160,128}} + textureRotated + + + k4_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{261,131},{160,128}} + textureRotated + + + k4_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{261,293},{160,128}} + textureRotated + + + k4_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{261,455},{160,128}} + textureRotated + + + k4_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{261,617},{160,128}} + textureRotated + + + k4_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{261,779},{160,128}} + textureRotated + + + k4_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{261,941},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{261,1103},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{261,1265},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1525,131},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1687,131},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{391,261},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{261,1427},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{391,131},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{553,131},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{715,131},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{877,131},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1039,131},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1201,131},{160,128}} + textureRotated + + + k4_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1363,131},{160,128}} + textureRotated + + metadata @@ -3344,13 +2789,13 @@ premultiplyAlpha realTextureFileName - k1k2.png + k1234.png size - {1690,1950} + {1950,1690} smartupdate - $TexturePacker:SmartUpdate:d3b03ffe1d0222286c742f3dd32b2e31:27532d2474f56c813bbf8642c1108fed:d38226ef0426021710193012a9205458$ + $TexturePacker:SmartUpdate:7ca28c2b09ea7f9425d8b374d75b97c4:2e69e8719f67e44da6d15a607874e4f2:80eeb945d021dc674a58f510ba9d22d2$ textureFileName - k1k2.png + k1234.png diff --git a/assets/resources/game/heros/hero/k1k2.plist.meta b/assets/resources/game/heros/hero/k1234.plist.meta similarity index 62% rename from assets/resources/game/heros/hero/k1k2.plist.meta rename to assets/resources/game/heros/hero/k1234.plist.meta index de9e7b91..91e97d46 100644 --- a/assets/resources/game/heros/hero/k1k2.plist.meta +++ b/assets/resources/game/heros/hero/k1234.plist.meta @@ -2,23 +2,23 @@ "ver": "1.0.8", "importer": "sprite-atlas", "imported": true, - "uuid": "91033056-eac3-4ad0-b174-e072da964784", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "files": [ ".json" ], "subMetas": { - "19108": { + "13984": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@19108", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@13984", "displayName": "", - "id": "19108", - "name": "k2_IDLE0_0_idle_0-4", + "id": "13984", + "name": "k3_ATTACK4_1_Skill_Normal_0-3", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 911, + "trimX": 1171, "trimY": 1171, "width": 128, "height": 128, @@ -42,8 +42,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -53,19 +53,19 @@ ], "subMetas": {} }, - "23244": { + "18723": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@23244", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@18723", "displayName": "", - "id": "23244", - "name": "k1_ATTACK7_1_Skill_Normal_0-8", + "id": "18723", + "name": "k3_IDLE0_0_idle_0-0", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 131, - "trimY": 391, + "trimX": 1561, + "trimY": 911, "width": 128, "height": 128, "rawWidth": 128, @@ -88,8 +88,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -99,22 +99,68 @@ ], "subMetas": {} }, - "30321": { + "19108": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@30321", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@19108", "displayName": "", - "id": "30321", - "name": "k1_DEATH0_0_Die_0-14", + "id": "19108", + "name": "k2_IDLE0_0_idle_0-4", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, + "trimX": 1431, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "29264": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@29264", + "displayName": "", + "id": "29264", + "name": "k4_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1557, "trimY": 1, - "width": 128, + "width": 160, "height": 128, - "rawWidth": 128, + "rawWidth": 160, "rawHeight": 128, "borderTop": 0, "borderBottom": 0, @@ -134,54 +180,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "33937": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@33937", - "displayName": "", - "id": "33937", - "name": "k1_ATTACK7_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -193,7 +193,7 @@ }, "37246": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@37246", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@37246", "displayName": "", "id": "37246", "name": "k2_MOVE0_0_move_0-0", @@ -202,8 +202,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1041, - "trimY": 261, + "trimX": 911, + "trimY": 781, "width": 128, "height": 128, "rawWidth": 128, @@ -226,8 +226,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -237,156 +237,156 @@ ], "subMetas": {} }, - "47865": { + "46223": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@47865", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@46223", "displayName": "", - "id": "47865", - "name": "k1_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "49566": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@49566", - "displayName": "", - "id": "49566", - "name": "k1_DEATH0_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60081": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@60081", - "displayName": "", - "id": "60081", - "name": "k1_ATTACK7_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "61137": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@61137", - "displayName": "", - "id": "61137", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-1", + "id": "46223", + "name": "k2_ATTACK0_0_Attack_Normal_0-0", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 1171, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "48618": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@48618", + "displayName": "", + "id": "48618", + "name": "k4_ATTACK3_ShotSwordAttack_1_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1071, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "61386": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@61386", + "displayName": "", + "id": "61386", + "name": "k2_ATTACK0_0_Attack_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "71227": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@71227", + "displayName": "", + "id": "71227", + "name": "k2_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1821, "trimY": 651, "width": 128, "height": 128, @@ -410,8 +410,100 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "73751": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@73751", + "displayName": "", + "id": "73751", + "name": "k4_ATTACK1_AxeAttack_1_0-9", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 811, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "77321": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@77321", + "displayName": "", + "id": "77321", + "name": "k1_ATTACK0_0_Attack_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 683, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -423,7 +515,7 @@ }, "86602": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@86602", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@86602", "displayName": "", "id": "86602", "name": "k2_IDLE0_0_idle_0-7", @@ -432,8 +524,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 911, - "trimY": 1561, + "trimX": 1821, + "trimY": 521, "width": 128, "height": 128, "rawWidth": 128, @@ -456,8 +548,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -469,16 +561,614 @@ }, "87469": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@87469", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@87469", "displayName": "", "id": "87469", "name": "k1_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "64dcd": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@64dcd", + "displayName": "", + "id": "64dcd", + "name": "k1_ATTACK0_0_Attack_Normal_0-0", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 391, + "trimY": 423, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e76cf": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@e76cf", + "displayName": "", + "id": "e76cf", + "name": "k1_ATTACK0_0_Attack_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 553, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "214ef": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@214ef", + "displayName": "", + "id": "214ef", + "name": "k1_ATTACK0_0_Attack_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 813, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "47f33": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@47f33", + "displayName": "", + "id": "47f33", + "name": "k1_ATTACK0_0_Attack_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 943, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "35fdc": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@35fdc", + "displayName": "", + "id": "35fdc", + "name": "k1_ATTACK0_0_Attack_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1073, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "166d0": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@166d0", + "displayName": "", + "id": "166d0", + "name": "k1_ATTACK0_0_Attack_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1203, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "06ced": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@06ced", + "displayName": "", + "id": "06ced", + "name": "k1_ATTACK0_0_Attack_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1333, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "11d75": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@11d75", + "displayName": "", + "id": "11d75", + "name": "k1_ATTACK4_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 423, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "aa9f3": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@aa9f3", + "displayName": "", + "id": "aa9f3", + "name": "k1_ATTACK4_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1463, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6f06e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@6f06e", + "displayName": "", + "id": "6f06e", + "name": "k1_ATTACK4_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "70a16": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@70a16", + "displayName": "", + "id": "70a16", + "name": "k1_ATTACK4_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "71f82": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@71f82", + "displayName": "", + "id": "71f82", + "name": "k1_ATTACK4_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ffb8e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@ffb8e", + "displayName": "", + "id": "ffb8e", + "name": "k1_ATTACK4_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, "trimY": 651, "width": 128, "height": 128, @@ -502,8 +1192,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -513,12 +1203,12 @@ ], "subMetas": {} }, - "95014": { + "44b4a": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@95014", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@44b4a", "displayName": "", - "id": "95014", - "name": "k2_ATTACK3_ShotSwordAttack_1_0-1", + "id": "44b4a", + "name": "k1_ATTACK4_1_Skill_Normal_0-6", "userData": { "trimThreshold": 1, "rotated": false, @@ -548,8 +1238,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -559,754 +1249,18 @@ ], "subMetas": {} }, - "96301": { + "18c19": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@96301", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@18c19", "displayName": "", - "id": "96301", - "name": "k1_DAMAGED0_1_Skill_Magic_0-10", + "id": "18c19", + "name": "k1_ATTACK4_1_Skill_Normal_0-7", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 261, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "98515": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@98515", - "displayName": "", - "id": "98515", - "name": "k1_DEATH0_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2f9eb": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@2f9eb", - "displayName": "", - "id": "2f9eb", - "name": "SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e65f0": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e65f0", - "displayName": "", - "id": "e65f0", - "name": "SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb423": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@eb423", - "displayName": "", - "id": "eb423", - "name": "SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "44da3": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@44da3", - "displayName": "", - "id": "44da3", - "name": "SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "55de1": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@55de1", - "displayName": "", - "id": "55de1", - "name": "SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "55f65": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@55f65", - "displayName": "", - "id": "55f65", - "name": "SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e089d": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e089d", - "displayName": "", - "id": "e089d", - "name": "SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3e297": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@3e297", - "displayName": "", - "id": "3e297", - "name": "SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4ec6": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@c4ec6", - "displayName": "", - "id": "c4ec6", - "name": "SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fa9c0": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@fa9c0", - "displayName": "", - "id": "fa9c0", - "name": "SPUM_20260321091327157_ATTACK0_0_Attack_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5ef40": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@5ef40", - "displayName": "", - "id": "5ef40", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d9749": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d9749", - "displayName": "", - "id": "d9749", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fb182": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@fb182", - "displayName": "", - "id": "fb182", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5cd3f": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@5cd3f", - "displayName": "", - "id": "5cd3f", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c5995": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@c5995", - "displayName": "", - "id": "c5995", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, + "trimX": 521, "trimY": 911, "width": 128, "height": 128, @@ -1330,8 +1284,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -1341,18 +1295,18 @@ ], "subMetas": {} }, - "6eb60": { + "416ac": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@6eb60", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@416ac", "displayName": "", - "id": "6eb60", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-4", + "id": "416ac", + "name": "k1_ATTACK4_1_Skill_Normal_0-8", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1171, + "trimX": 521, "trimY": 1041, "width": 128, "height": 128, @@ -1376,4746 +1330,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ad8a0": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@ad8a0", - "displayName": "", - "id": "ad8a0", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2a969": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@2a969", - "displayName": "", - "id": "2a969", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "225b1": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@225b1", - "displayName": "", - "id": "225b1", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd289": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@cd289", - "displayName": "", - "id": "cd289", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cc171": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@cc171", - "displayName": "", - "id": "cc171", - "name": "SPUM_20260321091327157_ATTACK4_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1171, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "35d33": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@35d33", - "displayName": "", - "id": "35d33", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba648": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@ba648", - "displayName": "", - "id": "ba648", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "839d0": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@839d0", - "displayName": "", - "id": "839d0", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "08e55": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@08e55", - "displayName": "", - "id": "08e55", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7a46d": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@7a46d", - "displayName": "", - "id": "7a46d", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0be40": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@0be40", - "displayName": "", - "id": "0be40", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0ac9c": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@0ac9c", - "displayName": "", - "id": "0ac9c", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "362c6": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@362c6", - "displayName": "", - "id": "362c6", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f3569": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@f3569", - "displayName": "", - "id": "f3569", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "09900": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@09900", - "displayName": "", - "id": "09900", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7be8b": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@7be8b", - "displayName": "", - "id": "7be8b", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4e3f4": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@4e3f4", - "displayName": "", - "id": "4e3f4", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "33e78": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@33e78", - "displayName": "", - "id": "33e78", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "87a0e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@87a0e", - "displayName": "", - "id": "87a0e", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4afcb": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@4afcb", - "displayName": "", - "id": "4afcb", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "65bde": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@65bde", - "displayName": "", - "id": "65bde", - "name": "SPUM_20260321091327157_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1301, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5860b": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@5860b", - "displayName": "", - "id": "5860b", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b4fba": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b4fba", - "displayName": "", - "id": "b4fba", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5b5c4": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@5b5c4", - "displayName": "", - "id": "5b5c4", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5b0e5": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@5b0e5", - "displayName": "", - "id": "5b0e5", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4ff83": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@4ff83", - "displayName": "", - "id": "4ff83", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e6852": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e6852", - "displayName": "", - "id": "e6852", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f23ed": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@f23ed", - "displayName": "", - "id": "f23ed", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "83a2d": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@83a2d", - "displayName": "", - "id": "83a2d", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c0e5e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@c0e5e", - "displayName": "", - "id": "c0e5e", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1eb99": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@1eb99", - "displayName": "", - "id": "1eb99", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "026c8": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@026c8", - "displayName": "", - "id": "026c8", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8256e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@8256e", - "displayName": "", - "id": "8256e", - "name": "SPUM_20260321091327157_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "96b3e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@96b3e", - "displayName": "", - "id": "96b3e", - "name": "SPUM_20260321091327157_MOVE0_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5cd45": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@5cd45", - "displayName": "", - "id": "5cd45", - "name": "SPUM_20260321091327157_MOVE0_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "237a8": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@237a8", - "displayName": "", - "id": "237a8", - "name": "SPUM_20260321091327157_MOVE0_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1431, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7206c": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@7206c", - "displayName": "", - "id": "7206c", - "name": "SPUM_20260321091327157_MOVE0_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "075c2": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@075c2", - "displayName": "", - "id": "075c2", - "name": "SPUM_20260321091327157_MOVE0_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6f7b6": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@6f7b6", - "displayName": "", - "id": "6f7b6", - "name": "SPUM_20260321091327157_MOVE0_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e9032": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e9032", - "displayName": "", - "id": "e9032", - "name": "SPUM_20260321091327157_MOVE0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d3629": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d3629", - "displayName": "", - "id": "d3629", - "name": "SPUM_20260321091327157_MOVE0_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f7009": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@f7009", - "displayName": "", - "id": "f7009", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d23b7": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d23b7", - "displayName": "", - "id": "d23b7", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6f0e6": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@6f0e6", - "displayName": "", - "id": "6f0e6", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b4b15": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b4b15", - "displayName": "", - "id": "b4b15", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3a28b": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@3a28b", - "displayName": "", - "id": "3a28b", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e8ed7": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e8ed7", - "displayName": "", - "id": "e8ed7", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2b3ac": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@2b3ac", - "displayName": "", - "id": "2b3ac", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2a13e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@2a13e", - "displayName": "", - "id": "2a13e", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "19bbe": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@19bbe", - "displayName": "", - "id": "19bbe", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a8a01": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@a8a01", - "displayName": "", - "id": "a8a01", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "68b39": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@68b39", - "displayName": "", - "id": "68b39", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2afa7": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@2afa7", - "displayName": "", - "id": "2afa7", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02e6a": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@02e6a", - "displayName": "", - "id": "02e6a", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "53c38": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@53c38", - "displayName": "", - "id": "53c38", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cb977": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@cb977", - "displayName": "", - "id": "cb977", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "09e47": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@09e47", - "displayName": "", - "id": "09e47", - "name": "SPUM_20260321091327157_OTHER2_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1561, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cfbe3": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@cfbe3", - "displayName": "", - "id": "cfbe3", - "name": "k1_ATTACK2_0_Attack_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "94a2d": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@94a2d", - "displayName": "", - "id": "94a2d", - "name": "k1_ATTACK2_0_Attack_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c34a0": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@c34a0", - "displayName": "", - "id": "c34a0", - "name": "k1_ATTACK2_0_Attack_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b035f": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b035f", - "displayName": "", - "id": "b035f", - "name": "k1_ATTACK2_0_Attack_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "31d0b": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@31d0b", - "displayName": "", - "id": "31d0b", - "name": "k1_ATTACK2_0_Attack_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9a144": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@9a144", - "displayName": "", - "id": "9a144", - "name": "k1_ATTACK2_0_Attack_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "faa9a": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@faa9a", - "displayName": "", - "id": "faa9a", - "name": "k1_ATTACK2_0_Attack_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6141b": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@6141b", - "displayName": "", - "id": "6141b", - "name": "k1_ATTACK2_0_Attack_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7b5e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b7b5e", - "displayName": "", - "id": "b7b5e", - "name": "k1_ATTACK2_0_Attack_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3bee5": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@3bee5", - "displayName": "", - "id": "3bee5", - "name": "k1_ATTACK2_0_Attack_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f7a9e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@f7a9e", - "displayName": "", - "id": "f7a9e", - "name": "k1_ATTACK7_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0c921": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@0c921", - "displayName": "", - "id": "0c921", - "name": "k1_ATTACK7_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bc415": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@bc415", - "displayName": "", - "id": "bc415", - "name": "k1_ATTACK7_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "edc2c": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@edc2c", - "displayName": "", - "id": "edc2c", - "name": "k1_ATTACK7_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4c849": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@4c849", - "displayName": "", - "id": "4c849", - "name": "k1_ATTACK7_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b914a": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b914a", - "displayName": "", - "id": "b914a", - "name": "k1_ATTACK7_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "484b9": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@484b9", - "displayName": "", - "id": "484b9", - "name": "k1_ATTACK7_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "59c37": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@59c37", - "displayName": "", - "id": "59c37", - "name": "k1_ATTACK7_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a47ef": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@a47ef", - "displayName": "", - "id": "a47ef", - "name": "k1_ATTACK7_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "05efa": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@05efa", - "displayName": "", - "id": "05efa", - "name": "k1_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ccbe2": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@ccbe2", - "displayName": "", - "id": "ccbe2", - "name": "k1_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c6912": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@c6912", - "displayName": "", - "id": "c6912", - "name": "k1_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3c9f7": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@3c9f7", - "displayName": "", - "id": "3c9f7", - "name": "k1_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "08157": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@08157", - "displayName": "", - "id": "08157", - "name": "k1_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9c5b3": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@9c5b3", - "displayName": "", - "id": "9c5b3", - "name": "k1_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0945e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@0945e", - "displayName": "", - "id": "0945e", - "name": "k1_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9473c": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@9473c", - "displayName": "", - "id": "9473c", - "name": "k1_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e8d6e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e8d6e", - "displayName": "", - "id": "e8d6e", - "name": "k1_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9149f": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@9149f", - "displayName": "", - "id": "9149f", - "name": "k1_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0f935": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@0f935", - "displayName": "", - "id": "0f935", - "name": "k1_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b576d": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b576d", - "displayName": "", - "id": "b576d", - "name": "k1_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "81cdd": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@81cdd", - "displayName": "", - "id": "81cdd", - "name": "k1_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "df118": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@df118", - "displayName": "", - "id": "df118", - "name": "k1_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a43cb": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@a43cb", - "displayName": "", - "id": "a43cb", - "name": "k1_DEATH0_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1be97": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@1be97", - "displayName": "", - "id": "1be97", - "name": "k1_DEATH0_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c0987": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@c0987", - "displayName": "", - "id": "c0987", - "name": "k1_DEATH0_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4e219": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@4e219", - "displayName": "", - "id": "4e219", - "name": "k1_DEATH0_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "db111": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@db111", - "displayName": "", - "id": "db111", - "name": "k1_DEATH0_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "33a52": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@33a52", - "displayName": "", - "id": "33a52", - "name": "k1_DEATH0_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0c36d": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@0c36d", - "displayName": "", - "id": "0c36d", - "name": "k1_DEATH0_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b2bbe": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b2bbe", - "displayName": "", - "id": "b2bbe", - "name": "k1_DEATH0_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "076c0": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@076c0", - "displayName": "", - "id": "076c0", - "name": "k1_DEATH0_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cfced": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@cfced", - "displayName": "", - "id": "cfced", - "name": "k1_DEATH0_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5a002": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@5a002", - "displayName": "", - "id": "5a002", - "name": "k1_DEATH0_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "069dd": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@069dd", - "displayName": "", - "id": "069dd", - "name": "k1_DEATH0_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "09650": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@09650", - "displayName": "", - "id": "09650", - "name": "k1_DEATH0_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6127,7 +1343,7 @@ }, "6ce90": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@6ce90", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@6ce90", "displayName": "", "id": "6ce90", "name": "k1_IDLE0_0_idle_0-0", @@ -6136,8 +1352,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 131, + "trimX": 521, + "trimY": 1171, "width": 128, "height": 128, "rawWidth": 128, @@ -6160,8 +1376,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6173,7 +1389,7 @@ }, "743c0": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@743c0", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@743c0", "displayName": "", "id": "743c0", "name": "k1_IDLE0_0_idle_0-1", @@ -6182,8 +1398,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 131, + "trimX": 521, + "trimY": 1171, "width": 128, "height": 128, "rawWidth": 128, @@ -6206,100 +1422,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7901b": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@7901b", - "displayName": "", - "id": "7901b", - "name": "k1_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d780a": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d780a", - "displayName": "", - "id": "d780a", - "name": "k1_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6311,7 +1435,7 @@ }, "5e149": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@5e149", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@5e149", "displayName": "", "id": "5e149", "name": "k1_IDLE0_0_idle_0-2", @@ -6320,8 +1444,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 261, + "trimX": 521, + "trimY": 1301, "width": 128, "height": 128, "rawWidth": 128, @@ -6344,8 +1468,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6357,7 +1481,7 @@ }, "677d6": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@677d6", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@677d6", "displayName": "", "id": "677d6", "name": "k1_IDLE0_0_idle_0-3", @@ -6366,8 +1490,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 391, + "trimX": 521, + "trimY": 1431, "width": 128, "height": 128, "rawWidth": 128, @@ -6390,8 +1514,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6403,7 +1527,7 @@ }, "1acaa": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@1acaa", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@1acaa", "displayName": "", "id": "1acaa", "name": "k1_IDLE0_0_idle_0-4", @@ -6412,8 +1536,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 521, + "trimX": 521, + "trimY": 1561, "width": 128, "height": 128, "rawWidth": 128, @@ -6436,8 +1560,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6449,7 +1573,7 @@ }, "7aee7": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@7aee7", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@7aee7", "displayName": "", "id": "7aee7", "name": "k1_IDLE0_0_idle_0-6", @@ -6458,8 +1582,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 781, + "trimX": 781, + "trimY": 261, "width": 128, "height": 128, "rawWidth": 128, @@ -6482,8 +1606,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6495,7 +1619,7 @@ }, "7418c": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@7418c", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@7418c", "displayName": "", "id": "7418c", "name": "k1_IDLE0_0_idle_0-7", @@ -6504,8 +1628,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 911, + "trimX": 911, + "trimY": 261, "width": 128, "height": 128, "rawWidth": 128, @@ -6528,8 +1652,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6541,7 +1665,7 @@ }, "6f476": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@6f476", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@6f476", "displayName": "", "id": "6f476", "name": "k1_IDLE0_0_idle_0-8", @@ -6550,8 +1674,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 1041, + "trimX": 1041, + "trimY": 261, "width": 128, "height": 128, "rawWidth": 128, @@ -6574,54 +1698,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "db8aa": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@db8aa", - "displayName": "", - "id": "db8aa", - "name": "k1_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6633,7 +1711,7 @@ }, "e2787": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e2787", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@e2787", "displayName": "", "id": "e2787", "name": "k1_MOVE0_0_move_0-0", @@ -6642,8 +1720,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 1561, + "trimX": 1171, + "trimY": 261, "width": 128, "height": 128, "rawWidth": 128, @@ -6666,8 +1744,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6679,7 +1757,7 @@ }, "bd00d": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@bd00d", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@bd00d", "displayName": "", "id": "bd00d", "name": "k1_MOVE0_0_move_0-1", @@ -6688,8 +1766,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 1691, + "trimX": 1301, + "trimY": 261, "width": 128, "height": 128, "rawWidth": 128, @@ -6712,8 +1790,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6725,7 +1803,7 @@ }, "a722c": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@a722c", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@a722c", "displayName": "", "id": "a722c", "name": "k1_MOVE0_0_move_0-2", @@ -6734,8 +1812,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 1821, + "trimX": 1431, + "trimY": 261, "width": 128, "height": 128, "rawWidth": 128, @@ -6758,8 +1836,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6771,7 +1849,7 @@ }, "73b72": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@73b72", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@73b72", "displayName": "", "id": "73b72", "name": "k1_MOVE0_0_move_0-3", @@ -6780,8 +1858,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 521, - "trimY": 1, + "trimX": 1561, + "trimY": 261, "width": 128, "height": 128, "rawWidth": 128, @@ -6804,8 +1882,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6817,7 +1895,7 @@ }, "4816f": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@4816f", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@4816f", "displayName": "", "id": "4816f", "name": "k1_MOVE0_0_move_0-4", @@ -6826,8 +1904,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 521, - "trimY": 131, + "trimX": 1691, + "trimY": 261, "width": 128, "height": 128, "rawWidth": 128, @@ -6850,8 +1928,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6863,7 +1941,7 @@ }, "56aea": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@56aea", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@56aea", "displayName": "", "id": "56aea", "name": "k1_MOVE0_0_move_0-5", @@ -6872,7 +1950,7 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 521, + "trimX": 1821, "trimY": 261, "width": 128, "height": 128, @@ -6896,8 +1974,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -6907,748 +1985,12 @@ ], "subMetas": {} }, - "b8cd6": { + "497cc": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b8cd6", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@497cc", "displayName": "", - "id": "b8cd6", - "name": "k1_MOVE0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e2957": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e2957", - "displayName": "", - "id": "e2957", - "name": "k1_MOVE0_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d7443": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d7443", - "displayName": "", - "id": "d7443", - "name": "k2_ATTACK3_ShotSwordAttack_1_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4b868": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@4b868", - "displayName": "", - "id": "4b868", - "name": "k2_ATTACK3_ShotSwordAttack_1_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "08eb8": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@08eb8", - "displayName": "", - "id": "08eb8", - "name": "k2_ATTACK3_ShotSwordAttack_1_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3bbee": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@3bbee", - "displayName": "", - "id": "3bbee", - "name": "k2_ATTACK3_ShotSwordAttack_1_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e398b": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e398b", - "displayName": "", - "id": "e398b", - "name": "k2_ATTACK3_ShotSwordAttack_1_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a91c": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@1a91c", - "displayName": "", - "id": "1a91c", - "name": "k2_ATTACK3_ShotSwordAttack_1_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e8b6e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e8b6e", - "displayName": "", - "id": "e8b6e", - "name": "k2_ATTACK3_ShotSwordAttack_1_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "735da": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@735da", - "displayName": "", - "id": "735da", - "name": "k2_ATTACK3_ShotSwordAttack_1_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f8e84": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@f8e84", - "displayName": "", - "id": "f8e84", - "name": "k2_ATTACK3_ShotSwordAttack_1_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "31fdd": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@31fdd", - "displayName": "", - "id": "31fdd", - "name": "k2_ATTACK7_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "761f1": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@761f1", - "displayName": "", - "id": "761f1", - "name": "k2_ATTACK7_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60ce5": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@60ce5", - "displayName": "", - "id": "60ce5", - "name": "k2_ATTACK7_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1e835": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@1e835", - "displayName": "", - "id": "1e835", - "name": "k2_ATTACK7_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ef635": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@ef635", - "displayName": "", - "id": "ef635", - "name": "k2_ATTACK7_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6cf43": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@6cf43", - "displayName": "", - "id": "6cf43", - "name": "k2_ATTACK7_1_Skill_Normal_0-3", + "id": "497cc", + "name": "k1_OTHER2_1_Skill_Magic_0-0", "userData": { "trimThreshold": 1, "rotated": false, @@ -7678,8 +2020,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -7689,12 +2031,12 @@ ], "subMetas": {} }, - "d81d3": { + "459a4": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d81d3", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@459a4", "displayName": "", - "id": "d81d3", - "name": "k2_ATTACK7_1_Skill_Normal_0-4", + "id": "459a4", + "name": "k1_OTHER2_1_Skill_Magic_0-1", "userData": { "trimThreshold": 1, "rotated": false, @@ -7724,8 +2066,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -7735,12 +2077,150 @@ ], "subMetas": {} }, - "afb18": { + "0d329": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@afb18", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@0d329", "displayName": "", - "id": "afb18", - "name": "k2_ATTACK7_1_Skill_Normal_0-5", + "id": "0d329", + "name": "k1_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ac171": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@ac171", + "displayName": "", + "id": "ac171", + "name": "k1_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "adcaf": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@adcaf", + "displayName": "", + "id": "adcaf", + "name": "k1_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e3e5e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@e3e5e", + "displayName": "", + "id": "e3e5e", + "name": "k1_OTHER2_1_Skill_Magic_0-2", "userData": { "trimThreshold": 1, "rotated": false, @@ -7770,8 +2250,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -7781,12 +2261,12 @@ ], "subMetas": {} }, - "0ef7a": { + "5f690": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@0ef7a", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@5f690", "displayName": "", - "id": "0ef7a", - "name": "k2_ATTACK7_1_Skill_Normal_0-6", + "id": "5f690", + "name": "k1_OTHER2_1_Skill_Magic_0-3", "userData": { "trimThreshold": 1, "rotated": false, @@ -7816,8 +2296,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -7827,12 +2307,12 @@ ], "subMetas": {} }, - "4594b": { + "3d137": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@4594b", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@3d137", "displayName": "", - "id": "4594b", - "name": "k2_ATTACK7_1_Skill_Normal_0-7", + "id": "3d137", + "name": "k1_OTHER2_1_Skill_Magic_0-4", "userData": { "trimThreshold": 1, "rotated": false, @@ -7862,8 +2342,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -7873,12 +2353,12 @@ ], "subMetas": {} }, - "abf6f": { + "f9482": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@abf6f", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@f9482", "displayName": "", - "id": "abf6f", - "name": "k2_ATTACK7_1_Skill_Normal_0-8", + "id": "f9482", + "name": "k1_OTHER2_1_Skill_Magic_0-5", "userData": { "trimThreshold": 1, "rotated": false, @@ -7908,8 +2388,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -7919,12 +2399,12 @@ ], "subMetas": {} }, - "4735a": { + "f85fa": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@4735a", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@f85fa", "displayName": "", - "id": "4735a", - "name": "k2_ATTACK7_1_Skill_Normal_0-9", + "id": "f85fa", + "name": "k1_OTHER2_1_Skill_Magic_0-6", "userData": { "trimThreshold": 1, "rotated": false, @@ -7954,8 +2434,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -7965,12 +2445,58 @@ ], "subMetas": {} }, - "872ef": { + "8384d": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@872ef", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@8384d", "displayName": "", - "id": "872ef", - "name": "k2_DAMAGED0_1_Skill_Magic_0-0", + "id": "8384d", + "name": "k1_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c375c": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@c375c", + "displayName": "", + "id": "c375c", + "name": "k1_OTHER2_1_Skill_Magic_0-8", "userData": { "trimThreshold": 1, "rotated": false, @@ -8000,8 +2526,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -8011,12 +2537,12 @@ ], "subMetas": {} }, - "9ef99": { + "3015a": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@9ef99", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@3015a", "displayName": "", - "id": "9ef99", - "name": "k2_DAMAGED0_1_Skill_Magic_0-1", + "id": "3015a", + "name": "k1_OTHER2_1_Skill_Magic_0-9", "userData": { "trimThreshold": 1, "rotated": false, @@ -8046,8 +2572,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -8057,12 +2583,334 @@ ], "subMetas": {} }, - "d0661": { + "8f590": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d0661", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@8f590", "displayName": "", - "id": "d0661", - "name": "k2_DAMAGED0_1_Skill_Magic_0-10", + "id": "8f590", + "name": "k2_ATTACK0_0_Attack_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b45f0": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@b45f0", + "displayName": "", + "id": "b45f0", + "name": "k2_ATTACK0_0_Attack_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9b66b": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@9b66b", + "displayName": "", + "id": "9b66b", + "name": "k2_ATTACK0_0_Attack_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8c18e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@8c18e", + "displayName": "", + "id": "8c18e", + "name": "k2_ATTACK0_0_Attack_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1821, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a2467": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@a2467", + "displayName": "", + "id": "a2467", + "name": "k2_ATTACK0_0_Attack_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "08fa2": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@08fa2", + "displayName": "", + "id": "08fa2", + "name": "k2_ATTACK0_0_Attack_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fafe9": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@fafe9", + "displayName": "", + "id": "fafe9", + "name": "k2_ATTACK4_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ef00e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@ef00e", + "displayName": "", + "id": "ef00e", + "name": "k2_ATTACK4_1_Skill_Normal_0-1", "userData": { "trimThreshold": 1, "rotated": false, @@ -8092,8 +2940,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -8103,12 +2951,12 @@ ], "subMetas": {} }, - "6153a": { + "4ca72": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@6153a", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@4ca72", "displayName": "", - "id": "6153a", - "name": "k2_DAMAGED0_1_Skill_Magic_0-11", + "id": "4ca72", + "name": "k2_ATTACK4_1_Skill_Normal_0-2", "userData": { "trimThreshold": 1, "rotated": false, @@ -8138,8 +2986,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -8149,12 +2997,12 @@ ], "subMetas": {} }, - "8288e": { + "59a2c": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@8288e", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@59a2c", "displayName": "", - "id": "8288e", - "name": "k2_DAMAGED0_1_Skill_Magic_0-12", + "id": "59a2c", + "name": "k2_ATTACK4_1_Skill_Normal_0-3", "userData": { "trimThreshold": 1, "rotated": false, @@ -8184,8 +3032,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -8195,12 +3043,12 @@ ], "subMetas": {} }, - "da2a7": { + "fe49f": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@da2a7", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@fe49f", "displayName": "", - "id": "da2a7", - "name": "k2_DAMAGED0_1_Skill_Magic_0-13", + "id": "fe49f", + "name": "k2_ATTACK4_1_Skill_Normal_0-4", "userData": { "trimThreshold": 1, "rotated": false, @@ -8230,8 +3078,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -8241,12 +3089,12 @@ ], "subMetas": {} }, - "d27f0": { + "529ea": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d27f0", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@529ea", "displayName": "", - "id": "d27f0", - "name": "k2_DAMAGED0_1_Skill_Magic_0-14", + "id": "529ea", + "name": "k2_ATTACK4_1_Skill_Normal_0-5", "userData": { "trimThreshold": 1, "rotated": false, @@ -8276,8 +3124,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -8287,12 +3135,12 @@ ], "subMetas": {} }, - "4228e": { + "d0984": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@4228e", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@d0984", "displayName": "", - "id": "4228e", - "name": "k2_DAMAGED0_1_Skill_Magic_0-15", + "id": "d0984", + "name": "k2_ATTACK4_1_Skill_Normal_0-6", "userData": { "trimThreshold": 1, "rotated": false, @@ -8322,8 +3170,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -8333,380 +3181,12 @@ ], "subMetas": {} }, - "8fbda": { + "5eeb7": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@8fbda", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@5eeb7", "displayName": "", - "id": "8fbda", - "name": "k2_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b94d8": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b94d8", - "displayName": "", - "id": "b94d8", - "name": "k2_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "36b5b": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@36b5b", - "displayName": "", - "id": "36b5b", - "name": "k2_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "19d8d": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@19d8d", - "displayName": "", - "id": "19d8d", - "name": "k2_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "350b6": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@350b6", - "displayName": "", - "id": "350b6", - "name": "k2_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8ebf9": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@8ebf9", - "displayName": "", - "id": "8ebf9", - "name": "k2_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e666a": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e666a", - "displayName": "", - "id": "e666a", - "name": "k2_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a90ab": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@a90ab", - "displayName": "", - "id": "a90ab", - "name": "k2_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "80e09": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@80e09", - "displayName": "", - "id": "80e09", - "name": "k2_DEATH0_0_Die_0-0", + "id": "5eeb7", + "name": "k2_ATTACK4_1_Skill_Normal_0-7", "userData": { "trimThreshold": 1, "rotated": false, @@ -8736,8 +3216,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -8747,564 +3227,12 @@ ], "subMetas": {} }, - "a7544": { + "b4f52": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@a7544", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@b4f52", "displayName": "", - "id": "a7544", - "name": "k2_DEATH0_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba19a": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@ba19a", - "displayName": "", - "id": "ba19a", - "name": "k2_DEATH0_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "29e4e": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@29e4e", - "displayName": "", - "id": "29e4e", - "name": "k2_DEATH0_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0d80c": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@0d80c", - "displayName": "", - "id": "0d80c", - "name": "k2_DEATH0_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b173f": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b173f", - "displayName": "", - "id": "b173f", - "name": "k2_DEATH0_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "68de8": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@68de8", - "displayName": "", - "id": "68de8", - "name": "k2_DEATH0_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "01381": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@01381", - "displayName": "", - "id": "01381", - "name": "k2_DEATH0_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "230d9": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@230d9", - "displayName": "", - "id": "230d9", - "name": "k2_DEATH0_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd356": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@cd356", - "displayName": "", - "id": "cd356", - "name": "k2_DEATH0_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02129": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@02129", - "displayName": "", - "id": "02129", - "name": "k2_DEATH0_0_Die_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07566": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@07566", - "displayName": "", - "id": "07566", - "name": "k2_DEATH0_0_Die_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d4a94": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d4a94", - "displayName": "", - "id": "d4a94", - "name": "k2_DEATH0_0_Die_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b8b82": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@b8b82", - "displayName": "", - "id": "b8b82", - "name": "k2_DEATH0_0_Die_0-7", + "id": "b4f52", + "name": "k2_ATTACK4_1_Skill_Normal_0-8", "userData": { "trimThreshold": 1, "rotated": false, @@ -9334,100 +3262,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2b29b": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@2b29b", - "displayName": "", - "id": "2b29b", - "name": "k2_DEATH0_0_Die_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "91d54": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@91d54", - "displayName": "", - "id": "91d54", - "name": "k2_DEATH0_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -9439,516 +3275,10 @@ }, "beb3a": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@beb3a", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@beb3a", "displayName": "", "id": "beb3a", "name": "k2_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6f3b": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d6f3b", - "displayName": "", - "id": "d6f3b", - "name": "k2_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7ec27": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@7ec27", - "displayName": "", - "id": "7ec27", - "name": "k2_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f4414": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@f4414", - "displayName": "", - "id": "f4414", - "name": "k2_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "da5d4": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@da5d4", - "displayName": "", - "id": "da5d4", - "name": "k2_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a5958": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@a5958", - "displayName": "", - "id": "a5958", - "name": "k2_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6ed69": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@6ed69", - "displayName": "", - "id": "6ed69", - "name": "k2_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "376c0": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@376c0", - "displayName": "", - "id": "376c0", - "name": "k2_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "16bfa": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@16bfa", - "displayName": "", - "id": "16bfa", - "name": "k2_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9fcd0": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@9fcd0", - "displayName": "", - "id": "9fcd0", - "name": "k2_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1821, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d656c": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@d656c", - "displayName": "", - "id": "d656c", - "name": "k2_MOVE0_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1dd4d": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@1dd4d", - "displayName": "", - "id": "1dd4d", - "name": "k2_MOVE0_0_move_0-2", "userData": { "trimThreshold": 1, "rotated": false, @@ -9978,8 +3308,376 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d6f3b": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@d6f3b", + "displayName": "", + "id": "d6f3b", + "name": "k2_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "da5d4": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@da5d4", + "displayName": "", + "id": "da5d4", + "name": "k2_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a5958": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@a5958", + "displayName": "", + "id": "a5958", + "name": "k2_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6ed69": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@6ed69", + "displayName": "", + "id": "6ed69", + "name": "k2_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "376c0": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@376c0", + "displayName": "", + "id": "376c0", + "name": "k2_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "16bfa": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@16bfa", + "displayName": "", + "id": "16bfa", + "name": "k2_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d656c": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@d656c", + "displayName": "", + "id": "d656c", + "name": "k2_MOVE0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1dd4d": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@1dd4d", + "displayName": "", + "id": "1dd4d", + "name": "k2_MOVE0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -9991,10 +3689,194 @@ }, "fab5d": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@fab5d", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@fab5d", "displayName": "", "id": "fab5d", "name": "k2_MOVE0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6d0d8": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@6d0d8", + "displayName": "", + "id": "6d0d8", + "name": "k2_MOVE0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e5572": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@e5572", + "displayName": "", + "id": "e5572", + "name": "k2_MOVE0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "60faa": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@60faa", + "displayName": "", + "id": "60faa", + "name": "k2_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "304b1": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@304b1", + "displayName": "", + "id": "304b1", + "name": "k2_OTHER2_1_Skill_Magic_0-1", "userData": { "trimThreshold": 1, "rotated": false, @@ -10024,8 +3906,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -10035,104 +3917,12 @@ ], "subMetas": {} }, - "6d0d8": { + "c7679": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@6d0d8", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@c7679", "displayName": "", - "id": "6d0d8", - "name": "k2_MOVE0_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e5572": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@e5572", - "displayName": "", - "id": "e5572", - "name": "k2_MOVE0_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ce233": { - "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@ce233", - "displayName": "", - "id": "ce233", - "name": "k2_MOVE0_0_move_0-6", + "id": "c7679", + "name": "k2_OTHER2_1_Skill_Magic_0-10", "userData": { "trimThreshold": 1, "rotated": false, @@ -10162,8 +3952,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -10173,12 +3963,12 @@ ], "subMetas": {} }, - "bfad7": { + "07bc0": { "importer": "sprite-frame", - "uuid": "91033056-eac3-4ad0-b174-e072da964784@bfad7", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@07bc0", "displayName": "", - "id": "bfad7", - "name": "k2_MOVE0_0_move_0-7", + "id": "07bc0", + "name": "k2_OTHER2_1_Skill_Magic_0-11", "userData": { "trimThreshold": 1, "rotated": false, @@ -10208,8 +3998,4516 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "atlasUuid": "91033056-eac3-4ad0-b174-e072da964784", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ca957": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@ca957", + "displayName": "", + "id": "ca957", + "name": "k2_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f66ef": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@f66ef", + "displayName": "", + "id": "f66ef", + "name": "k2_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ce604": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@ce604", + "displayName": "", + "id": "ce604", + "name": "k2_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2f943": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@2f943", + "displayName": "", + "id": "2f943", + "name": "k2_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f1f12": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@f1f12", + "displayName": "", + "id": "f1f12", + "name": "k2_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e5f96": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@e5f96", + "displayName": "", + "id": "e5f96", + "name": "k2_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3bf12": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@3bf12", + "displayName": "", + "id": "3bf12", + "name": "k2_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8048b": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@8048b", + "displayName": "", + "id": "8048b", + "name": "k2_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5268d": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@5268d", + "displayName": "", + "id": "5268d", + "name": "k3_ATTACK0_0_Attack_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a5cb0": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@a5cb0", + "displayName": "", + "id": "a5cb0", + "name": "k3_ATTACK0_0_Attack_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3320b": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@3320b", + "displayName": "", + "id": "3320b", + "name": "k3_ATTACK0_0_Attack_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0085f": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@0085f", + "displayName": "", + "id": "0085f", + "name": "k3_ATTACK0_0_Attack_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f7202": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@f7202", + "displayName": "", + "id": "f7202", + "name": "k3_ATTACK0_0_Attack_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a0a46": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@a0a46", + "displayName": "", + "id": "a0a46", + "name": "k3_ATTACK0_0_Attack_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6c356": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@6c356", + "displayName": "", + "id": "6c356", + "name": "k3_ATTACK0_0_Attack_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b94b1": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@b94b1", + "displayName": "", + "id": "b94b1", + "name": "k3_ATTACK0_0_Attack_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1821, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a867e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@a867e", + "displayName": "", + "id": "a867e", + "name": "k3_ATTACK4_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "780b1": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@780b1", + "displayName": "", + "id": "780b1", + "name": "k3_ATTACK4_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b5a20": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@b5a20", + "displayName": "", + "id": "b5a20", + "name": "k3_ATTACK4_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0013b": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@0013b", + "displayName": "", + "id": "0013b", + "name": "k3_ATTACK4_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0b50e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@0b50e", + "displayName": "", + "id": "0b50e", + "name": "k3_ATTACK4_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "be384": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@be384", + "displayName": "", + "id": "be384", + "name": "k3_ATTACK4_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d53c0": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@d53c0", + "displayName": "", + "id": "d53c0", + "name": "k3_ATTACK4_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b67b9": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@b67b9", + "displayName": "", + "id": "b67b9", + "name": "k3_ATTACK4_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "10dd0": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@10dd0", + "displayName": "", + "id": "10dd0", + "name": "k3_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "274f3": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@274f3", + "displayName": "", + "id": "274f3", + "name": "k3_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6c420": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@6c420", + "displayName": "", + "id": "6c420", + "name": "k3_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1821, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "80dca": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@80dca", + "displayName": "", + "id": "80dca", + "name": "k3_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9aba6": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@9aba6", + "displayName": "", + "id": "9aba6", + "name": "k3_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a9095": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@a9095", + "displayName": "", + "id": "a9095", + "name": "k3_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "da5f7": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@da5f7", + "displayName": "", + "id": "da5f7", + "name": "k3_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3a5ee": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@3a5ee", + "displayName": "", + "id": "3a5ee", + "name": "k3_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a30e2": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@a30e2", + "displayName": "", + "id": "a30e2", + "name": "k3_MOVE0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "98dec": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@98dec", + "displayName": "", + "id": "98dec", + "name": "k3_MOVE0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "251de": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@251de", + "displayName": "", + "id": "251de", + "name": "k3_MOVE0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7e117": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@7e117", + "displayName": "", + "id": "7e117", + "name": "k3_MOVE0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1821, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6ab61": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@6ab61", + "displayName": "", + "id": "6ab61", + "name": "k3_MOVE0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0eebb": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@0eebb", + "displayName": "", + "id": "0eebb", + "name": "k3_MOVE0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "444a5": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@444a5", + "displayName": "", + "id": "444a5", + "name": "k3_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2047a": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@2047a", + "displayName": "", + "id": "2047a", + "name": "k3_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a28e1": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@a28e1", + "displayName": "", + "id": "a28e1", + "name": "k3_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1821, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cb16f": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@cb16f", + "displayName": "", + "id": "cb16f", + "name": "k3_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3fad9": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@3fad9", + "displayName": "", + "id": "3fad9", + "name": "k3_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ae871": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@ae871", + "displayName": "", + "id": "ae871", + "name": "k3_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "272ae": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@272ae", + "displayName": "", + "id": "272ae", + "name": "k3_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4d040": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@4d040", + "displayName": "", + "id": "4d040", + "name": "k3_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6fb5e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@6fb5e", + "displayName": "", + "id": "6fb5e", + "name": "k3_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1821, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "392ab": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@392ab", + "displayName": "", + "id": "392ab", + "name": "k3_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e463f": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@e463f", + "displayName": "", + "id": "e463f", + "name": "k3_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c6682": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@c6682", + "displayName": "", + "id": "c6682", + "name": "k3_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1a750": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@1a750", + "displayName": "", + "id": "1a750", + "name": "k3_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d2861": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@d2861", + "displayName": "", + "id": "d2861", + "name": "k4_ATTACK0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ab2c8": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@ab2c8", + "displayName": "", + "id": "ab2c8", + "name": "k4_ATTACK0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 163, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7ea35": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@7ea35", + "displayName": "", + "id": "7ea35", + "name": "k4_ATTACK0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 325, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "03fe6": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@03fe6", + "displayName": "", + "id": "03fe6", + "name": "k4_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 487, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c2415": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@c2415", + "displayName": "", + "id": "c2415", + "name": "k4_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 649, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "342ad": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@342ad", + "displayName": "", + "id": "342ad", + "name": "k4_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 811, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "92b25": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@92b25", + "displayName": "", + "id": "92b25", + "name": "k4_ATTACK1_AxeAttack_1_0-0", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 973, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "789c3": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@789c3", + "displayName": "", + "id": "789c3", + "name": "k4_ATTACK1_AxeAttack_1_0-1", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1135, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dbfd4": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@dbfd4", + "displayName": "", + "id": "dbfd4", + "name": "k4_ATTACK1_AxeAttack_1_0-10", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 973, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c7534": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@c7534", + "displayName": "", + "id": "c7534", + "name": "k4_ATTACK1_AxeAttack_1_0-11", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1135, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8281d": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@8281d", + "displayName": "", + "id": "8281d", + "name": "k4_ATTACK1_AxeAttack_1_0-12", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1297, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a8938": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@a8938", + "displayName": "", + "id": "a8938", + "name": "k4_ATTACK1_AxeAttack_1_0-13", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1459, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7323c": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@7323c", + "displayName": "", + "id": "7323c", + "name": "k4_ATTACK1_AxeAttack_1_0-2", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1297, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "06f55": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@06f55", + "displayName": "", + "id": "06f55", + "name": "k4_ATTACK1_AxeAttack_1_0-3", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1459, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "007cf": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@007cf", + "displayName": "", + "id": "007cf", + "name": "k4_ATTACK1_AxeAttack_1_0-4", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5f02d": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@5f02d", + "displayName": "", + "id": "5f02d", + "name": "k4_ATTACK1_AxeAttack_1_0-5", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 163, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "061f7": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@061f7", + "displayName": "", + "id": "061f7", + "name": "k4_ATTACK1_AxeAttack_1_0-6", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 325, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c0927": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@c0927", + "displayName": "", + "id": "c0927", + "name": "k4_ATTACK1_AxeAttack_1_0-7", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 487, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "816e4": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@816e4", + "displayName": "", + "id": "816e4", + "name": "k4_ATTACK1_AxeAttack_1_0-8", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 649, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "285e9": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@285e9", + "displayName": "", + "id": "285e9", + "name": "k4_ATTACK3_ShotSwordAttack_1_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0b311": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@0b311", + "displayName": "", + "id": "0b311", + "name": "k4_ATTACK3_ShotSwordAttack_1_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 423, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1f931": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@1f931", + "displayName": "", + "id": "1f931", + "name": "k4_ATTACK3_ShotSwordAttack_1_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 585, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f7fe9": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@f7fe9", + "displayName": "", + "id": "f7fe9", + "name": "k4_ATTACK3_ShotSwordAttack_1_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 747, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6faec": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@6faec", + "displayName": "", + "id": "6faec", + "name": "k4_ATTACK3_ShotSwordAttack_1_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 909, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bf61e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@bf61e", + "displayName": "", + "id": "bf61e", + "name": "k4_ATTACK3_ShotSwordAttack_1_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1233, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ab6e2": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@ab6e2", + "displayName": "", + "id": "ab6e2", + "name": "k4_ATTACK3_ShotSwordAttack_1_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1395, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5c142": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@5c142", + "displayName": "", + "id": "5c142", + "name": "k4_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1557, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "854b4": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@854b4", + "displayName": "", + "id": "854b4", + "name": "k4_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1719, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "83c83": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@83c83", + "displayName": "", + "id": "83c83", + "name": "k4_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "09435": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@09435", + "displayName": "", + "id": "09435", + "name": "k4_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 293, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9ebfe": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@9ebfe", + "displayName": "", + "id": "9ebfe", + "name": "k4_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 455, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5c46e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@5c46e", + "displayName": "", + "id": "5c46e", + "name": "k4_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 617, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "893cf": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@893cf", + "displayName": "", + "id": "893cf", + "name": "k4_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 779, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "06c53": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@06c53", + "displayName": "", + "id": "06c53", + "name": "k4_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 941, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7d18c": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@7d18c", + "displayName": "", + "id": "7d18c", + "name": "k4_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1103, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "343b7": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@343b7", + "displayName": "", + "id": "343b7", + "name": "k4_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1265, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0a927": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@0a927", + "displayName": "", + "id": "0a927", + "name": "k4_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1525, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b8bcd": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@b8bcd", + "displayName": "", + "id": "b8bcd", + "name": "k4_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1687, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "09806": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@09806", + "displayName": "", + "id": "09806", + "name": "k4_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 261, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bb77d": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@bb77d", + "displayName": "", + "id": "bb77d", + "name": "k4_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1427, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3667e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@3667e", + "displayName": "", + "id": "3667e", + "name": "k4_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f3b5e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@f3b5e", + "displayName": "", + "id": "f3b5e", + "name": "k4_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 553, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fc598": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@fc598", + "displayName": "", + "id": "fc598", + "name": "k4_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 715, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "62d02": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@62d02", + "displayName": "", + "id": "62d02", + "name": "k4_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 877, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9a924": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@9a924", + "displayName": "", + "id": "9a924", + "name": "k4_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1039, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e0dab": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@e0dab", + "displayName": "", + "id": "e0dab", + "name": "k4_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1201, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e7d3e": { + "importer": "sprite-frame", + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57@e7d3e", + "displayName": "", + "id": "e7d3e", + "name": "k4_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1363, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "atlasUuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", "trimType": "auto" }, "ver": "1.0.12", @@ -10221,9 +8519,9 @@ } }, "userData": { - "atlasTextureName": "k1k2.png", + "atlasTextureName": "k1234.png", "format": 3, - "uuid": "91033056-eac3-4ad0-b174-e072da964784", - "textureUuid": "74d73c00-8db1-4190-982d-43a19a309878@6c48a" + "uuid": "3092fdba-6250-43e4-a940-6f4b45fbbb57", + "textureUuid": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a" } } diff --git a/assets/resources/game/heros/hero/k1234.png b/assets/resources/game/heros/hero/k1234.png new file mode 100644 index 00000000..1b4dca21 Binary files /dev/null and b/assets/resources/game/heros/hero/k1234.png differ diff --git a/assets/resources/game/heros/hero/h1m2.png.meta b/assets/resources/game/heros/hero/k1234.png.meta similarity index 71% rename from assets/resources/game/heros/hero/h1m2.png.meta rename to assets/resources/game/heros/hero/k1234.png.meta index 04b2c8df..705e4c4b 100644 --- a/assets/resources/game/heros/hero/h1m2.png.meta +++ b/assets/resources/game/heros/hero/k1234.png.meta @@ -2,7 +2,7 @@ "ver": "1.0.27", "importer": "image", "imported": true, - "uuid": "a30edf8a-0c58-410e-9f7f-529c82758cd0", + "uuid": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e", "files": [ ".json", ".png" @@ -10,8 +10,8 @@ "subMetas": { "6c48a": { "importer": "texture", - "uuid": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a", - "displayName": "h1m2", + "uuid": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a", + "displayName": "k1234", "id": "6c48a", "name": "texture", "userData": { @@ -22,7 +22,7 @@ "mipfilter": "none", "anisotropy": 0, "isUuid": true, - "imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0", + "imageUuidOrDatabaseUri": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e", "visible": false }, "ver": "1.0.22", @@ -37,6 +37,6 @@ "type": "texture", "hasAlpha": true, "fixAlphaTransparencyArtifacts": false, - "redirect": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a" + "redirect": "19b451f6-e8ab-407b-8913-5fd22ac1ec2e@6c48a" } } diff --git a/assets/resources/game/heros/hero/k1k2.png b/assets/resources/game/heros/hero/k1k2.png deleted file mode 100644 index b7903087..00000000 Binary files a/assets/resources/game/heros/hero/k1k2.png and /dev/null differ diff --git a/assets/resources/game/heros/hero/k1k2.png.meta b/assets/resources/game/heros/hero/k1k2.png.meta deleted file mode 100644 index 60f66bfa..00000000 --- a/assets/resources/game/heros/hero/k1k2.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.27", - "importer": "image", - "imported": true, - "uuid": "74d73c00-8db1-4190-982d-43a19a309878", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "74d73c00-8db1-4190-982d-43a19a309878@6c48a", - "displayName": "k1k2", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "74d73c00-8db1-4190-982d-43a19a309878", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "type": "texture", - "hasAlpha": true, - "fixAlphaTransparencyArtifacts": false, - "redirect": "74d73c00-8db1-4190-982d-43a19a309878@6c48a" - } -} diff --git a/assets/resources/game/heros/hero/k4k56.png b/assets/resources/game/heros/hero/k4k56.png deleted file mode 100644 index 19bdf73f..00000000 Binary files a/assets/resources/game/heros/hero/k4k56.png and /dev/null differ diff --git a/assets/resources/game/heros/hero/k4k56.png.meta b/assets/resources/game/heros/hero/k4k56.png.meta deleted file mode 100644 index 35d393f8..00000000 --- a/assets/resources/game/heros/hero/k4k56.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.27", - "importer": "image", - "imported": true, - "uuid": "df51b04b-df93-47de-acd7-9148dbdfbef7", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "displayName": "k4k56", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "type": "texture", - "hasAlpha": true, - "fixAlphaTransparencyArtifacts": false, - "redirect": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a" - } -} diff --git a/assets/resources/game/heros/hero/k5m5.plist b/assets/resources/game/heros/hero/k5m5.plist new file mode 100644 index 00000000..b706d897 --- /dev/null +++ b/assets/resources/game/heros/hero/k5m5.plist @@ -0,0 +1,1391 @@ + + + + + frames + + k5_ATTACK0_0_Attack_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1297,1},{160,128}} + textureRotated + + + k5_ATTACK0_0_Attack_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1459,1},{160,128}} + textureRotated + + + k5_ATTACK0_0_Attack_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1621,1},{160,128}} + textureRotated + + + k5_ATTACK0_0_Attack_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1783,1},{160,128}} + textureRotated + + + k5_ATTACK0_0_Attack_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,116},{160,128}} + textureRotated + + + k5_ATTACK0_0_Attack_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{163,116},{160,128}} + textureRotated + + + k5_ATTACK0_0_Attack_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{325,116},{160,128}} + textureRotated + + + k5_ATTACK0_0_Attack_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{487,116},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{649,116},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{811,116},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{325,246},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{487,246},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{649,246},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{811,246},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{973,116},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1135,116},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1297,131},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1459,131},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1621,131},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1783,131},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,246},{160,128}} + textureRotated + + + k5_ATTACK1_AxeAttack_1_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{163,246},{160,128}} + textureRotated + + + k5_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,113} + spriteSourceSize + {160,113} + textureRect + {{1,1},{160,113}} + textureRotated + + + k5_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,113} + spriteSourceSize + {160,113} + textureRect + {{1,1},{160,113}} + textureRotated + + + k5_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,113} + spriteSourceSize + {160,113} + textureRect + {{163,1},{160,113}} + textureRotated + + + k5_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,113} + spriteSourceSize + {160,113} + textureRect + {{325,1},{160,113}} + textureRotated + + + k5_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,113} + spriteSourceSize + {160,113} + textureRect + {{487,1},{160,113}} + textureRotated + + + k5_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,113} + spriteSourceSize + {160,113} + textureRect + {{649,1},{160,113}} + textureRotated + + + k5_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,113} + spriteSourceSize + {160,113} + textureRect + {{811,1},{160,113}} + textureRotated + + + k5_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,113} + spriteSourceSize + {160,113} + textureRect + {{973,1},{160,113}} + textureRotated + + + k5_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,113} + spriteSourceSize + {160,113} + textureRect + {{1135,1},{160,113}} + textureRotated + + + k5_MOVE0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{973,246},{160,128}} + textureRotated + + + k5_MOVE0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1135,246},{160,128}} + textureRotated + + + k5_MOVE0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1297,261},{160,128}} + textureRotated + + + k5_MOVE0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1459,261},{160,128}} + textureRotated + + + k5_MOVE0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1621,261},{160,128}} + textureRotated + + + k5_MOVE0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1783,261},{160,128}} + textureRotated + + + k5_OTHER2_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1297,1},{160,128}} + textureRotated + + + k5_OTHER2_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1,376},{160,128}} + textureRotated + + + k5_OTHER2_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{163,376},{160,128}} + textureRotated + + + k5_OTHER2_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{325,376},{160,128}} + textureRotated + + + k5_OTHER2_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{487,376},{160,128}} + textureRotated + + + k5_OTHER2_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{649,376},{160,128}} + textureRotated + + + k5_OTHER2_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{811,376},{160,128}} + textureRotated + + + k5_OTHER2_1_Skill_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{973,376},{160,128}} + textureRotated + + + k5_OTHER2_1_Skill_Normal_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {160,128} + spriteSourceSize + {160,128} + textureRect + {{1135,376},{160,128}} + textureRotated + + + m5_ATTACK0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1297,391},{128,128}} + textureRotated + + + m5_ATTACK0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1427,391},{128,128}} + textureRotated + + + m5_ATTACK0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1557,391},{128,128}} + textureRotated + + + m5_ATTACK0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1687,391},{128,128}} + textureRotated + + + m5_ATTACK0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1817,391},{128,128}} + textureRotated + + + m5_ATTACK0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1,506},{128,128}} + textureRotated + + + m5_ATTACK3_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,506},{128,128}} + textureRotated + + + m5_ATTACK3_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,506},{128,128}} + textureRotated + + + m5_ATTACK3_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,506},{128,128}} + textureRotated + + + m5_ATTACK3_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,506},{128,128}} + textureRotated + + + m5_ATTACK3_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,506},{128,128}} + textureRotated + + + m5_ATTACK3_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,506},{128,128}} + textureRotated + + + m5_ATTACK3_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,506},{128,128}} + textureRotated + + + m5_ATTACK3_1_Skill_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,506},{128,128}} + textureRotated + + + m5_ATTACK3_1_Skill_Normal_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,521},{128,128}} + textureRotated + + + m5_ATTACK4_0_Attack_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,521},{128,128}} + textureRotated + + + m5_ATTACK4_0_Attack_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,521},{128,128}} + textureRotated + + + m5_ATTACK4_0_Attack_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,521},{128,128}} + textureRotated + + + m5_ATTACK4_0_Attack_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,521},{128,128}} + textureRotated + + + m5_ATTACK4_0_Attack_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,521},{128,128}} + textureRotated + + + m5_ATTACK4_0_Attack_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1,636},{128,128}} + textureRotated + + + m5_ATTACK4_0_Attack_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,636},{128,128}} + textureRotated + + + m5_ATTACK4_0_Attack_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,636},{128,128}} + textureRotated + + + m5_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,636},{128,128}} + textureRotated + + + m5_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,636},{128,128}} + textureRotated + + + m5_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,636},{128,128}} + textureRotated + + + m5_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,636},{128,128}} + textureRotated + + + m5_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,636},{128,128}} + textureRotated + + + m5_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,636},{128,128}} + textureRotated + + + m5_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,636},{128,128}} + textureRotated + + + m5_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,651},{128,128}} + textureRotated + + + m5_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,651},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,651},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1561,651},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,766},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,766},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,766},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1691,651},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1821,651},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1,766},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,766},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,766},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,766},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,766},{128,128}} + textureRotated + + + m5_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,766},{128,128}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + k5m5.png + size + {1950,895} + smartupdate + $TexturePacker:SmartUpdate:32a2571cee9be8a3fd6763c90c8355ed:715b12f3f771495ae87cf87210213542:ba44c0b6cfda977280886ffe1cf4912b$ + textureFileName + k5m5.png + + + diff --git a/assets/resources/game/heros/hero/k5m5.plist.meta b/assets/resources/game/heros/hero/k5m5.plist.meta new file mode 100644 index 00000000..f02bac82 --- /dev/null +++ b/assets/resources/game/heros/hero/k5m5.plist.meta @@ -0,0 +1,4203 @@ +{ + "ver": "1.0.8", + "importer": "sprite-atlas", + "imported": true, + "uuid": "65901503-7638-405f-a6c0-41009376b3f2", + "files": [ + ".json" + ], + "subMetas": { + "10355": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@10355", + "displayName": "", + "id": "10355", + "name": "m5_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "16614": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@16614", + "displayName": "", + "id": "16614", + "name": "m5_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "26440": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@26440", + "displayName": "", + "id": "26440", + "name": "m5_ATTACK3_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 506, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "35586": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@35586", + "displayName": "", + "id": "35586", + "name": "m5_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 766, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "46085": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@46085", + "displayName": "", + "id": "46085", + "name": "k5_ATTACK1_AxeAttack_1_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1459, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "49222": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@49222", + "displayName": "", + "id": "49222", + "name": "m5_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 766, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "64505": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@64505", + "displayName": "", + "id": "64505", + "name": "k5_OTHER2_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 973, + "trimY": 376, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "76479": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@76479", + "displayName": "", + "id": "76479", + "name": "m5_ATTACK4_0_Attack_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 636, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "86450": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@86450", + "displayName": "", + "id": "86450", + "name": "k5_OTHER2_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 163, + "trimY": 376, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ca50b": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@ca50b", + "displayName": "", + "id": "ca50b", + "name": "k5_ATTACK0_0_Attack_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1297, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0a303": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@0a303", + "displayName": "", + "id": "0a303", + "name": "k5_ATTACK0_0_Attack_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1459, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f72be": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@f72be", + "displayName": "", + "id": "f72be", + "name": "k5_ATTACK0_0_Attack_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1621, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "173d8": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@173d8", + "displayName": "", + "id": "173d8", + "name": "k5_ATTACK0_0_Attack_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1783, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e4c58": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@e4c58", + "displayName": "", + "id": "e4c58", + "name": "k5_ATTACK0_0_Attack_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 116, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "adb84": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@adb84", + "displayName": "", + "id": "adb84", + "name": "k5_ATTACK0_0_Attack_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 163, + "trimY": 116, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ff0e0": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@ff0e0", + "displayName": "", + "id": "ff0e0", + "name": "k5_ATTACK0_0_Attack_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 325, + "trimY": 116, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f471f": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@f471f", + "displayName": "", + "id": "f471f", + "name": "k5_ATTACK0_0_Attack_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 487, + "trimY": 116, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c54cf": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@c54cf", + "displayName": "", + "id": "c54cf", + "name": "k5_ATTACK1_AxeAttack_1_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 649, + "trimY": 116, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8293a": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@8293a", + "displayName": "", + "id": "8293a", + "name": "k5_ATTACK1_AxeAttack_1_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 811, + "trimY": 116, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "21be2": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@21be2", + "displayName": "", + "id": "21be2", + "name": "k5_ATTACK1_AxeAttack_1_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 325, + "trimY": 246, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6fe34": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@6fe34", + "displayName": "", + "id": "6fe34", + "name": "k5_ATTACK1_AxeAttack_1_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 487, + "trimY": 246, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "68a6d": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@68a6d", + "displayName": "", + "id": "68a6d", + "name": "k5_ATTACK1_AxeAttack_1_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 649, + "trimY": 246, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "15e0f": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@15e0f", + "displayName": "", + "id": "15e0f", + "name": "k5_ATTACK1_AxeAttack_1_0-13", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 811, + "trimY": 246, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d25d1": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@d25d1", + "displayName": "", + "id": "d25d1", + "name": "k5_ATTACK1_AxeAttack_1_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 973, + "trimY": 116, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ed7d4": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@ed7d4", + "displayName": "", + "id": "ed7d4", + "name": "k5_ATTACK1_AxeAttack_1_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1135, + "trimY": 116, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7d25f": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@7d25f", + "displayName": "", + "id": "7d25f", + "name": "k5_ATTACK1_AxeAttack_1_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1297, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9f5e0": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@9f5e0", + "displayName": "", + "id": "9f5e0", + "name": "k5_ATTACK1_AxeAttack_1_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1621, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8e33b": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@8e33b", + "displayName": "", + "id": "8e33b", + "name": "k5_ATTACK1_AxeAttack_1_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1783, + "trimY": 131, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "09a7f": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@09a7f", + "displayName": "", + "id": "09a7f", + "name": "k5_ATTACK1_AxeAttack_1_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 246, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3c8be": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@3c8be", + "displayName": "", + "id": "3c8be", + "name": "k5_ATTACK1_AxeAttack_1_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 163, + "trimY": 246, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "652d1": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@652d1", + "displayName": "", + "id": "652d1", + "name": "k5_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 160, + "height": 113, + "rawWidth": 160, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b3048": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@b3048", + "displayName": "", + "id": "b3048", + "name": "k5_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 160, + "height": 113, + "rawWidth": 160, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bf670": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@bf670", + "displayName": "", + "id": "bf670", + "name": "k5_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 163, + "trimY": 1, + "width": 160, + "height": 113, + "rawWidth": 160, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "08a0e": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@08a0e", + "displayName": "", + "id": "08a0e", + "name": "k5_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 325, + "trimY": 1, + "width": 160, + "height": 113, + "rawWidth": 160, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b0f17": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@b0f17", + "displayName": "", + "id": "b0f17", + "name": "k5_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 487, + "trimY": 1, + "width": 160, + "height": 113, + "rawWidth": 160, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4036c": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@4036c", + "displayName": "", + "id": "4036c", + "name": "k5_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 649, + "trimY": 1, + "width": 160, + "height": 113, + "rawWidth": 160, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5055f": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@5055f", + "displayName": "", + "id": "5055f", + "name": "k5_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 811, + "trimY": 1, + "width": 160, + "height": 113, + "rawWidth": 160, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "132ce": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@132ce", + "displayName": "", + "id": "132ce", + "name": "k5_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 973, + "trimY": 1, + "width": 160, + "height": 113, + "rawWidth": 160, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8e405": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@8e405", + "displayName": "", + "id": "8e405", + "name": "k5_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1135, + "trimY": 1, + "width": 160, + "height": 113, + "rawWidth": 160, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "16cd6": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@16cd6", + "displayName": "", + "id": "16cd6", + "name": "k5_MOVE0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 973, + "trimY": 246, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f2685": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@f2685", + "displayName": "", + "id": "f2685", + "name": "k5_MOVE0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1135, + "trimY": 246, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a67b8": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@a67b8", + "displayName": "", + "id": "a67b8", + "name": "k5_MOVE0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1297, + "trimY": 261, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "950f5": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@950f5", + "displayName": "", + "id": "950f5", + "name": "k5_MOVE0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1459, + "trimY": 261, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "da460": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@da460", + "displayName": "", + "id": "da460", + "name": "k5_MOVE0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1621, + "trimY": 261, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2a115": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@2a115", + "displayName": "", + "id": "2a115", + "name": "k5_MOVE0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1783, + "trimY": 261, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a9870": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@a9870", + "displayName": "", + "id": "a9870", + "name": "k5_OTHER2_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1297, + "trimY": 1, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a56ad": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@a56ad", + "displayName": "", + "id": "a56ad", + "name": "k5_OTHER2_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 376, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "93f88": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@93f88", + "displayName": "", + "id": "93f88", + "name": "k5_OTHER2_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 325, + "trimY": 376, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "975d5": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@975d5", + "displayName": "", + "id": "975d5", + "name": "k5_OTHER2_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 487, + "trimY": 376, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "607e2": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@607e2", + "displayName": "", + "id": "607e2", + "name": "k5_OTHER2_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 649, + "trimY": 376, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6ad39": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@6ad39", + "displayName": "", + "id": "6ad39", + "name": "k5_OTHER2_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 811, + "trimY": 376, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2bec9": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@2bec9", + "displayName": "", + "id": "2bec9", + "name": "k5_OTHER2_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1135, + "trimY": 376, + "width": 160, + "height": 128, + "rawWidth": 160, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "66c5e": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@66c5e", + "displayName": "", + "id": "66c5e", + "name": "m5_ATTACK0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1297, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "94e80": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@94e80", + "displayName": "", + "id": "94e80", + "name": "m5_ATTACK0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1427, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "aa7f0": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@aa7f0", + "displayName": "", + "id": "aa7f0", + "name": "m5_ATTACK0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1557, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f5145": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@f5145", + "displayName": "", + "id": "f5145", + "name": "m5_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1687, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "34ffb": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@34ffb", + "displayName": "", + "id": "34ffb", + "name": "m5_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1817, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7c8af": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@7c8af", + "displayName": "", + "id": "7c8af", + "name": "m5_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 506, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "de40f": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@de40f", + "displayName": "", + "id": "de40f", + "name": "m5_ATTACK3_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 506, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "14e1a": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@14e1a", + "displayName": "", + "id": "14e1a", + "name": "m5_ATTACK3_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 506, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "66ba9": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@66ba9", + "displayName": "", + "id": "66ba9", + "name": "m5_ATTACK3_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 506, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bd6c7": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@bd6c7", + "displayName": "", + "id": "bd6c7", + "name": "m5_ATTACK3_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 506, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4bf31": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@4bf31", + "displayName": "", + "id": "4bf31", + "name": "m5_ATTACK3_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 506, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9cc73": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@9cc73", + "displayName": "", + "id": "9cc73", + "name": "m5_ATTACK3_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 506, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "847b3": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@847b3", + "displayName": "", + "id": "847b3", + "name": "m5_ATTACK3_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 506, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "62b18": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@62b18", + "displayName": "", + "id": "62b18", + "name": "m5_ATTACK3_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8381e": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@8381e", + "displayName": "", + "id": "8381e", + "name": "m5_ATTACK4_0_Attack_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bb3fd": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@bb3fd", + "displayName": "", + "id": "bb3fd", + "name": "m5_ATTACK4_0_Attack_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fcd39": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@fcd39", + "displayName": "", + "id": "fcd39", + "name": "m5_ATTACK4_0_Attack_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f3571": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@f3571", + "displayName": "", + "id": "f3571", + "name": "m5_ATTACK4_0_Attack_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1e3c4": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@1e3c4", + "displayName": "", + "id": "1e3c4", + "name": "m5_ATTACK4_0_Attack_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1821, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fe993": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@fe993", + "displayName": "", + "id": "fe993", + "name": "m5_ATTACK4_0_Attack_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 636, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7ee01": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@7ee01", + "displayName": "", + "id": "7ee01", + "name": "m5_ATTACK4_0_Attack_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 636, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "14ffb": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@14ffb", + "displayName": "", + "id": "14ffb", + "name": "m5_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 636, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "16c83": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@16c83", + "displayName": "", + "id": "16c83", + "name": "m5_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 636, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7c0ed": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@7c0ed", + "displayName": "", + "id": "7c0ed", + "name": "m5_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 636, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1aa73": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@1aa73", + "displayName": "", + "id": "1aa73", + "name": "m5_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 636, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "181d7": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@181d7", + "displayName": "", + "id": "181d7", + "name": "m5_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 636, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d155a": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@d155a", + "displayName": "", + "id": "d155a", + "name": "m5_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 636, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ccd88": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@ccd88", + "displayName": "", + "id": "ccd88", + "name": "m5_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 636, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "339ff": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@339ff", + "displayName": "", + "id": "339ff", + "name": "m5_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dc561": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@dc561", + "displayName": "", + "id": "dc561", + "name": "m5_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1561, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5de96": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@5de96", + "displayName": "", + "id": "5de96", + "name": "m5_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 766, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b8dfb": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@b8dfb", + "displayName": "", + "id": "b8dfb", + "name": "m5_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 766, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cb6ff": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@cb6ff", + "displayName": "", + "id": "cb6ff", + "name": "m5_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1691, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9c9c": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@f9c9c", + "displayName": "", + "id": "f9c9c", + "name": "m5_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1821, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c8ac1": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@c8ac1", + "displayName": "", + "id": "c8ac1", + "name": "m5_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 766, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c71af": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@c71af", + "displayName": "", + "id": "c71af", + "name": "m5_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 766, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3ac38": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@3ac38", + "displayName": "", + "id": "3ac38", + "name": "m5_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 766, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dd291": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@dd291", + "displayName": "", + "id": "dd291", + "name": "m5_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 766, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9b6f7": { + "importer": "sprite-frame", + "uuid": "65901503-7638-405f-a6c0-41009376b3f2@9b6f7", + "displayName": "", + "id": "9b6f7", + "name": "m5_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 766, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "atlasUuid": "65901503-7638-405f-a6c0-41009376b3f2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "atlasTextureName": "k5m5.png", + "format": 3, + "uuid": "65901503-7638-405f-a6c0-41009376b3f2", + "textureUuid": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a" + } +} diff --git a/assets/resources/game/heros/hero/k5m5.png b/assets/resources/game/heros/hero/k5m5.png new file mode 100644 index 00000000..7d334450 Binary files /dev/null and b/assets/resources/game/heros/hero/k5m5.png differ diff --git a/assets/resources/game/heros/hero/a1c1.png.meta b/assets/resources/game/heros/hero/k5m5.png.meta similarity index 71% rename from assets/resources/game/heros/hero/a1c1.png.meta rename to assets/resources/game/heros/hero/k5m5.png.meta index d4d78d6a..0183976a 100644 --- a/assets/resources/game/heros/hero/a1c1.png.meta +++ b/assets/resources/game/heros/hero/k5m5.png.meta @@ -2,7 +2,7 @@ "ver": "1.0.27", "importer": "image", "imported": true, - "uuid": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943", + "uuid": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee", "files": [ ".json", ".png" @@ -10,8 +10,8 @@ "subMetas": { "6c48a": { "importer": "texture", - "uuid": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a", - "displayName": "a1c1", + "uuid": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a", + "displayName": "k5m5", "id": "6c48a", "name": "texture", "userData": { @@ -22,7 +22,7 @@ "mipfilter": "none", "anisotropy": 0, "isUuid": true, - "imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943", + "imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee", "visible": false }, "ver": "1.0.22", @@ -37,6 +37,6 @@ "type": "texture", "hasAlpha": true, "fixAlphaTransparencyArtifacts": false, - "redirect": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a" + "redirect": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a" } } diff --git a/assets/resources/game/heros/hero/k4k56.plist b/assets/resources/game/heros/hero/m1234.plist similarity index 73% rename from assets/resources/game/heros/hero/k4k56.plist rename to assets/resources/game/heros/hero/m1234.plist index 584e4955..796e5c5b 100644 --- a/assets/resources/game/heros/hero/k4k56.plist +++ b/assets/resources/game/heros/hero/m1234.plist @@ -4,7 +4,7 @@ frames - SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-0.png + m1_ATTACK0_0_move_0-0.png aliases @@ -19,127 +19,7 @@ textureRotated - SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-9.png + m1_ATTACK0_0_move_0-1.png aliases @@ -154,172 +34,7 @@ textureRotated - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,131},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,261},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,131},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,131},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,131},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,131},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,131},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,131},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,131},{128,128}} - textureRotated - - - SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-9.png + m1_ATTACK0_0_move_0-2.png aliases @@ -334,217 +49,7 @@ textureRotated - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,1},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,261},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,391},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,391},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,391},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,391},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,391},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,391},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,261},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,261},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,261},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,261},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,261},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,261},{128,128}} - textureRotated - - - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-8.png + m1_ATTACK0_0_move_0-3.png aliases @@ -559,82 +64,7 @@ textureRotated - SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,391},{128,128}} - textureRotated - - - SPUM_20260321091107599_IDLE0_0_idle_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,391},{128,128}} - textureRotated - - - SPUM_20260321091107599_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,391},{128,128}} - textureRotated - - - SPUM_20260321091107599_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,521},{128,128}} - textureRotated - - - SPUM_20260321091107599_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1,651},{128,128}} - textureRotated - - - SPUM_20260321091107599_IDLE0_0_idle_0-2.png + m1_ATTACK0_0_move_0-4.png aliases @@ -649,7 +79,7 @@ textureRotated - SPUM_20260321091107599_IDLE0_0_idle_0-3.png + m1_ATTACK0_0_move_0-5.png aliases @@ -660,221 +90,11 @@ spriteSourceSize {128,128} textureRect - {{131,521},{128,128}} + {{1,651},{128,128}} textureRotated - SPUM_20260321091107599_IDLE0_0_idle_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,521},{128,128}} - textureRotated - - - SPUM_20260321091107599_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,521},{128,128}} - textureRotated - - - SPUM_20260321091107599_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,521},{128,128}} - textureRotated - - - SPUM_20260321091107599_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,521},{128,128}} - textureRotated - - - SPUM_20260321091107599_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,521},{128,128}} - textureRotated - - - SPUM_20260321091107599_IDLE0_0_idle_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,521},{128,128}} - textureRotated - - - SPUM_20260321091107599_MOVE0_0_move_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,651},{128,128}} - textureRotated - - - SPUM_20260321091107599_MOVE0_0_move_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,651},{128,128}} - textureRotated - - - SPUM_20260321091107599_MOVE0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,651},{128,128}} - textureRotated - - - SPUM_20260321091107599_MOVE0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,651},{128,128}} - textureRotated - - - SPUM_20260321091107599_MOVE0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,651},{128,128}} - textureRotated - - - SPUM_20260321091107599_MOVE0_0_move_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,651},{128,128}} - textureRotated - - - SPUM_20260321091107599_MOVE0_0_move_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,651},{128,128}} - textureRotated - - - SPUM_20260321091107599_MOVE0_0_move_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,651},{128,128}} - textureRotated - - - SPUM_20260321091107599_OTHER2_0_Die_0-0.png + m1_ATTACK3_1_Skill_Normal_0-0.png aliases @@ -889,7 +109,7 @@ textureRotated - SPUM_20260321091107599_OTHER2_0_Die_0-1.png + m1_ATTACK3_1_Skill_Normal_0-1.png aliases @@ -904,97 +124,7 @@ textureRotated - SPUM_20260321091107599_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - SPUM_20260321091107599_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - SPUM_20260321091107599_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - SPUM_20260321091107599_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - SPUM_20260321091107599_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - SPUM_20260321091107599_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - SPUM_20260321091107599_OTHER2_0_Die_0-2.png + m1_ATTACK3_1_Skill_Normal_0-2.png aliases @@ -1009,7 +139,7 @@ textureRotated - SPUM_20260321091107599_OTHER2_0_Die_0-3.png + m1_ATTACK3_1_Skill_Normal_0-3.png aliases @@ -1024,7 +154,7 @@ textureRotated - SPUM_20260321091107599_OTHER2_0_Die_0-4.png + m1_ATTACK3_1_Skill_Normal_0-4.png aliases @@ -1039,7 +169,7 @@ textureRotated - SPUM_20260321091107599_OTHER2_0_Die_0-5.png + m1_ATTACK3_1_Skill_Normal_0-5.png aliases @@ -1054,7 +184,7 @@ textureRotated - SPUM_20260321091107599_OTHER2_0_Die_0-6.png + m1_ATTACK3_1_Skill_Normal_0-6.png aliases @@ -1069,7 +199,7 @@ textureRotated - SPUM_20260321091107599_OTHER2_0_Die_0-7.png + m1_ATTACK3_1_Skill_Normal_0-7.png aliases @@ -1084,7 +214,112 @@ textureRotated - SPUM_20260321091107599_OTHER2_0_Die_0-8.png + m1_ATTACK3_1_Skill_Normal_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1,1821},{128,128}} + textureRotated + + + m1_ATTACK4_0_Attack_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,1},{128,128}} + textureRotated + + + m1_ATTACK4_0_Attack_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,131},{128,128}} + textureRotated + + + m1_ATTACK4_0_Attack_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,261},{128,128}} + textureRotated + + + m1_ATTACK4_0_Attack_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,391},{128,128}} + textureRotated + + + m1_ATTACK4_0_Attack_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,521},{128,128}} + textureRotated + + + m1_ATTACK4_0_Attack_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,651},{128,128}} + textureRotated + + + m1_ATTACK4_0_Attack_Magic_0-6.png aliases @@ -1099,127 +334,7 @@ textureRotated - SPUM_20260321091107599_OTHER2_0_Die_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{131,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-7.png + m1_ATTACK4_0_Attack_Magic_0-7.png aliases @@ -1234,7 +349,7 @@ textureRotated - SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-8.png + m1_IDLE0_0_idle_0-0.png aliases @@ -1249,7 +364,22 @@ textureRotated - SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-9.png + m1_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{131,1041},{128,128}} + textureRotated + + + m1_IDLE0_0_idle_0-2.png aliases @@ -1264,22 +394,7 @@ textureRotated - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-1.png + m1_IDLE0_0_idle_0-3.png aliases @@ -1294,37 +409,7 @@ textureRotated - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,911},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-2.png + m1_IDLE0_0_idle_0-4.png aliases @@ -1339,7 +424,7 @@ textureRotated - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-3.png + m1_IDLE0_0_idle_0-5.png aliases @@ -1354,7 +439,7 @@ textureRotated - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-4.png + m1_IDLE0_0_idle_0-6.png aliases @@ -1369,7 +454,7 @@ textureRotated - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-5.png + m1_IDLE0_0_idle_0-7.png aliases @@ -1380,11 +465,11 @@ spriteSourceSize {128,128} textureRect - {{261,911},{128,128}} + {{131,1821},{128,128}} textureRotated - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-6.png + m1_IDLE0_0_idle_0-8.png aliases @@ -1395,11 +480,11 @@ spriteSourceSize {128,128} textureRect - {{391,911},{128,128}} + {{261,1},{128,128}} textureRotated - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-7.png + m1_OTHER2_1_Skill_Magic_0-0.png aliases @@ -1410,11 +495,11 @@ spriteSourceSize {128,128} textureRect - {{521,911},{128,128}} + {{261,131},{128,128}} textureRotated - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-8.png + m1_OTHER2_1_Skill_Magic_0-1.png aliases @@ -1425,191 +510,11 @@ spriteSourceSize {128,128} textureRect - {{651,911},{128,128}} + {{261,261},{128,128}} textureRotated - SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,911},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,781},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,911},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1041},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1041},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1041},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1041},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1171},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1301},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1041},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1171},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{261,1301},{128,128}} - textureRotated - - - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-5.png + m1_OTHER2_1_Skill_Magic_0-10.png aliases @@ -1624,7 +529,7 @@ textureRotated - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-6.png + m1_OTHER2_1_Skill_Magic_0-11.png aliases @@ -1639,7 +544,7 @@ textureRotated - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-7.png + m1_OTHER2_1_Skill_Magic_0-12.png aliases @@ -1654,7 +559,262 @@ textureRotated - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-8.png + m1_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,391},{128,128}} + textureRotated + + + m1_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,521},{128,128}} + textureRotated + + + m1_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,651},{128,128}} + textureRotated + + + m1_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,781},{128,128}} + textureRotated + + + m1_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,911},{128,128}} + textureRotated + + + m1_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1041},{128,128}} + textureRotated + + + m1_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1171},{128,128}} + textureRotated + + + m1_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1301},{128,128}} + textureRotated + + + m2_ATTACK0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{261,1821},{128,128}} + textureRotated + + + m2_ATTACK0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1},{128,128}} + textureRotated + + + m2_ATTACK0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,131},{128,128}} + textureRotated + + + m2_ATTACK0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,261},{128,128}} + textureRotated + + + m2_ATTACK0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,391},{128,128}} + textureRotated + + + m2_ATTACK0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,521},{128,128}} + textureRotated + + + m2_ATTACK3_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,651},{128,128}} + textureRotated + + + m2_ATTACK3_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,781},{128,128}} + textureRotated + + + m2_ATTACK3_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,911},{128,128}} + textureRotated + + + m2_ATTACK3_1_Skill_Normal_0-3.png aliases @@ -1669,7 +829,7 @@ textureRotated - SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-9.png + m2_ATTACK3_1_Skill_Normal_0-4.png aliases @@ -1680,11 +840,26 @@ spriteSourceSize {128,128} textureRect - {{521,1041},{128,128}} + {{391,1171},{128,128}} textureRotated - SPUM_20260321092430202_IDLE0_0_idle_0-0.png + m2_ATTACK3_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1301},{128,128}} + textureRotated + + + m2_ATTACK3_1_Skill_Normal_0-6.png aliases @@ -1699,52 +874,7 @@ textureRotated - SPUM_20260321092430202_IDLE0_0_idle_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{391,1431},{128,128}} - textureRotated - - - SPUM_20260321092430202_IDLE0_0_idle_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1431},{128,128}} - textureRotated - - - SPUM_20260321092430202_IDLE0_0_idle_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{521,1561},{128,128}} - textureRotated - - - SPUM_20260321092430202_IDLE0_0_idle_0-2.png + m2_ATTACK3_1_Skill_Normal_0-7.png aliases @@ -1759,7 +889,7 @@ textureRotated - SPUM_20260321092430202_IDLE0_0_idle_0-3.png + m2_ATTACK3_1_Skill_Normal_0-8.png aliases @@ -1774,7 +904,172 @@ textureRotated - SPUM_20260321092430202_IDLE0_0_idle_0-4.png + m2_ATTACK4_0_Attack_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{391,1821},{128,128}} + textureRotated + + + m2_ATTACK4_0_Attack_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1},{128,128}} + textureRotated + + + m2_ATTACK4_0_Attack_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,131},{128,128}} + textureRotated + + + m2_ATTACK4_0_Attack_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,261},{128,128}} + textureRotated + + + m2_ATTACK4_0_Attack_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,391},{128,128}} + textureRotated + + + m2_ATTACK4_0_Attack_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,521},{128,128}} + textureRotated + + + m2_ATTACK4_0_Attack_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,651},{128,128}} + textureRotated + + + m2_ATTACK4_0_Attack_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,781},{128,128}} + textureRotated + + + m2_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,911},{128,128}} + textureRotated + + + m2_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,911},{128,128}} + textureRotated + + + m2_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1041},{128,128}} + textureRotated + + + m2_IDLE0_0_idle_0-3.png aliases @@ -1789,67 +1084,7 @@ textureRotated - SPUM_20260321092430202_IDLE0_0_idle_0-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{651,1171},{128,128}} - textureRotated - - - SPUM_20260321092430202_IDLE0_0_idle_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1171},{128,128}} - textureRotated - - - SPUM_20260321092430202_IDLE0_0_idle_0-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1171},{128,128}} - textureRotated - - - SPUM_20260321092430202_IDLE0_0_idle_0-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1171},{128,128}} - textureRotated - - - SPUM_20260321092430202_IDLE0_0_idle_0-9.png + m2_IDLE0_0_idle_0-4.png aliases @@ -1864,7 +1099,37 @@ textureRotated - SPUM_20260321092430202_MOVE0_0_move_0-0.png + m2_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1431},{128,128}} + textureRotated + + + m2_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1561},{128,128}} + textureRotated + + + m2_IDLE0_0_idle_0-7.png aliases @@ -1879,7 +1144,52 @@ textureRotated - SPUM_20260321092430202_MOVE0_0_move_0-1.png + m2_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{521,1821},{128,128}} + textureRotated + + + m2_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1},{128,128}} + textureRotated + + + m2_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,131},{128,128}} + textureRotated + + + m2_OTHER2_1_Skill_Magic_0-10.png aliases @@ -1894,52 +1204,7 @@ textureRotated - SPUM_20260321092430202_MOVE0_0_move_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{781,1301},{128,128}} - textureRotated - - - SPUM_20260321092430202_MOVE0_0_move_0-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1301},{128,128}} - textureRotated - - - SPUM_20260321092430202_MOVE0_0_move_0-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1301},{128,128}} - textureRotated - - - SPUM_20260321092430202_MOVE0_0_move_0-5.png + m2_OTHER2_1_Skill_Magic_0-11.png aliases @@ -1954,7 +1219,7 @@ textureRotated - SPUM_20260321092430202_MOVE0_0_move_0-6.png + m2_OTHER2_1_Skill_Magic_0-12.png aliases @@ -1969,7 +1234,127 @@ textureRotated - SPUM_20260321092430202_MOVE0_0_move_0-7.png + m2_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,261},{128,128}} + textureRotated + + + m2_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,391},{128,128}} + textureRotated + + + m2_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,521},{128,128}} + textureRotated + + + m2_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,651},{128,128}} + textureRotated + + + m2_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,781},{128,128}} + textureRotated + + + m2_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,911},{128,128}} + textureRotated + + + m2_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1041},{128,128}} + textureRotated + + + m2_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1171},{128,128}} + textureRotated + + + m3_ATTACK0_0_move_0-0.png aliases @@ -1984,7 +1369,187 @@ textureRotated - SPUM_20260321092430202_OTHER2_0_Die_0-0.png + m3_ATTACK0_0_move_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{651,1821},{128,128}} + textureRotated + + + m3_ATTACK0_0_move_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1},{128,128}} + textureRotated + + + m3_ATTACK0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,131},{128,128}} + textureRotated + + + m3_ATTACK0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,261},{128,128}} + textureRotated + + + m3_ATTACK0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,391},{128,128}} + textureRotated + + + m3_ATTACK3_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,521},{128,128}} + textureRotated + + + m3_ATTACK3_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,651},{128,128}} + textureRotated + + + m3_ATTACK3_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,781},{128,128}} + textureRotated + + + m3_ATTACK3_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,911},{128,128}} + textureRotated + + + m3_ATTACK3_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1041},{128,128}} + textureRotated + + + m3_ATTACK3_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1171},{128,128}} + textureRotated + + + m3_ATTACK3_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1301},{128,128}} + textureRotated + + + m3_ATTACK3_1_Skill_Normal_0-7.png aliases @@ -1999,127 +1564,7 @@ textureRotated - SPUM_20260321092430202_OTHER2_0_Die_0-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{911,1431},{128,128}} - textureRotated - - - SPUM_20260321092430202_OTHER2_0_Die_0-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1691},{128,128}} - textureRotated - - - SPUM_20260321092430202_OTHER2_0_Die_0-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1691},{128,128}} - textureRotated - - - SPUM_20260321092430202_OTHER2_0_Die_0-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1691},{128,128}} - textureRotated - - - SPUM_20260321092430202_OTHER2_0_Die_0-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1691},{128,128}} - textureRotated - - - SPUM_20260321092430202_OTHER2_0_Die_0-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1691},{128,128}} - textureRotated - - - SPUM_20260321092430202_OTHER2_0_Die_0-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1691},{128,128}} - textureRotated - - - SPUM_20260321092430202_OTHER2_0_Die_0-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1431},{128,128}} - textureRotated - - - SPUM_20260321092430202_OTHER2_0_Die_0-3.png + m3_ATTACK3_1_Skill_Normal_0-8.png aliases @@ -2134,7 +1579,7 @@ textureRotated - SPUM_20260321092430202_OTHER2_0_Die_0-4.png + m3_ATTACK4_0_Attack_Magic_0-0.png aliases @@ -2149,7 +1594,217 @@ textureRotated - SPUM_20260321092430202_OTHER2_0_Die_0-5.png + m3_ATTACK4_0_Attack_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{781,1821},{128,128}} + textureRotated + + + m3_ATTACK4_0_Attack_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1},{128,128}} + textureRotated + + + m3_ATTACK4_0_Attack_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,131},{128,128}} + textureRotated + + + m3_ATTACK4_0_Attack_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,261},{128,128}} + textureRotated + + + m3_ATTACK4_0_Attack_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,391},{128,128}} + textureRotated + + + m3_ATTACK4_0_Attack_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,521},{128,128}} + textureRotated + + + m3_ATTACK4_0_Attack_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,651},{128,128}} + textureRotated + + + m3_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,781},{128,128}} + textureRotated + + + m3_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,781},{128,128}} + textureRotated + + + m3_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,911},{128,128}} + textureRotated + + + m3_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1041},{128,128}} + textureRotated + + + m3_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1171},{128,128}} + textureRotated + + + m3_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1301},{128,128}} + textureRotated + + + m3_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1431},{128,128}} + textureRotated + + + m3_IDLE0_0_idle_0-7.png aliases @@ -2164,22 +1819,7 @@ textureRotated - SPUM_20260321092430202_OTHER2_0_Die_0-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {128,128} - spriteSourceSize - {128,128} - textureRect - {{1041,1561},{128,128}} - textureRotated - - - SPUM_20260321092430202_OTHER2_0_Die_0-7.png + m3_IDLE0_0_idle_0-8.png aliases @@ -2194,7 +1834,217 @@ textureRotated - SPUM_20260321092430202_OTHER2_0_Die_0-8.png + m3_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{911,1821},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1171},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1301},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1431},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,131},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,261},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,391},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,521},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,651},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,781},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,911},{128,128}} + textureRotated + + + m3_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1041},{128,128}} + textureRotated + + + m4_ATTACK0_0_move_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1041,1561},{128,128}} + textureRotated + + + m4_ATTACK0_0_move_0-1.png aliases @@ -2209,7 +2059,7 @@ textureRotated - SPUM_20260321092430202_OTHER2_0_Die_0-9.png + m4_ATTACK0_0_move_0-2.png aliases @@ -2220,7 +2070,637 @@ spriteSourceSize {128,128} textureRect - {{1041,1691},{128,128}} + {{1041,1821},{128,128}} + textureRotated + + + m4_ATTACK0_0_move_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1},{128,128}} + textureRotated + + + m4_ATTACK0_0_move_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,131},{128,128}} + textureRotated + + + m4_ATTACK0_0_move_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,261},{128,128}} + textureRotated + + + m4_ATTACK3_1_Skill_Normal_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,391},{128,128}} + textureRotated + + + m4_ATTACK3_1_Skill_Normal_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,521},{128,128}} + textureRotated + + + m4_ATTACK3_1_Skill_Normal_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,651},{128,128}} + textureRotated + + + m4_ATTACK3_1_Skill_Normal_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,781},{128,128}} + textureRotated + + + m4_ATTACK3_1_Skill_Normal_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,911},{128,128}} + textureRotated + + + m4_ATTACK3_1_Skill_Normal_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1041},{128,128}} + textureRotated + + + m4_ATTACK3_1_Skill_Normal_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1171},{128,128}} + textureRotated + + + m4_ATTACK3_1_Skill_Normal_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1301},{128,128}} + textureRotated + + + m4_ATTACK3_1_Skill_Normal_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1431},{128,128}} + textureRotated + + + m4_ATTACK4_0_Attack_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1561},{128,128}} + textureRotated + + + m4_ATTACK4_0_Attack_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1691},{128,128}} + textureRotated + + + m4_ATTACK4_0_Attack_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1171,1821},{128,128}} + textureRotated + + + m4_ATTACK4_0_Attack_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1},{128,128}} + textureRotated + + + m4_ATTACK4_0_Attack_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,131},{128,128}} + textureRotated + + + m4_ATTACK4_0_Attack_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,261},{128,128}} + textureRotated + + + m4_ATTACK4_0_Attack_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,391},{128,128}} + textureRotated + + + m4_ATTACK4_0_Attack_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,521},{128,128}} + textureRotated + + + m4_IDLE0_0_idle_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,651},{128,128}} + textureRotated + + + m4_IDLE0_0_idle_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,651},{128,128}} + textureRotated + + + m4_IDLE0_0_idle_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,781},{128,128}} + textureRotated + + + m4_IDLE0_0_idle_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,911},{128,128}} + textureRotated + + + m4_IDLE0_0_idle_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1041},{128,128}} + textureRotated + + + m4_IDLE0_0_idle_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1171},{128,128}} + textureRotated + + + m4_IDLE0_0_idle_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1301},{128,128}} + textureRotated + + + m4_IDLE0_0_idle_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1431},{128,128}} + textureRotated + + + m4_IDLE0_0_idle_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1561},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1691},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1301,1821},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1041},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1171},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1301},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,1},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,131},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,261},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,391},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,521},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,651},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,781},{128,128}} + textureRotated + + + m4_OTHER2_1_Skill_Magic_0-9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {128,128} + spriteSourceSize + {128,128} + textureRect + {{1431,911},{128,128}} textureRotated @@ -2234,13 +2714,13 @@ premultiplyAlpha realTextureFileName - k4k56.png + m1234.png size - {1170,1820} + {1560,1950} smartupdate - $TexturePacker:SmartUpdate:25ad96e9aefcd27f10eb6ed3eb7c821b:24066adea523ba620d8765366ff47ac2:c9651a2e353dad9006151b73f599ad2b$ + $TexturePacker:SmartUpdate:6f7581f1ec5d121c6a72fd80ccb78903:05fe9acda01b89d39b15a36e42953043:9de5ddb3d1b9a58b93a536ac55f312d8$ textureFileName - k4k56.png + m1234.png diff --git a/assets/resources/game/heros/hero/k4k56.plist.meta b/assets/resources/game/heros/hero/m1234.plist.meta similarity index 62% rename from assets/resources/game/heros/hero/k4k56.plist.meta rename to assets/resources/game/heros/hero/m1234.plist.meta index 1d47a17a..442603b9 100644 --- a/assets/resources/game/heros/hero/k4k56.plist.meta +++ b/assets/resources/game/heros/hero/m1234.plist.meta @@ -2,23 +2,23 @@ "ver": "1.0.8", "importer": "sprite-atlas", "imported": true, - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "files": [ ".json" ], "subMetas": { - "15301": { + "12035": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@15301", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@12035", "displayName": "", - "id": "15301", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-13", + "id": "12035", + "name": "m4_ATTACK4_0_Attack_Magic_0-1", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1041, + "trimX": 1171, "trimY": 1691, "width": 128, "height": 128, @@ -42,8 +42,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -53,19 +53,19 @@ ], "subMetas": {} }, - "26183": { + "19079": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@26183", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@19079", "displayName": "", - "id": "26183", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-7", + "id": "19079", + "name": "m4_IDLE0_0_idle_0-8", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 911, - "trimY": 1171, + "trimX": 1301, + "trimY": 1561, "width": 128, "height": 128, "rawWidth": 128, @@ -88,8 +88,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -99,249 +99,19 @@ ], "subMetas": {} }, - "26961": { + "32097": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@26961", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@32097", "displayName": "", - "id": "26961", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "31155": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@31155", - "displayName": "", - "id": "31155", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "40219": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@40219", - "displayName": "", - "id": "40219", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "58621": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@58621", - "displayName": "", - "id": "58621", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "62188": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@62188", - "displayName": "", - "id": "62188", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "64290": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@64290", - "displayName": "", - "id": "64290", - "name": "SPUM_20260321092430202_MOVE0_0_move_0-2", + "id": "32097", + "name": "m3_ATTACK4_0_Attack_Magic_0-1", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 781, - "trimY": 1301, + "trimY": 1821, "width": 128, "height": 128, "rawWidth": 128, @@ -364,8 +134,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -375,18 +145,18 @@ ], "subMetas": {} }, - "74151": { + "32182": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@74151", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@32182", "displayName": "", - "id": "74151", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-13", + "id": "32182", + "name": "m4_ATTACK4_0_Attack_Magic_0-6", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 651, + "trimX": 1301, "trimY": 391, "width": 128, "height": 128, @@ -410,8 +180,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -421,3278 +191,12 @@ ], "subMetas": {} }, - "77237": { + "36817": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@77237", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@36817", "displayName": "", - "id": "77237", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "83700": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@83700", - "displayName": "", - "id": "83700", - "name": "SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "84169": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@84169", - "displayName": "", - "id": "84169", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "86403": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@86403", - "displayName": "", - "id": "86403", - "name": "SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "90661": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@90661", - "displayName": "", - "id": "90661", - "name": "SPUM_20260321092430202_MOVE0_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "90923": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@90923", - "displayName": "", - "id": "90923", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "98823": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@98823", - "displayName": "", - "id": "98823", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "99709": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@99709", - "displayName": "", - "id": "99709", - "name": "SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "06530": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@06530", - "displayName": "", - "id": "06530", - "name": "SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d2169": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@d2169", - "displayName": "", - "id": "d2169", - "name": "SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9a028": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@9a028", - "displayName": "", - "id": "9a028", - "name": "SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "15ecd": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@15ecd", - "displayName": "", - "id": "15ecd", - "name": "SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd563": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@cd563", - "displayName": "", - "id": "cd563", - "name": "SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1481": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@d1481", - "displayName": "", - "id": "d1481", - "name": "SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fa723": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@fa723", - "displayName": "", - "id": "fa723", - "name": "SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e979e": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@e979e", - "displayName": "", - "id": "e979e", - "name": "SPUM_20260321091107599_ATTACK0_0_Attack_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "881f3": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@881f3", - "displayName": "", - "id": "881f3", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f9bf4": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@f9bf4", - "displayName": "", - "id": "f9bf4", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c9033": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@c9033", - "displayName": "", - "id": "c9033", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4c671": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@4c671", - "displayName": "", - "id": "4c671", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "050dc": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@050dc", - "displayName": "", - "id": "050dc", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e8f99": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@e8f99", - "displayName": "", - "id": "e8f99", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02b7a": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@02b7a", - "displayName": "", - "id": "02b7a", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "db90d": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@db90d", - "displayName": "", - "id": "db90d", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cdac4": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@cdac4", - "displayName": "", - "id": "cdac4", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02d7b": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@02d7b", - "displayName": "", - "id": "02d7b", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 131, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "498a7": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@498a7", - "displayName": "", - "id": "498a7", - "name": "SPUM_20260321091107599_ATTACK4_1_Skill_Normal_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "355b7": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@355b7", - "displayName": "", - "id": "355b7", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b73b9": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@b73b9", - "displayName": "", - "id": "b73b9", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0c36f": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@0c36f", - "displayName": "", - "id": "0c36f", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "df0db": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@df0db", - "displayName": "", - "id": "df0db", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2a7d6": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@2a7d6", - "displayName": "", - "id": "2a7d6", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "49dcf": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@49dcf", - "displayName": "", - "id": "49dcf", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "66dad": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@66dad", - "displayName": "", - "id": "66dad", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "519c3": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@519c3", - "displayName": "", - "id": "519c3", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2a050": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@2a050", - "displayName": "", - "id": "2a050", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "397e1": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@397e1", - "displayName": "", - "id": "397e1", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "03c14": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@03c14", - "displayName": "", - "id": "03c14", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cb61b": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@cb61b", - "displayName": "", - "id": "cb61b", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02952": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@02952", - "displayName": "", - "id": "02952", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 261, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "28f30": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@28f30", - "displayName": "", - "id": "28f30", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "723a1": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@723a1", - "displayName": "", - "id": "723a1", - "name": "SPUM_20260321091107599_DAMAGED0_1_Skill_Magic_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ea6dd": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@ea6dd", - "displayName": "", - "id": "ea6dd", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b4e15": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@b4e15", - "displayName": "", - "id": "b4e15", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 391, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "06ebe": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@06ebe", - "displayName": "", - "id": "06ebe", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "735b6": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@735b6", - "displayName": "", - "id": "735b6", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bfed1": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@bfed1", - "displayName": "", - "id": "bfed1", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1d2e4": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@1d2e4", - "displayName": "", - "id": "1d2e4", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "20ea7": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@20ea7", - "displayName": "", - "id": "20ea7", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "db536": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@db536", - "displayName": "", - "id": "db536", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7a2cc": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@7a2cc", - "displayName": "", - "id": "7a2cc", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "edb37": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@edb37", - "displayName": "", - "id": "edb37", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "77dc1": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@77dc1", - "displayName": "", - "id": "77dc1", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-8", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bad2d": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@bad2d", - "displayName": "", - "id": "bad2d", - "name": "SPUM_20260321091107599_IDLE0_0_idle_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 521, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f434c": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@f434c", - "displayName": "", - "id": "f434c", - "name": "SPUM_20260321091107599_MOVE0_0_move_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bef6d": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@bef6d", - "displayName": "", - "id": "bef6d", - "name": "SPUM_20260321091107599_MOVE0_0_move_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "56de9": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@56de9", - "displayName": "", - "id": "56de9", - "name": "SPUM_20260321091107599_MOVE0_0_move_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a1f13": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@a1f13", - "displayName": "", - "id": "a1f13", - "name": "SPUM_20260321091107599_MOVE0_0_move_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e660f": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@e660f", - "displayName": "", - "id": "e660f", - "name": "SPUM_20260321091107599_MOVE0_0_move_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3b640": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@3b640", - "displayName": "", - "id": "3b640", - "name": "SPUM_20260321091107599_MOVE0_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ef93b": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@ef93b", - "displayName": "", - "id": "ef93b", - "name": "SPUM_20260321091107599_MOVE0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6a69a": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@6a69a", - "displayName": "", - "id": "6a69a", - "name": "SPUM_20260321091107599_MOVE0_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 651, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f1785": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@f1785", - "displayName": "", - "id": "f1785", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4c7a0": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@4c7a0", - "displayName": "", - "id": "4c7a0", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c3a49": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@c3a49", - "displayName": "", - "id": "c3a49", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4a810": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@4a810", - "displayName": "", - "id": "4a810", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "57b79": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@57b79", - "displayName": "", - "id": "57b79", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2eaad": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@2eaad", - "displayName": "", - "id": "2eaad", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4de6a": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@4de6a", - "displayName": "", - "id": "4de6a", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "45fe4": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@45fe4", - "displayName": "", - "id": "45fe4", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "28e48": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@28e48", - "displayName": "", - "id": "28e48", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "25d1f": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@25d1f", - "displayName": "", - "id": "25d1f", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-4", + "id": "36817", + "name": "m1_ATTACK3_1_Skill_Normal_0-4", "userData": { "trimThreshold": 1, "rotated": false, @@ -3722,8 +226,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -3733,12 +237,1070 @@ ], "subMetas": {} }, - "a44f3": { + "42228": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@a44f3", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@42228", "displayName": "", - "id": "a44f3", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-5", + "id": "42228", + "name": "m3_ATTACK0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "45631": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@45631", + "displayName": "", + "id": "45631", + "name": "m3_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "60764": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@60764", + "displayName": "", + "id": "60764", + "name": "m3_ATTACK4_0_Attack_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "72388": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@72388", + "displayName": "", + "id": "72388", + "name": "m2_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "78808": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@78808", + "displayName": "", + "id": "78808", + "name": "m3_ATTACK3_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "80881": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@80881", + "displayName": "", + "id": "80881", + "name": "m3_ATTACK3_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "83179": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@83179", + "displayName": "", + "id": "83179", + "name": "m4_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "88639": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@88639", + "displayName": "", + "id": "88639", + "name": "m2_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "89635": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@89635", + "displayName": "", + "id": "89635", + "name": "m3_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "92696": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@92696", + "displayName": "", + "id": "92696", + "name": "m2_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "95679": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@95679", + "displayName": "", + "id": "95679", + "name": "m1_ATTACK4_0_Attack_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "96754": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@96754", + "displayName": "", + "id": "96754", + "name": "m3_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "98658": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@98658", + "displayName": "", + "id": "98658", + "name": "m4_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3d34d": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@3d34d", + "displayName": "", + "id": "3d34d", + "name": "m1_ATTACK0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3bf0f": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@3bf0f", + "displayName": "", + "id": "3bf0f", + "name": "m1_ATTACK0_0_move_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e4cda": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@e4cda", + "displayName": "", + "id": "e4cda", + "name": "m1_ATTACK0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4e599": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@4e599", + "displayName": "", + "id": "4e599", + "name": "m1_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "989de": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@989de", + "displayName": "", + "id": "989de", + "name": "m1_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9265f": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@9265f", + "displayName": "", + "id": "9265f", + "name": "m1_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "68fc5": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@68fc5", + "displayName": "", + "id": "68fc5", + "name": "m1_ATTACK3_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a1d48": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@a1d48", + "displayName": "", + "id": "a1d48", + "name": "m1_ATTACK3_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a983e": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@a983e", + "displayName": "", + "id": "a983e", + "name": "m1_ATTACK3_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2a5f4": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@2a5f4", + "displayName": "", + "id": "2a5f4", + "name": "m1_ATTACK3_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7aa9f": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@7aa9f", + "displayName": "", + "id": "7aa9f", + "name": "m1_ATTACK3_1_Skill_Normal_0-5", "userData": { "trimThreshold": 1, "rotated": false, @@ -3768,8 +1330,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -3779,12 +1341,12 @@ ], "subMetas": {} }, - "29fe4": { + "b1056": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@29fe4", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@b1056", "displayName": "", - "id": "29fe4", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-6", + "id": "b1056", + "name": "m1_ATTACK3_1_Skill_Normal_0-6", "userData": { "trimThreshold": 1, "rotated": false, @@ -3814,8 +1376,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -3825,12 +1387,12 @@ ], "subMetas": {} }, - "b5d45": { + "fa84f": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@b5d45", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@fa84f", "displayName": "", - "id": "b5d45", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-7", + "id": "fa84f", + "name": "m1_ATTACK3_1_Skill_Normal_0-7", "userData": { "trimThreshold": 1, "rotated": false, @@ -3860,8 +1422,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -3871,12 +1433,288 @@ ], "subMetas": {} }, - "fc1f1": { + "6fcf7": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@fc1f1", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@6fcf7", "displayName": "", - "id": "fc1f1", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-8", + "id": "6fcf7", + "name": "m1_ATTACK3_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "67ab6": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@67ab6", + "displayName": "", + "id": "67ab6", + "name": "m1_ATTACK4_0_Attack_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d2d54": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@d2d54", + "displayName": "", + "id": "d2d54", + "name": "m1_ATTACK4_0_Attack_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9a742": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@9a742", + "displayName": "", + "id": "9a742", + "name": "m1_ATTACK4_0_Attack_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a6f79": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@a6f79", + "displayName": "", + "id": "a6f79", + "name": "m1_ATTACK4_0_Attack_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "84f52": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@84f52", + "displayName": "", + "id": "84f52", + "name": "m1_ATTACK4_0_Attack_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "235c1": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@235c1", + "displayName": "", + "id": "235c1", + "name": "m1_ATTACK4_0_Attack_Magic_0-6", "userData": { "trimThreshold": 1, "rotated": false, @@ -3906,8 +1744,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -3917,380 +1755,12 @@ ], "subMetas": {} }, - "854de": { + "37df6": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@854de", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@37df6", "displayName": "", - "id": "854de", - "name": "SPUM_20260321091107599_OTHER2_0_Die_0-9", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 131, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a3690": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@a3690", - "displayName": "", - "id": "a3690", - "name": "SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 261, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f53c7": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@f53c7", - "displayName": "", - "id": "f53c7", - "name": "SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fddf1": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@fddf1", - "displayName": "", - "id": "fddf1", - "name": "SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a78a2": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@a78a2", - "displayName": "", - "id": "a78a2", - "name": "SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb80d": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@eb80d", - "displayName": "", - "id": "eb80d", - "name": "SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-4", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2484d": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@2484d", - "displayName": "", - "id": "2484d", - "name": "SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "88a6d": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@88a6d", - "displayName": "", - "id": "88a6d", - "name": "SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 781, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f35d6": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@f35d6", - "displayName": "", - "id": "f35d6", - "name": "SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-7", + "id": "37df6", + "name": "m1_ATTACK4_0_Attack_Magic_0-7", "userData": { "trimThreshold": 1, "rotated": false, @@ -4320,8 +1790,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4331,12 +1801,104 @@ ], "subMetas": {} }, - "8d29e": { + "5e109": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@8d29e", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@5e109", "displayName": "", - "id": "8d29e", - "name": "SPUM_20260321092430202_ATTACK0_0_Attack_Normal_0-9", + "id": "5e109", + "name": "m1_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a5da0": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@a5da0", + "displayName": "", + "id": "a5da0", + "name": "m1_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "985a1": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@985a1", + "displayName": "", + "id": "985a1", + "name": "m1_IDLE0_0_idle_0-2", "userData": { "trimThreshold": 1, "rotated": false, @@ -4366,8 +1928,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4377,19 +1939,19 @@ ], "subMetas": {} }, - "f3f25": { + "01866": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@f3f25", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@01866", "displayName": "", - "id": "f3f25", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-0", + "id": "01866", + "name": "m1_IDLE0_0_idle_0-3", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 261, - "trimY": 781, + "trimX": 131, + "trimY": 1301, "width": 128, "height": 128, "rawWidth": 128, @@ -4412,8 +1974,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4423,58 +1985,12 @@ ], "subMetas": {} }, - "8fc74": { + "d86cc": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@8fc74", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@d86cc", "displayName": "", - "id": "8fc74", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 911, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eacdd": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@eacdd", - "displayName": "", - "id": "eacdd", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-2", + "id": "d86cc", + "name": "m1_IDLE0_0_idle_0-4", "userData": { "trimThreshold": 1, "rotated": false, @@ -4504,8 +2020,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4515,12 +2031,12 @@ ], "subMetas": {} }, - "07d97": { + "cfaf8": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@07d97", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@cfaf8", "displayName": "", - "id": "07d97", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-3", + "id": "cfaf8", + "name": "m1_IDLE0_0_idle_0-5", "userData": { "trimThreshold": 1, "rotated": false, @@ -4550,8 +2066,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4561,19 +2077,111 @@ ], "subMetas": {} }, - "c7e57": { + "cf247": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@c7e57", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@cf247", "displayName": "", - "id": "c7e57", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-5", + "id": "cf247", + "name": "m1_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "00511": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@00511", + "displayName": "", + "id": "00511", + "name": "m1_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "653a5": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@653a5", + "displayName": "", + "id": "653a5", + "name": "m1_IDLE0_0_idle_0-8", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 261, - "trimY": 911, + "trimY": 1, "width": 128, "height": 128, "rawWidth": 128, @@ -4596,8 +2204,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4607,19 +2215,19 @@ ], "subMetas": {} }, - "c9d43": { + "b42fa": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@c9d43", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@b42fa", "displayName": "", - "id": "c9d43", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-6", + "id": "b42fa", + "name": "m1_OTHER2_1_Skill_Magic_0-0", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 391, - "trimY": 911, + "trimX": 261, + "trimY": 131, "width": 128, "height": 128, "rawWidth": 128, @@ -4642,8 +2250,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4653,19 +2261,19 @@ ], "subMetas": {} }, - "b14ff": { + "c34ad": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@b14ff", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@c34ad", "displayName": "", - "id": "b14ff", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-7", + "id": "c34ad", + "name": "m1_OTHER2_1_Skill_Magic_0-1", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 521, - "trimY": 911, + "trimX": 261, + "trimY": 261, "width": 128, "height": 128, "rawWidth": 128, @@ -4688,8 +2296,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4699,19 +2307,19 @@ ], "subMetas": {} }, - "a7ded": { + "f40c9": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@a7ded", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@f40c9", "displayName": "", - "id": "a7ded", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-8", + "id": "f40c9", + "name": "m1_OTHER2_1_Skill_Magic_0-10", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 651, - "trimY": 911, + "trimX": 261, + "trimY": 1431, "width": 128, "height": 128, "rawWidth": 128, @@ -4734,8 +2342,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4745,19 +2353,19 @@ ], "subMetas": {} }, - "d93cc": { + "6c328": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@d93cc", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@6c328", "displayName": "", - "id": "d93cc", - "name": "SPUM_20260321092430202_ATTACK4_1_Skill_Normal_0-9", + "id": "6c328", + "name": "m1_OTHER2_1_Skill_Magic_0-11", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 781, - "trimY": 911, + "trimX": 261, + "trimY": 1561, "width": 128, "height": 128, "rawWidth": 128, @@ -4780,8 +2388,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4791,12 +2399,196 @@ ], "subMetas": {} }, - "992d7": { + "4d1d7": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@992d7", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@4d1d7", "displayName": "", - "id": "992d7", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-0", + "id": "4d1d7", + "name": "m1_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ea322": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@ea322", + "displayName": "", + "id": "ea322", + "name": "m1_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7d4fe": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@7d4fe", + "displayName": "", + "id": "7d4fe", + "name": "m1_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ceeba": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@ceeba", + "displayName": "", + "id": "ceeba", + "name": "m1_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bc818": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@bc818", + "displayName": "", + "id": "bc818", + "name": "m1_OTHER2_1_Skill_Magic_0-5", "userData": { "trimThreshold": 1, "rotated": false, @@ -4826,8 +2618,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4837,18 +2629,18 @@ ], "subMetas": {} }, - "87bb2": { + "d4e43": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@87bb2", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@d4e43", "displayName": "", - "id": "87bb2", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-1", + "id": "d4e43", + "name": "m1_OTHER2_1_Skill_Magic_0-6", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1041, + "trimX": 261, "trimY": 911, "width": 128, "height": 128, @@ -4872,8 +2664,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4883,18 +2675,18 @@ ], "subMetas": {} }, - "0103e": { + "00763": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@0103e", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@00763", "displayName": "", - "id": "0103e", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-10", + "id": "00763", + "name": "m1_OTHER2_1_Skill_Magic_0-7", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 651, + "trimX": 261, "trimY": 1041, "width": 128, "height": 128, @@ -4918,8 +2710,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -4929,242 +2721,12 @@ ], "subMetas": {} }, - "15f30": { + "376ad": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@15f30", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@376ad", "displayName": "", - "id": "15f30", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "49f94": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@49f94", - "displayName": "", - "id": "49f94", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e64b2": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@e64b2", - "displayName": "", - "id": "e64b2", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-13", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1041, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4d8d5": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@4d8d5", - "displayName": "", - "id": "4d8d5", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-14", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "426bc": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@426bc", - "displayName": "", - "id": "426bc", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1301, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7c3f7": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@7c3f7", - "displayName": "", - "id": "7c3f7", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-3", + "id": "376ad", + "name": "m1_OTHER2_1_Skill_Magic_0-8", "userData": { "trimThreshold": 1, "rotated": false, @@ -5194,8 +2756,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -5205,12 +2767,12 @@ ], "subMetas": {} }, - "b6c97": { + "4de99": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@b6c97", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@4de99", "displayName": "", - "id": "b6c97", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-4", + "id": "4de99", + "name": "m1_OTHER2_1_Skill_Magic_0-9", "userData": { "trimThreshold": 1, "rotated": false, @@ -5240,8 +2802,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -5251,19 +2813,19 @@ ], "subMetas": {} }, - "5fea8": { + "8c1c3": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@5fea8", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@8c1c3", "displayName": "", - "id": "5fea8", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-6", + "id": "8c1c3", + "name": "m2_ATTACK0_0_move_0-0", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 261, - "trimY": 1561, + "trimY": 1821, "width": 128, "height": 128, "rawWidth": 128, @@ -5286,8 +2848,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -5297,19 +2859,19 @@ ], "subMetas": {} }, - "2aea1": { + "c6e62": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@2aea1", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@c6e62", "displayName": "", - "id": "2aea1", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-7", + "id": "c6e62", + "name": "m2_ATTACK0_0_move_0-1", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 261, - "trimY": 1691, + "trimX": 391, + "trimY": 1, "width": 128, "height": 128, "rawWidth": 128, @@ -5332,8 +2894,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -5343,12 +2905,334 @@ ], "subMetas": {} }, - "d93df": { + "332ef": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@d93df", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@332ef", "displayName": "", - "id": "d93df", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-8", + "id": "332ef", + "name": "m2_ATTACK0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "202f2": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@202f2", + "displayName": "", + "id": "202f2", + "name": "m2_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5333f": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@5333f", + "displayName": "", + "id": "5333f", + "name": "m2_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "74d65": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@74d65", + "displayName": "", + "id": "74d65", + "name": "m2_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ff07f": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@ff07f", + "displayName": "", + "id": "ff07f", + "name": "m2_ATTACK3_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d6489": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@d6489", + "displayName": "", + "id": "d6489", + "name": "m2_ATTACK3_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "de56b": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@de56b", + "displayName": "", + "id": "de56b", + "name": "m2_ATTACK3_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8ba4f": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@8ba4f", + "displayName": "", + "id": "8ba4f", + "name": "m2_ATTACK3_1_Skill_Normal_0-3", "userData": { "trimThreshold": 1, "rotated": false, @@ -5378,8 +3262,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -5389,12 +3273,702 @@ ], "subMetas": {} }, - "baa95": { + "9d17e": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@baa95", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@9d17e", "displayName": "", - "id": "baa95", - "name": "SPUM_20260321092430202_DAMAGED0_1_Skill_Magic_0-9", + "id": "9d17e", + "name": "m2_ATTACK3_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7a890": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@7a890", + "displayName": "", + "id": "7a890", + "name": "m2_ATTACK3_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "97d09": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@97d09", + "displayName": "", + "id": "97d09", + "name": "m2_ATTACK3_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d16b3": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@d16b3", + "displayName": "", + "id": "d16b3", + "name": "m2_ATTACK3_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f52ac": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@f52ac", + "displayName": "", + "id": "f52ac", + "name": "m2_ATTACK3_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ff8b2": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@ff8b2", + "displayName": "", + "id": "ff8b2", + "name": "m2_ATTACK4_0_Attack_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 391, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "560e9": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@560e9", + "displayName": "", + "id": "560e9", + "name": "m2_ATTACK4_0_Attack_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "66cb3": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@66cb3", + "displayName": "", + "id": "66cb3", + "name": "m2_ATTACK4_0_Attack_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fa0d0": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@fa0d0", + "displayName": "", + "id": "fa0d0", + "name": "m2_ATTACK4_0_Attack_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6958b": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@6958b", + "displayName": "", + "id": "6958b", + "name": "m2_ATTACK4_0_Attack_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "720f1": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@720f1", + "displayName": "", + "id": "720f1", + "name": "m2_ATTACK4_0_Attack_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "06e4c": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@06e4c", + "displayName": "", + "id": "06e4c", + "name": "m2_ATTACK4_0_Attack_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e868c": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@e868c", + "displayName": "", + "id": "e868c", + "name": "m2_ATTACK4_0_Attack_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "db384": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@db384", + "displayName": "", + "id": "db384", + "name": "m2_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1da39": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@1da39", + "displayName": "", + "id": "1da39", + "name": "m2_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "17ba6": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@17ba6", + "displayName": "", + "id": "17ba6", + "name": "m2_IDLE0_0_idle_0-2", "userData": { "trimThreshold": 1, "rotated": false, @@ -5424,8 +3998,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -5435,288 +4009,12 @@ ], "subMetas": {} }, - "225ff": { + "c71a0": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@225ff", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@c71a0", "displayName": "", - "id": "225ff", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e4df6": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@e4df6", - "displayName": "", - "id": "e4df6", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3dd8d": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@3dd8d", - "displayName": "", - "id": "3dd8d", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a4892": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@a4892", - "displayName": "", - "id": "a4892", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 521, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4f22": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@c4f22", - "displayName": "", - "id": "c4f22", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-2", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7a557": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@7a557", - "displayName": "", - "id": "7a557", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-3", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 391, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3ca79": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@3ca79", - "displayName": "", - "id": "3ca79", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-4", + "id": "c71a0", + "name": "m2_IDLE0_0_idle_0-3", "userData": { "trimThreshold": 1, "rotated": false, @@ -5746,8 +4044,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -5757,111 +4055,19 @@ ], "subMetas": {} }, - "eeea1": { + "1a9c6": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@eeea1", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@1a9c6", "displayName": "", - "id": "eeea1", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e408e": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@e408e", - "displayName": "", - "id": "e408e", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1171, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a0b58": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@a0b58", - "displayName": "", - "id": "a0b58", - "name": "SPUM_20260321092430202_IDLE0_0_idle_0-9", + "id": "1a9c6", + "name": "m2_IDLE0_0_idle_0-5", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 521, - "trimY": 1301, + "trimY": 1431, "width": 128, "height": 128, "rawWidth": 128, @@ -5884,8 +4090,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -5895,12 +4101,58 @@ ], "subMetas": {} }, - "925e2": { + "27f8c": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@925e2", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@27f8c", "displayName": "", - "id": "925e2", - "name": "SPUM_20260321092430202_MOVE0_0_move_0-0", + "id": "27f8c", + "name": "m2_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f21c3": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@f21c3", + "displayName": "", + "id": "f21c3", + "name": "m2_IDLE0_0_idle_0-7", "userData": { "trimThreshold": 1, "rotated": false, @@ -5930,8 +4182,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -5941,18 +4193,1582 @@ ], "subMetas": {} }, - "5fb84": { + "518cb": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@5fb84", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@518cb", "displayName": "", - "id": "5fb84", - "name": "SPUM_20260321092430202_MOVE0_0_move_0-1", + "id": "518cb", + "name": "m2_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3183d": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@3183d", + "displayName": "", + "id": "3183d", + "name": "m2_OTHER2_1_Skill_Magic_0-0", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 651, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c70e7": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@c70e7", + "displayName": "", + "id": "c70e7", + "name": "m2_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a32de": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@a32de", + "displayName": "", + "id": "a32de", + "name": "m2_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d83c5": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@d83c5", + "displayName": "", + "id": "d83c5", + "name": "m2_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "69b3d": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@69b3d", + "displayName": "", + "id": "69b3d", + "name": "m2_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cdfdf": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@cdfdf", + "displayName": "", + "id": "cdfdf", + "name": "m2_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b9be4": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@b9be4", + "displayName": "", + "id": "b9be4", + "name": "m2_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c5869": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@c5869", + "displayName": "", + "id": "c5869", + "name": "m2_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "411ce": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@411ce", + "displayName": "", + "id": "411ce", + "name": "m2_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c9693": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@c9693", + "displayName": "", + "id": "c9693", + "name": "m2_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b83da": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@b83da", + "displayName": "", + "id": "b83da", + "name": "m2_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d934f": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@d934f", + "displayName": "", + "id": "d934f", + "name": "m3_ATTACK0_0_move_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 651, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4ddc3": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@4ddc3", + "displayName": "", + "id": "4ddc3", + "name": "m3_ATTACK0_0_move_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c61aa": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@c61aa", + "displayName": "", + "id": "c61aa", + "name": "m3_ATTACK0_0_move_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3e34b": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@3e34b", + "displayName": "", + "id": "3e34b", + "name": "m3_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "68d74": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@68d74", + "displayName": "", + "id": "68d74", + "name": "m3_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ecf3a": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@ecf3a", + "displayName": "", + "id": "ecf3a", + "name": "m3_ATTACK3_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9e3be": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@9e3be", + "displayName": "", + "id": "9e3be", + "name": "m3_ATTACK3_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e9325": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@e9325", + "displayName": "", + "id": "e9325", + "name": "m3_ATTACK3_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "afe6c": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@afe6c", + "displayName": "", + "id": "afe6c", + "name": "m3_ATTACK3_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5735e": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@5735e", + "displayName": "", + "id": "5735e", + "name": "m3_ATTACK3_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8e223": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@8e223", + "displayName": "", + "id": "8e223", + "name": "m3_ATTACK3_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "665ba": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@665ba", + "displayName": "", + "id": "665ba", + "name": "m3_ATTACK3_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "eb8bf": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@eb8bf", + "displayName": "", + "id": "eb8bf", + "name": "m3_ATTACK4_0_Attack_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "734b5": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@734b5", + "displayName": "", + "id": "734b5", + "name": "m3_ATTACK4_0_Attack_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6ea2c": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@6ea2c", + "displayName": "", + "id": "6ea2c", + "name": "m3_ATTACK4_0_Attack_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f6ec2": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@f6ec2", + "displayName": "", + "id": "f6ec2", + "name": "m3_ATTACK4_0_Attack_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1f521": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@1f521", + "displayName": "", + "id": "1f521", + "name": "m3_ATTACK4_0_Attack_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fc0f6": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@fc0f6", + "displayName": "", + "id": "fc0f6", + "name": "m3_ATTACK4_0_Attack_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e6b97": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@e6b97", + "displayName": "", + "id": "e6b97", + "name": "m3_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9775c": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@9775c", + "displayName": "", + "id": "9775c", + "name": "m3_IDLE0_0_idle_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5ea5b": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@5ea5b", + "displayName": "", + "id": "5ea5b", + "name": "m3_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ec093": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@ec093", + "displayName": "", + "id": "ec093", + "name": "m3_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d960a": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@d960a", + "displayName": "", + "id": "d960a", + "name": "m3_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, "trimY": 1301, "width": 128, "height": 128, @@ -5976,8 +5792,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -5987,12 +5803,242 @@ ], "subMetas": {} }, - "a4461": { + "01c93": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@a4461", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@01c93", "displayName": "", - "id": "a4461", - "name": "SPUM_20260321092430202_MOVE0_0_move_0-4", + "id": "01c93", + "name": "m3_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6ff46": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@6ff46", + "displayName": "", + "id": "6ff46", + "name": "m3_IDLE0_0_idle_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1691, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "de5dd": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@de5dd", + "displayName": "", + "id": "de5dd", + "name": "m3_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ede06": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@ede06", + "displayName": "", + "id": "ede06", + "name": "m3_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ba379": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@ba379", + "displayName": "", + "id": "ba379", + "name": "m3_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "289f4": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@289f4", + "displayName": "", + "id": "289f4", + "name": "m3_OTHER2_1_Skill_Magic_0-11", "userData": { "trimThreshold": 1, "rotated": false, @@ -6022,8 +6068,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -6033,426 +6079,12 @@ ], "subMetas": {} }, - "49ae4": { + "8961f": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@49ae4", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@8961f", "displayName": "", - "id": "49ae4", - "name": "SPUM_20260321092430202_MOVE0_0_move_0-5", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eedec": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@eedec", - "displayName": "", - "id": "eedec", - "name": "SPUM_20260321092430202_MOVE0_0_move_0-6", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1561, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7f8d3": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@7f8d3", - "displayName": "", - "id": "7f8d3", - "name": "SPUM_20260321092430202_MOVE0_0_move_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 651, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1b3bf": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@1b3bf", - "displayName": "", - "id": "1b3bf", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-0", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 781, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1d6f0": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@1d6f0", - "displayName": "", - "id": "1d6f0", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-1", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1431, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8bf62": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@8bf62", - "displayName": "", - "id": "8bf62", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-10", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7f862": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@7f862", - "displayName": "", - "id": "7f862", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-11", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7b0f2": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@7b0f2", - "displayName": "", - "id": "7b0f2", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-12", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5eee1": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@5eee1", - "displayName": "", - "id": "5eee1", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-15", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1041, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a7630": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@a7630", - "displayName": "", - "id": "a7630", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-2", + "id": "8961f", + "name": "m3_OTHER2_1_Skill_Magic_0-12", "userData": { "trimThreshold": 1, "rotated": false, @@ -6482,8 +6114,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -6493,19 +6125,19 @@ ], "subMetas": {} }, - "dabbd": { + "89fab": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@dabbd", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@89fab", "displayName": "", - "id": "dabbd", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-3", + "id": "89fab", + "name": "m3_OTHER2_1_Skill_Magic_0-3", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 781, - "trimY": 1561, + "trimX": 1041, + "trimY": 261, "width": 128, "height": 128, "rawWidth": 128, @@ -6528,8 +6160,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -6539,19 +6171,19 @@ ], "subMetas": {} }, - "ba136": { + "a0127": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@ba136", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@a0127", "displayName": "", - "id": "ba136", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-4", + "id": "a0127", + "name": "m3_OTHER2_1_Skill_Magic_0-4", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 781, - "trimY": 1691, + "trimX": 1041, + "trimY": 391, "width": 128, "height": 128, "rawWidth": 128, @@ -6574,8 +6206,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -6585,19 +6217,19 @@ ], "subMetas": {} }, - "24c14": { + "f6327": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@24c14", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@f6327", "displayName": "", - "id": "24c14", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-5", + "id": "f6327", + "name": "m3_OTHER2_1_Skill_Magic_0-5", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 911, - "trimY": 1561, + "trimX": 1041, + "trimY": 521, "width": 128, "height": 128, "rawWidth": 128, @@ -6620,8 +6252,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -6631,12 +6263,196 @@ ], "subMetas": {} }, - "eccc3": { + "a922e": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@eccc3", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@a922e", "displayName": "", - "id": "eccc3", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-6", + "id": "a922e", + "name": "m3_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "31ac6": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@31ac6", + "displayName": "", + "id": "31ac6", + "name": "m3_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a7ed2": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@a7ed2", + "displayName": "", + "id": "a7ed2", + "name": "m3_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "10ca1": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@10ca1", + "displayName": "", + "id": "10ca1", + "name": "m3_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b54c6": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@b54c6", + "displayName": "", + "id": "b54c6", + "name": "m4_ATTACK0_0_move_0-0", "userData": { "trimThreshold": 1, "rotated": false, @@ -6666,8 +6482,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -6677,58 +6493,12 @@ ], "subMetas": {} }, - "7320f": { + "9ffdf": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@7320f", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@9ffdf", "displayName": "", - "id": "7320f", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-7", - "userData": { - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 911, - "trimY": 1691, - "width": 128, - "height": 128, - "rawWidth": 128, - "rawHeight": 128, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "trimType": "auto" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d094b": { - "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@d094b", - "displayName": "", - "id": "d094b", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-8", + "id": "9ffdf", + "name": "m4_ATTACK0_0_move_0-1", "userData": { "trimThreshold": 1, "rotated": false, @@ -6758,8 +6528,8 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -6769,18 +6539,1168 @@ ], "subMetas": {} }, - "f46d9": { + "85f7f": { "importer": "sprite-frame", - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137@f46d9", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@85f7f", "displayName": "", - "id": "f46d9", - "name": "SPUM_20260321092430202_OTHER2_0_Die_0-9", + "id": "85f7f", + "name": "m4_ATTACK0_0_move_0-2", "userData": { "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, "trimX": 1041, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5783b": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@5783b", + "displayName": "", + "id": "5783b", + "name": "m4_ATTACK0_0_move_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a5e69": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@a5e69", + "displayName": "", + "id": "a5e69", + "name": "m4_ATTACK0_0_move_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7f19d": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@7f19d", + "displayName": "", + "id": "7f19d", + "name": "m4_ATTACK3_1_Skill_Normal_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1affa": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@1affa", + "displayName": "", + "id": "1affa", + "name": "m4_ATTACK3_1_Skill_Normal_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "27f01": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@27f01", + "displayName": "", + "id": "27f01", + "name": "m4_ATTACK3_1_Skill_Normal_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c9d2c": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@c9d2c", + "displayName": "", + "id": "c9d2c", + "name": "m4_ATTACK3_1_Skill_Normal_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "71fa3": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@71fa3", + "displayName": "", + "id": "71fa3", + "name": "m4_ATTACK3_1_Skill_Normal_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "74a6a": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@74a6a", + "displayName": "", + "id": "74a6a", + "name": "m4_ATTACK3_1_Skill_Normal_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fc777": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@fc777", + "displayName": "", + "id": "fc777", + "name": "m4_ATTACK3_1_Skill_Normal_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b966c": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@b966c", + "displayName": "", + "id": "b966c", + "name": "m4_ATTACK3_1_Skill_Normal_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8008f": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@8008f", + "displayName": "", + "id": "8008f", + "name": "m4_ATTACK3_1_Skill_Normal_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "17a5b": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@17a5b", + "displayName": "", + "id": "17a5b", + "name": "m4_ATTACK4_0_Attack_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1561, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8a58e": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@8a58e", + "displayName": "", + "id": "8a58e", + "name": "m4_ATTACK4_0_Attack_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "47bd5": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@47bd5", + "displayName": "", + "id": "47bd5", + "name": "m4_ATTACK4_0_Attack_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "466b2": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@466b2", + "displayName": "", + "id": "466b2", + "name": "m4_ATTACK4_0_Attack_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "31c2e": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@31c2e", + "displayName": "", + "id": "31c2e", + "name": "m4_ATTACK4_0_Attack_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "02107": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@02107", + "displayName": "", + "id": "02107", + "name": "m4_ATTACK4_0_Attack_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f7ff3": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@f7ff3", + "displayName": "", + "id": "f7ff3", + "name": "m4_IDLE0_0_idle_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "751da": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@751da", + "displayName": "", + "id": "751da", + "name": "m4_IDLE0_0_idle_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b88c8": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@b88c8", + "displayName": "", + "id": "b88c8", + "name": "m4_IDLE0_0_idle_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fe738": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@fe738", + "displayName": "", + "id": "fe738", + "name": "m4_IDLE0_0_idle_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9cd0e": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@9cd0e", + "displayName": "", + "id": "9cd0e", + "name": "m4_IDLE0_0_idle_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2a140": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@2a140", + "displayName": "", + "id": "2a140", + "name": "m4_IDLE0_0_idle_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0ec81": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@0ec81", + "displayName": "", + "id": "0ec81", + "name": "m4_IDLE0_0_idle_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1431, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c46a1": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@c46a1", + "displayName": "", + "id": "c46a1", + "name": "m4_OTHER2_1_Skill_Magic_0-0", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, "trimY": 1691, "width": 128, "height": 128, @@ -6804,8 +7724,560 @@ "maxPos": [] }, "isUuid": true, - "imageUuidOrDatabaseUri": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a", - "atlasUuid": "2200383b-5132-4374-98c2-84c8af6d4137", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5fd92": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@5fd92", + "displayName": "", + "id": "5fd92", + "name": "m4_OTHER2_1_Skill_Magic_0-1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1301, + "trimY": 1821, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fcb51": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@fcb51", + "displayName": "", + "id": "fcb51", + "name": "m4_OTHER2_1_Skill_Magic_0-10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1041, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3c683": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@3c683", + "displayName": "", + "id": "3c683", + "name": "m4_OTHER2_1_Skill_Magic_0-11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1171, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "624de": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@624de", + "displayName": "", + "id": "624de", + "name": "m4_OTHER2_1_Skill_Magic_0-12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1301, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "38b4e": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@38b4e", + "displayName": "", + "id": "38b4e", + "name": "m4_OTHER2_1_Skill_Magic_0-2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 1, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3c5ae": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@3c5ae", + "displayName": "", + "id": "3c5ae", + "name": "m4_OTHER2_1_Skill_Magic_0-3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 131, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7d44f": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@7d44f", + "displayName": "", + "id": "7d44f", + "name": "m4_OTHER2_1_Skill_Magic_0-4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 261, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e2d2a": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@e2d2a", + "displayName": "", + "id": "e2d2a", + "name": "m4_OTHER2_1_Skill_Magic_0-5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 391, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "82ea6": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@82ea6", + "displayName": "", + "id": "82ea6", + "name": "m4_OTHER2_1_Skill_Magic_0-6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 521, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3a15f": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@3a15f", + "displayName": "", + "id": "3a15f", + "name": "m4_OTHER2_1_Skill_Magic_0-7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 651, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5f27c": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@5f27c", + "displayName": "", + "id": "5f27c", + "name": "m4_OTHER2_1_Skill_Magic_0-8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 781, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "79ac9": { + "importer": "sprite-frame", + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60@79ac9", + "displayName": "", + "id": "79ac9", + "name": "m4_OTHER2_1_Skill_Magic_0-9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1431, + "trimY": 911, + "width": 128, + "height": 128, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "atlasUuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", "trimType": "auto" }, "ver": "1.0.12", @@ -6817,9 +8289,9 @@ } }, "userData": { - "atlasTextureName": "k4k56.png", + "atlasTextureName": "m1234.png", "format": 3, - "uuid": "2200383b-5132-4374-98c2-84c8af6d4137", - "textureUuid": "df51b04b-df93-47de-acd7-9148dbdfbef7@6c48a" + "uuid": "931f5403-9721-4639-a7e9-e3f15e11bc60", + "textureUuid": "b3480ba8-c727-42de-8769-928a194061d2@6c48a" } } diff --git a/assets/resources/game/heros/hero/m1234.png b/assets/resources/game/heros/hero/m1234.png new file mode 100644 index 00000000..e73641b4 Binary files /dev/null and b/assets/resources/game/heros/hero/m1234.png differ diff --git a/assets/resources/game/heros/hero/hm789.png.meta b/assets/resources/game/heros/hero/m1234.png.meta similarity index 71% rename from assets/resources/game/heros/hero/hm789.png.meta rename to assets/resources/game/heros/hero/m1234.png.meta index e7df54f6..c5e938ba 100644 --- a/assets/resources/game/heros/hero/hm789.png.meta +++ b/assets/resources/game/heros/hero/m1234.png.meta @@ -2,7 +2,7 @@ "ver": "1.0.27", "importer": "image", "imported": true, - "uuid": "514c3ee3-cc3c-4947-ae47-c29db8105d76", + "uuid": "b3480ba8-c727-42de-8769-928a194061d2", "files": [ ".json", ".png" @@ -10,8 +10,8 @@ "subMetas": { "6c48a": { "importer": "texture", - "uuid": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a", - "displayName": "hm789", + "uuid": "b3480ba8-c727-42de-8769-928a194061d2@6c48a", + "displayName": "m1234", "id": "6c48a", "name": "texture", "userData": { @@ -22,7 +22,7 @@ "mipfilter": "none", "anisotropy": 0, "isUuid": true, - "imageUuidOrDatabaseUri": "514c3ee3-cc3c-4947-ae47-c29db8105d76", + "imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2", "visible": false }, "ver": "1.0.22", @@ -37,6 +37,6 @@ "type": "texture", "hasAlpha": true, "fixAlphaTransparencyArtifacts": false, - "redirect": "514c3ee3-cc3c-4947-ae47-c29db8105d76@6c48a" + "redirect": "b3480ba8-c727-42de-8769-928a194061d2@6c48a" } } diff --git a/assets/resources/game/heros/hero/m2zr1.png b/assets/resources/game/heros/hero/m2zr1.png deleted file mode 100644 index 2e273ca3..00000000 Binary files a/assets/resources/game/heros/hero/m2zr1.png and /dev/null differ diff --git a/assets/resources/game/heros/hero/m2zr1.png.meta b/assets/resources/game/heros/hero/m2zr1.png.meta deleted file mode 100644 index 464c3e3f..00000000 --- a/assets/resources/game/heros/hero/m2zr1.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.27", - "importer": "image", - "imported": true, - "uuid": "723a1d65-fda4-46dc-be8d-ca730b97ca5e", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a", - "displayName": "m2zr1", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "723a1d65-fda4-46dc-be8d-ca730b97ca5e", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "type": "texture", - "hasAlpha": true, - "fixAlphaTransparencyArtifacts": false, - "redirect": "723a1d65-fda4-46dc-be8d-ca730b97ca5e@6c48a" - } -} diff --git a/assets/resources/game/heros/hh1.prefab b/assets/resources/game/heros/hh1.prefab deleted file mode 100644 index 4b197f11..00000000 --- a/assets/resources/game/heros/hh1.prefab +++ /dev/null @@ -1,790 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hh1", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hh1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@26070", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "13b4ced8-671e-444d-b78c-0de515ce10d1", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "8f095457-d3e1-408c-b1eb-427651b92c4c", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "1bc5a383-9f9c-4c25-b63c-16a4f840716b", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "1bc0bf72-d7e6-4322-a959-80d71c17cd34", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "288b2048-c72f-4d8f-9bfd-6ca4edc81cd6", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": { - "__uuid__": "8f095457-d3e1-408c-b1eb-427651b92c4c", - "__expectedType__": "cc.AnimationClip" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e4zlwtvd5P+aVOci53P5lC" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": -1.491, - "y": 103.583, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hh1.prefab.meta b/assets/resources/game/heros/hh1.prefab.meta deleted file mode 100644 index 293f0b13..00000000 --- a/assets/resources/game/heros/hh1.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "3e46181b-d95d-4d81-a6cc-fde927004da6", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hh1" - } -} diff --git a/assets/resources/game/heros/hk1.prefab b/assets/resources/game/heros/hk1.prefab deleted file mode 100644 index 7df63012..00000000 --- a/assets/resources/game/heros/hk1.prefab +++ /dev/null @@ -1,766 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hk1", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hk1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 35 - }, - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - } - ], - "_prefab": { - "__id__": 45 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@6ce90", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "6212c4e3-2e8f-4851-b21d-629731d0ff51", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "aa5b9fe9-25de-4ea2-bab3-0364834cba6d", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "0bc2f26c-2f61-4ee9-ada4-11d3abe24e16", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "704cf861-02fa-4e0b-b1d1-a3982a2b6a30", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "3c5ad97d-3d20-4bde-bf38-00d6fe1d41ba", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": { - "__uuid__": "6212c4e3-2e8f-4851-b21d-629731d0ff51", - "__expectedType__": "cc.AnimationClip" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "beiAlRY51OUIUqmpz9SWoV" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "37dKfpew9GJKWvYU5wnkWd", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 94.367, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 36 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "enabledContactListener": false, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hk1.prefab.meta b/assets/resources/game/heros/hk1.prefab.meta deleted file mode 100644 index 2877c9e4..00000000 --- a/assets/resources/game/heros/hk1.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "46166d94-ee3d-4405-a78d-3d1584bd4a95", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hk1" - } -} diff --git a/assets/resources/game/heros/hk2.prefab b/assets/resources/game/heros/hk2.prefab deleted file mode 100644 index 37cfe4d3..00000000 --- a/assets/resources/game/heros/hk2.prefab +++ /dev/null @@ -1,763 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hk2", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hk2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 35 - }, - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - } - ], - "_prefab": { - "__id__": 45 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@5860b", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "5272a0b9-046b-495d-82ef-769642dda72b", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "f76fc336-2a7e-4755-b32c-d74a6d0e116f", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "1d782f73-ad37-4b9e-a3f0-5a8feeff661f", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "d819f764-bda8-4272-aedf-cc4c48226ff2", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "1f6061e5-1955-41b9-842b-52ecc4f896e2", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "beiAlRY51OUIUqmpz9SWoV" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "37dKfpew9GJKWvYU5wnkWd", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 94.367, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 36 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "enabledContactListener": false, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hk2.prefab.meta b/assets/resources/game/heros/hk2.prefab.meta deleted file mode 100644 index af59d9fd..00000000 --- a/assets/resources/game/heros/hk2.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "90f3d950-f027-4a11-a035-9365b937bbfc", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hk2" - } -} diff --git a/assets/resources/game/heros/hk3.prefab b/assets/resources/game/heros/hk3.prefab deleted file mode 100644 index 9ad88976..00000000 --- a/assets/resources/game/heros/hk3.prefab +++ /dev/null @@ -1,763 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hk3", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hk3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 35 - }, - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - } - ], - "_prefab": { - "__id__": 45 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137@225ff", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "2200383b-5132-4374-98c2-84c8af6d4137", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "b7a1c300-a69b-4ba2-a79f-b392f54a990c", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "9bdd0427-554d-4da7-96a1-006e04b512b2", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "92f11240-9192-480d-93b2-5079156af0ec", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "fc73a22a-d7f6-4ce1-8fc6-ad12b72407c0", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "03850824-d187-41e1-8045-59a4d0d10c1a", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "beiAlRY51OUIUqmpz9SWoV" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "37dKfpew9GJKWvYU5wnkWd", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 94.367, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 36 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "enabledContactListener": false, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hk3.prefab.meta b/assets/resources/game/heros/hk3.prefab.meta deleted file mode 100644 index a2ec2eb0..00000000 --- a/assets/resources/game/heros/hk3.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "f2a2f4f4-b6b3-436a-8970-e7e5449ec290", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hk3" - } -} diff --git a/assets/resources/game/heros/hk4.prefab b/assets/resources/game/heros/hk4.prefab deleted file mode 100644 index 74582461..00000000 --- a/assets/resources/game/heros/hk4.prefab +++ /dev/null @@ -1,763 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hk4", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hk4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 35 - }, - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - } - ], - "_prefab": { - "__id__": 45 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784@beb3a", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "91033056-eac3-4ad0-b174-e072da964784", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "924e7e45-eb80-49e5-b786-6c501f6b5d35", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "f4687e0b-85dd-4254-b29a-79b89bf30e87", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "113e8728-16b3-4351-a1ad-dbe50418f3af", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "aa31e0ba-609f-445b-86eb-8f3a3e384f0f", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "48603b7f-a468-4261-83d1-3a48bb01c245", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "beiAlRY51OUIUqmpz9SWoV" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "37dKfpew9GJKWvYU5wnkWd", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 94.367, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 36 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "enabledContactListener": false, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hk4.prefab.meta b/assets/resources/game/heros/hk4.prefab.meta deleted file mode 100644 index d38d5b5f..00000000 --- a/assets/resources/game/heros/hk4.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "f9c23006-2a39-4115-9d63-a58b662dcf93", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hk4" - } -} diff --git a/assets/resources/game/heros/hm1.prefab b/assets/resources/game/heros/hm1.prefab deleted file mode 100644 index 05192eb9..00000000 --- a/assets/resources/game/heros/hm1.prefab +++ /dev/null @@ -1,790 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hm1", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hm1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5e109", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "7ccb2254-2d5e-49d3-9a73-2d91ff672efc", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "801ebce4-190d-4a5d-bbda-626df50dd770", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "8258b71d-4b0d-4478-9e65-bcdf18b9215b", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "b68f44b5-8737-4d5f-a8bf-48c550c5ffd1", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "67314b9b-d99c-4b7b-b9a2-7dfd2e6e7df4", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": { - "__uuid__": "801ebce4-190d-4a5d-bbda-626df50dd770", - "__expectedType__": "cc.AnimationClip" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4+2TVK9JC7p5lhflMVjuO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 110.506, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hm1.prefab.meta b/assets/resources/game/heros/hm1.prefab.meta deleted file mode 100644 index 6a374d71..00000000 --- a/assets/resources/game/heros/hm1.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "1ce5b515-a089-4bf6-8385-593e6b1e1b09", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hm1" - } -} diff --git a/assets/resources/game/heros/hm2.prefab b/assets/resources/game/heros/hm2.prefab deleted file mode 100644 index 40b48d92..00000000 --- a/assets/resources/game/heros/hm2.prefab +++ /dev/null @@ -1,790 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hm2", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hm2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@1299d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "de71b49f-6f46-4381-8a2e-6bb505904e0e", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "7c7f292b-ddb9-45b7-a4b4-074c6a86bdbf", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "82f5a777-fb40-4757-ba3e-7a3e96dc8d22", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "7dbb0c4a-79b1-4977-8ef6-b9535731faa5", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "c92d6a17-f579-4da3-a12f-bde8f5e46426", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": { - "__uuid__": "7c7f292b-ddb9-45b7-a4b4-074c6a86bdbf", - "__expectedType__": "cc.AnimationClip" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "35IEDlwu9Ch7vrlwlSwNdw" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 118.478, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 60, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hm2.prefab.meta b/assets/resources/game/heros/hm2.prefab.meta deleted file mode 100644 index e607a37e..00000000 --- a/assets/resources/game/heros/hm2.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "55a9eb8c-f3b3-43ff-9b5b-8857f090dff6", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hm2" - } -} diff --git a/assets/resources/game/heros/hm3.prefab b/assets/resources/game/heros/hm3.prefab deleted file mode 100644 index 90b2e4bd..00000000 --- a/assets/resources/game/heros/hm3.prefab +++ /dev/null @@ -1,787 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hm3", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hm3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@9235c", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "c3657922-b265-4928-afdf-ebff5d866372", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "b27a4be1-56c7-4868-8f25-0c100e1158a7", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "477894a1-fa8d-496f-9e0f-265b29ad9087", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "6588a261-411d-4d89-8907-eec03ea2a3a0", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "f77b3953-db93-4d64-b398-a0353bfa5f4a", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4+2TVK9JC7p5lhflMVjuO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 110.506, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hm3.prefab.meta b/assets/resources/game/heros/hm3.prefab.meta deleted file mode 100644 index 2c05de40..00000000 --- a/assets/resources/game/heros/hm3.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "e4fe92a2-bf45-41ae-8028-de454c0deaf8", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hm3" - } -} diff --git a/assets/resources/game/heros/hm5.prefab b/assets/resources/game/heros/hm5.prefab deleted file mode 100644 index 54032653..00000000 --- a/assets/resources/game/heros/hm5.prefab +++ /dev/null @@ -1,787 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hm5", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hm5", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5e109", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "51c55cb4-4874-4fb7-81bb-3f7cddb9b365", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "81dda814-6e20-4e23-b4f8-55fea574d6f8", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "abed7a31-a287-4666-9aca-8ee7730add74", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "d641171f-2a20-4f9a-be7f-21ee41d46887", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "34951eaa-9c69-44fe-8875-3e8871b19f19", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4+2TVK9JC7p5lhflMVjuO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 110.506, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hm5.prefab.meta b/assets/resources/game/heros/hm5.prefab.meta deleted file mode 100644 index f0a107a0..00000000 --- a/assets/resources/game/heros/hm5.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "6af871f8-bc54-4d8b-9e6d-ce8789d68bea", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hm5" - } -} diff --git a/assets/resources/game/heros/hm6.prefab b/assets/resources/game/heros/hm6.prefab deleted file mode 100644 index b422260b..00000000 --- a/assets/resources/game/heros/hm6.prefab +++ /dev/null @@ -1,787 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hm6", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hm6", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@cca32", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "3335957a-6ba6-4c04-8c6e-c392f64ae47d", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "3f7337c1-7574-4c27-b9d9-fad58df5d9a8", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "2a42adaa-a86c-4271-86ff-b21bbf570f06", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "af17361f-b4d8-47b6-8786-3fafc3be53f9", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "6f9bc36a-e805-4bda-92b1-9d46e119e17a", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4+2TVK9JC7p5lhflMVjuO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 110.506, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hm6.prefab.meta b/assets/resources/game/heros/hm6.prefab.meta deleted file mode 100644 index fea3c3c5..00000000 --- a/assets/resources/game/heros/hm6.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "9c11361f-7e7f-4686-a8f7-07b9b96d35a5", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hm6" - } -} diff --git a/assets/resources/game/heros/hm7.prefab b/assets/resources/game/heros/hm7.prefab deleted file mode 100644 index 8dc5fe6b..00000000 --- a/assets/resources/game/heros/hm7.prefab +++ /dev/null @@ -1,787 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hm7", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hm7", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d71e7", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "244b437a-7625-48e6-9377-7bb63b784dcc", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "2047567e-307a-4c8b-b179-32e340691361", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "ef999e38-d873-4d45-a748-35d435d66e7e", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "07225964-a1e6-412d-aab7-59214084505b", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "6da8ecd0-92d1-4bbe-b3d8-b27493cd1715", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4+2TVK9JC7p5lhflMVjuO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 110.506, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hm7.prefab.meta b/assets/resources/game/heros/hm7.prefab.meta deleted file mode 100644 index 30663d34..00000000 --- a/assets/resources/game/heros/hm7.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "173b763a-b8ee-4330-8a6d-4b99c7a17489", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hm7" - } -} diff --git a/assets/resources/game/heros/hm9.prefab b/assets/resources/game/heros/hm9.prefab deleted file mode 100644 index deab667b..00000000 --- a/assets/resources/game/heros/hm9.prefab +++ /dev/null @@ -1,787 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hm9", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hm9", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@f081b", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "b51bdbf8-c93c-4dcd-9796-0195848be5b3", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "a3d777a8-c77b-4423-a91b-4d56034028ab", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "587d2453-bca0-4d9c-bfd4-de47255c89d0", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "c5071f48-6ffe-4d58-a824-d87ca5d87c58", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "3ff9d16f-259c-4d41-9f9e-0bb9a91c5475", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4+2TVK9JC7p5lhflMVjuO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 110.506, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hm9.prefab.meta b/assets/resources/game/heros/hm9.prefab.meta deleted file mode 100644 index a278a486..00000000 --- a/assets/resources/game/heros/hm9.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "c8909581-c040-4c5b-95cd-2801503c9bea", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hm9" - } -} diff --git a/assets/resources/game/heros/hz1.prefab b/assets/resources/game/heros/hz1.prefab deleted file mode 100644 index e0028be7..00000000 --- a/assets/resources/game/heros/hz1.prefab +++ /dev/null @@ -1,787 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "hz1", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "hz1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 14 - }, - { - "__id__": 26 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - }, - { - "__id__": 39 - }, - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 11 - } - ], - "_prefab": { - "__id__": 13 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -25, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": -1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "4ba4awuz8tF34rq4TkZ9W1S", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "569pdLaDNB6qtHi4mnEa2p" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257@2f975", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": { - "__uuid__": "66e28322-67db-44f8-b67b-217a509fe257", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aapdDlt5hKmZ6bjST88uia" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "6584970d-6f08-4a6d-841c-ad607fdb5ba4", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "f1de4092-7e1d-4cce-862a-153a40ed5d65", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "fd55f78d-9794-461d-bdd7-32ed7eaad92e", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "b44da24e-66e0-4635-ad32-573a72f4796d", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "b10e5ef0-6f07-4cd9-97d6-1a9ce6e17e4c", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "406uXfKLJEbab+NVEqD1aS" - }, - { - "__type__": "954e43Y+QJHNIUpmqTCWA7A", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 12 - }, - "hitFlashMaterial": { - "__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810", - "__expectedType__": "cc.Material" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "71mx/IdRVDz5H8mz6V7BsE" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 15 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 14 - }, - "asset": { - "__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b", - "__expectedType__": "cc.Prefab" - }, - "fileId": "c46/YsCPVOJYA4mWEpNYRx", - "instance": { - "__id__": 16 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "3a1pwLAh1NkYnlDVrAFcnS", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 20 - }, - { - "__id__": 21 - }, - { - "__id__": 22 - }, - { - "__id__": 23 - }, - { - "__id__": 25 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_name" - ], - "value": "shielded" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "c46/YsCPVOJYA4mWEpNYRx" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_active" - ], - "value": false - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 24 - }, - "propertyPath": [ - "_contentSize" - ], - "value": { - "__type__": "cc.Size", - "width": 120, - "height": 100 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "63NP9yq3hEUKD/OZZZ5t7x" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 18 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.Node", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_prefab": { - "__id__": 27 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 26 - }, - "asset": { - "__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c", - "__expectedType__": "cc.Prefab" - }, - "fileId": "5fqU0L3/FOhKaco5UkHuWT", - "instance": { - "__id__": 28 - }, - "targetOverrides": null - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "69IAw7dThHvIlVtTfXOVMZ", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 29 - }, - { - "__id__": 31 - }, - { - "__id__": 32 - }, - { - "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_name" - ], - "value": "top" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5fqU0L3/FOhKaco5UkHuWT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 102.744, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 35 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10.531, - "z": 0 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "16MuhUBUpB2ZdBTYflEf1n" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 30 - }, - "propertyPath": [ - "_lscale" - ], - "value": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - } - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "anm": { - "__id__": 5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "debugMode": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "enabledContactListener": true, - "bullet": false, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a5vv6W0YtAmJB1hZwCBALm" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": true, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 50 - }, - "_size": { - "__type__": "cc.Size", - "width": 30, - "height": 100 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23j+p5lLdC+r4iKSVeLNM4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 26 - }, - { - "__id__": 14 - } - ] - } -] \ No newline at end of file diff --git a/assets/resources/game/heros/hz1.prefab.meta b/assets/resources/game/heros/hz1.prefab.meta deleted file mode 100644 index 1eb46bc4..00000000 --- a/assets/resources/game/heros/hz1.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "3f939761-8c64-4cb0-a0a4-6cf454ec4c85", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "hz1" - } -} diff --git a/assets/resources/game/heros/mon.meta b/assets/resources/game/heros/mon.meta new file mode 100644 index 00000000..268f6b85 --- /dev/null +++ b/assets/resources/game/heros/mon.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "d77a9022-a1b7-4301-8af0-1f70ad5cd1aa", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/game/heros/hero/mb123.plist b/assets/resources/game/heros/mon/mb123.plist similarity index 100% rename from assets/resources/game/heros/hero/mb123.plist rename to assets/resources/game/heros/mon/mb123.plist diff --git a/assets/resources/game/heros/hero/mb123.plist.meta b/assets/resources/game/heros/mon/mb123.plist.meta similarity index 100% rename from assets/resources/game/heros/hero/mb123.plist.meta rename to assets/resources/game/heros/mon/mb123.plist.meta diff --git a/assets/resources/game/heros/hero/mb123.png b/assets/resources/game/heros/mon/mb123.png similarity index 100% rename from assets/resources/game/heros/hero/mb123.png rename to assets/resources/game/heros/mon/mb123.png diff --git a/assets/resources/game/heros/hero/mb123.png.meta b/assets/resources/game/heros/mon/mb123.png.meta similarity index 100% rename from assets/resources/game/heros/hero/mb123.png.meta rename to assets/resources/game/heros/mon/mb123.png.meta diff --git a/assets/resources/game/heros/hero/mb456.plist b/assets/resources/game/heros/mon/mb456.plist similarity index 100% rename from assets/resources/game/heros/hero/mb456.plist rename to assets/resources/game/heros/mon/mb456.plist diff --git a/assets/resources/game/heros/hero/mb456.plist.meta b/assets/resources/game/heros/mon/mb456.plist.meta similarity index 100% rename from assets/resources/game/heros/hero/mb456.plist.meta rename to assets/resources/game/heros/mon/mb456.plist.meta diff --git a/assets/resources/game/heros/hero/mb456.png b/assets/resources/game/heros/mon/mb456.png similarity index 100% rename from assets/resources/game/heros/hero/mb456.png rename to assets/resources/game/heros/mon/mb456.png diff --git a/assets/resources/game/heros/hero/mb456.png.meta b/assets/resources/game/heros/mon/mb456.png.meta similarity index 100% rename from assets/resources/game/heros/hero/mb456.png.meta rename to assets/resources/game/heros/mon/mb456.png.meta diff --git a/assets/resources/game/heros/hero/mo1-2.plist b/assets/resources/game/heros/mon/mo1-2.plist similarity index 100% rename from assets/resources/game/heros/hero/mo1-2.plist rename to assets/resources/game/heros/mon/mo1-2.plist diff --git a/assets/resources/game/heros/hero/mo1-2.plist.meta b/assets/resources/game/heros/mon/mo1-2.plist.meta similarity index 100% rename from assets/resources/game/heros/hero/mo1-2.plist.meta rename to assets/resources/game/heros/mon/mo1-2.plist.meta diff --git a/assets/resources/game/heros/hero/mo1-2.png b/assets/resources/game/heros/mon/mo1-2.png similarity index 100% rename from assets/resources/game/heros/hero/mo1-2.png rename to assets/resources/game/heros/mon/mo1-2.png diff --git a/assets/resources/game/heros/hero/mo1-2.png.meta b/assets/resources/game/heros/mon/mo1-2.png.meta similarity index 100% rename from assets/resources/game/heros/hero/mo1-2.png.meta rename to assets/resources/game/heros/mon/mo1-2.png.meta diff --git a/assets/resources/game/heros/hero/mo1.meta b/assets/resources/game/heros/mon/mo1.meta similarity index 100% rename from assets/resources/game/heros/hero/mo1.meta rename to assets/resources/game/heros/mon/mo1.meta diff --git a/assets/resources/game/heros/hero/mo1/atk0.anim b/assets/resources/game/heros/mon/mo1/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo1/atk0.anim rename to assets/resources/game/heros/mon/mo1/atk0.anim diff --git a/assets/resources/game/heros/hero/mo1/atk0.anim.meta b/assets/resources/game/heros/mon/mo1/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo1/atk0.anim.meta rename to assets/resources/game/heros/mon/mo1/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mo1/idle.anim b/assets/resources/game/heros/mon/mo1/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mo1/idle.anim rename to assets/resources/game/heros/mon/mo1/idle.anim diff --git a/assets/resources/game/heros/hero/mo1/idle.anim.meta b/assets/resources/game/heros/mon/mo1/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo1/idle.anim.meta rename to assets/resources/game/heros/mon/mo1/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mo1/max0.anim b/assets/resources/game/heros/mon/mo1/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo1/max0.anim rename to assets/resources/game/heros/mon/mo1/max0.anim diff --git a/assets/resources/game/heros/hero/mo1/max0.anim.meta b/assets/resources/game/heros/mon/mo1/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo1/max0.anim.meta rename to assets/resources/game/heros/mon/mo1/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mo1/max1.anim b/assets/resources/game/heros/mon/mo1/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mo1/max1.anim rename to assets/resources/game/heros/mon/mo1/max1.anim diff --git a/assets/resources/game/heros/hero/mo1/max1.anim.meta b/assets/resources/game/heros/mon/mo1/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo1/max1.anim.meta rename to assets/resources/game/heros/mon/mo1/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mo1/move.anim b/assets/resources/game/heros/mon/mo1/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mo1/move.anim rename to assets/resources/game/heros/mon/mo1/move.anim diff --git a/assets/resources/game/heros/hero/mo1/move.anim.meta b/assets/resources/game/heros/mon/mo1/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo1/move.anim.meta rename to assets/resources/game/heros/mon/mo1/move.anim.meta diff --git a/assets/resources/game/heros/hero/mo2.meta b/assets/resources/game/heros/mon/mo2.meta similarity index 100% rename from assets/resources/game/heros/hero/mo2.meta rename to assets/resources/game/heros/mon/mo2.meta diff --git a/assets/resources/game/heros/hero/mo2/atk0.anim b/assets/resources/game/heros/mon/mo2/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo2/atk0.anim rename to assets/resources/game/heros/mon/mo2/atk0.anim diff --git a/assets/resources/game/heros/hero/mo2/atk0.anim.meta b/assets/resources/game/heros/mon/mo2/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo2/atk0.anim.meta rename to assets/resources/game/heros/mon/mo2/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mo2/dead.anim b/assets/resources/game/heros/mon/mo2/dead.anim similarity index 100% rename from assets/resources/game/heros/hero/mo2/dead.anim rename to assets/resources/game/heros/mon/mo2/dead.anim diff --git a/assets/resources/game/heros/hero/mo2/dead.anim.meta b/assets/resources/game/heros/mon/mo2/dead.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo2/dead.anim.meta rename to assets/resources/game/heros/mon/mo2/dead.anim.meta diff --git a/assets/resources/game/heros/hero/mo2/idle.anim b/assets/resources/game/heros/mon/mo2/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mo2/idle.anim rename to assets/resources/game/heros/mon/mo2/idle.anim diff --git a/assets/resources/game/heros/hero/mo2/idle.anim.meta b/assets/resources/game/heros/mon/mo2/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo2/idle.anim.meta rename to assets/resources/game/heros/mon/mo2/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mo2/max0.anim b/assets/resources/game/heros/mon/mo2/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo2/max0.anim rename to assets/resources/game/heros/mon/mo2/max0.anim diff --git a/assets/resources/game/heros/hero/mo2/max0.anim.meta b/assets/resources/game/heros/mon/mo2/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo2/max0.anim.meta rename to assets/resources/game/heros/mon/mo2/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mo2/max1.anim b/assets/resources/game/heros/mon/mo2/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mo2/max1.anim rename to assets/resources/game/heros/mon/mo2/max1.anim diff --git a/assets/resources/game/heros/hero/mo2/max1.anim.meta b/assets/resources/game/heros/mon/mo2/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo2/max1.anim.meta rename to assets/resources/game/heros/mon/mo2/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mo2/move.anim b/assets/resources/game/heros/mon/mo2/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mo2/move.anim rename to assets/resources/game/heros/mon/mo2/move.anim diff --git a/assets/resources/game/heros/hero/mo2/move.anim.meta b/assets/resources/game/heros/mon/mo2/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo2/move.anim.meta rename to assets/resources/game/heros/mon/mo2/move.anim.meta diff --git a/assets/resources/game/heros/hero/mo3.meta b/assets/resources/game/heros/mon/mo3.meta similarity index 100% rename from assets/resources/game/heros/hero/mo3.meta rename to assets/resources/game/heros/mon/mo3.meta diff --git a/assets/resources/game/heros/hero/mo3/atk0.anim b/assets/resources/game/heros/mon/mo3/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo3/atk0.anim rename to assets/resources/game/heros/mon/mo3/atk0.anim diff --git a/assets/resources/game/heros/hero/mo3/atk0.anim.meta b/assets/resources/game/heros/mon/mo3/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo3/atk0.anim.meta rename to assets/resources/game/heros/mon/mo3/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mo3/idle.anim b/assets/resources/game/heros/mon/mo3/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mo3/idle.anim rename to assets/resources/game/heros/mon/mo3/idle.anim diff --git a/assets/resources/game/heros/hero/mo3/idle.anim.meta b/assets/resources/game/heros/mon/mo3/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo3/idle.anim.meta rename to assets/resources/game/heros/mon/mo3/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mo3/max0.anim b/assets/resources/game/heros/mon/mo3/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo3/max0.anim rename to assets/resources/game/heros/mon/mo3/max0.anim diff --git a/assets/resources/game/heros/hero/mo3/max0.anim.meta b/assets/resources/game/heros/mon/mo3/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo3/max0.anim.meta rename to assets/resources/game/heros/mon/mo3/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mo3/max1.anim b/assets/resources/game/heros/mon/mo3/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mo3/max1.anim rename to assets/resources/game/heros/mon/mo3/max1.anim diff --git a/assets/resources/game/heros/hero/mo3/max1.anim.meta b/assets/resources/game/heros/mon/mo3/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo3/max1.anim.meta rename to assets/resources/game/heros/mon/mo3/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mo3/move.anim b/assets/resources/game/heros/mon/mo3/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mo3/move.anim rename to assets/resources/game/heros/mon/mo3/move.anim diff --git a/assets/resources/game/heros/hero/mo3/move.anim.meta b/assets/resources/game/heros/mon/mo3/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo3/move.anim.meta rename to assets/resources/game/heros/mon/mo3/move.anim.meta diff --git a/assets/resources/game/heros/hero/mo4.meta b/assets/resources/game/heros/mon/mo4.meta similarity index 100% rename from assets/resources/game/heros/hero/mo4.meta rename to assets/resources/game/heros/mon/mo4.meta diff --git a/assets/resources/game/heros/hero/mo4/atk0.anim b/assets/resources/game/heros/mon/mo4/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo4/atk0.anim rename to assets/resources/game/heros/mon/mo4/atk0.anim diff --git a/assets/resources/game/heros/hero/mo4/atk0.anim.meta b/assets/resources/game/heros/mon/mo4/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo4/atk0.anim.meta rename to assets/resources/game/heros/mon/mo4/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mo4/idle.anim b/assets/resources/game/heros/mon/mo4/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mo4/idle.anim rename to assets/resources/game/heros/mon/mo4/idle.anim diff --git a/assets/resources/game/heros/hero/mo4/idle.anim.meta b/assets/resources/game/heros/mon/mo4/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo4/idle.anim.meta rename to assets/resources/game/heros/mon/mo4/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mo4/max0.anim b/assets/resources/game/heros/mon/mo4/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo4/max0.anim rename to assets/resources/game/heros/mon/mo4/max0.anim diff --git a/assets/resources/game/heros/hero/mo4/max0.anim.meta b/assets/resources/game/heros/mon/mo4/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo4/max0.anim.meta rename to assets/resources/game/heros/mon/mo4/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mo4/max1.anim b/assets/resources/game/heros/mon/mo4/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mo4/max1.anim rename to assets/resources/game/heros/mon/mo4/max1.anim diff --git a/assets/resources/game/heros/hero/mo4/max1.anim.meta b/assets/resources/game/heros/mon/mo4/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo4/max1.anim.meta rename to assets/resources/game/heros/mon/mo4/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mo4/move.anim b/assets/resources/game/heros/mon/mo4/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mo4/move.anim rename to assets/resources/game/heros/mon/mo4/move.anim diff --git a/assets/resources/game/heros/hero/mo4/move.anim.meta b/assets/resources/game/heros/mon/mo4/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo4/move.anim.meta rename to assets/resources/game/heros/mon/mo4/move.anim.meta diff --git a/assets/resources/game/heros/hero/mo5.meta b/assets/resources/game/heros/mon/mo5.meta similarity index 100% rename from assets/resources/game/heros/hero/mo5.meta rename to assets/resources/game/heros/mon/mo5.meta diff --git a/assets/resources/game/heros/hero/mo5/atk0.anim b/assets/resources/game/heros/mon/mo5/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo5/atk0.anim rename to assets/resources/game/heros/mon/mo5/atk0.anim diff --git a/assets/resources/game/heros/hero/mo5/atk0.anim.meta b/assets/resources/game/heros/mon/mo5/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo5/atk0.anim.meta rename to assets/resources/game/heros/mon/mo5/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mo5/idle.anim b/assets/resources/game/heros/mon/mo5/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mo5/idle.anim rename to assets/resources/game/heros/mon/mo5/idle.anim diff --git a/assets/resources/game/heros/hero/mo5/idle.anim.meta b/assets/resources/game/heros/mon/mo5/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo5/idle.anim.meta rename to assets/resources/game/heros/mon/mo5/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mo5/max0.anim b/assets/resources/game/heros/mon/mo5/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo5/max0.anim rename to assets/resources/game/heros/mon/mo5/max0.anim diff --git a/assets/resources/game/heros/hero/mo5/max0.anim.meta b/assets/resources/game/heros/mon/mo5/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo5/max0.anim.meta rename to assets/resources/game/heros/mon/mo5/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mo5/max1.anim b/assets/resources/game/heros/mon/mo5/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mo5/max1.anim rename to assets/resources/game/heros/mon/mo5/max1.anim diff --git a/assets/resources/game/heros/hero/mo5/max1.anim.meta b/assets/resources/game/heros/mon/mo5/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo5/max1.anim.meta rename to assets/resources/game/heros/mon/mo5/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mo5/move.anim b/assets/resources/game/heros/mon/mo5/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mo5/move.anim rename to assets/resources/game/heros/mon/mo5/move.anim diff --git a/assets/resources/game/heros/hero/mo5/move.anim.meta b/assets/resources/game/heros/mon/mo5/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo5/move.anim.meta rename to assets/resources/game/heros/mon/mo5/move.anim.meta diff --git a/assets/resources/game/heros/hero/mo6.meta b/assets/resources/game/heros/mon/mo6.meta similarity index 100% rename from assets/resources/game/heros/hero/mo6.meta rename to assets/resources/game/heros/mon/mo6.meta diff --git a/assets/resources/game/heros/hero/mo6/atk0.anim b/assets/resources/game/heros/mon/mo6/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo6/atk0.anim rename to assets/resources/game/heros/mon/mo6/atk0.anim diff --git a/assets/resources/game/heros/hero/mo6/atk0.anim.meta b/assets/resources/game/heros/mon/mo6/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo6/atk0.anim.meta rename to assets/resources/game/heros/mon/mo6/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mo6/dead.anim b/assets/resources/game/heros/mon/mo6/dead.anim similarity index 100% rename from assets/resources/game/heros/hero/mo6/dead.anim rename to assets/resources/game/heros/mon/mo6/dead.anim diff --git a/assets/resources/game/heros/hero/mo6/dead.anim.meta b/assets/resources/game/heros/mon/mo6/dead.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo6/dead.anim.meta rename to assets/resources/game/heros/mon/mo6/dead.anim.meta diff --git a/assets/resources/game/heros/hero/mo6/idle.anim b/assets/resources/game/heros/mon/mo6/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mo6/idle.anim rename to assets/resources/game/heros/mon/mo6/idle.anim diff --git a/assets/resources/game/heros/hero/mo6/idle.anim.meta b/assets/resources/game/heros/mon/mo6/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo6/idle.anim.meta rename to assets/resources/game/heros/mon/mo6/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mo6/max0.anim b/assets/resources/game/heros/mon/mo6/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mo6/max0.anim rename to assets/resources/game/heros/mon/mo6/max0.anim diff --git a/assets/resources/game/heros/hero/mo6/max0.anim.meta b/assets/resources/game/heros/mon/mo6/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo6/max0.anim.meta rename to assets/resources/game/heros/mon/mo6/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mo6/max1.anim b/assets/resources/game/heros/mon/mo6/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mo6/max1.anim rename to assets/resources/game/heros/mon/mo6/max1.anim diff --git a/assets/resources/game/heros/hero/mo6/max1.anim.meta b/assets/resources/game/heros/mon/mo6/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo6/max1.anim.meta rename to assets/resources/game/heros/mon/mo6/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mo6/move.anim b/assets/resources/game/heros/mon/mo6/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mo6/move.anim rename to assets/resources/game/heros/mon/mo6/move.anim diff --git a/assets/resources/game/heros/hero/mo6/move.anim.meta b/assets/resources/game/heros/mon/mo6/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mo6/move.anim.meta rename to assets/resources/game/heros/mon/mo6/move.anim.meta diff --git a/assets/resources/game/heros/hero/moud.plist b/assets/resources/game/heros/mon/moud.plist similarity index 100% rename from assets/resources/game/heros/hero/moud.plist rename to assets/resources/game/heros/mon/moud.plist diff --git a/assets/resources/game/heros/hero/moud.plist.meta b/assets/resources/game/heros/mon/moud.plist.meta similarity index 100% rename from assets/resources/game/heros/hero/moud.plist.meta rename to assets/resources/game/heros/mon/moud.plist.meta diff --git a/assets/resources/game/heros/hero/moud.png b/assets/resources/game/heros/mon/moud.png similarity index 100% rename from assets/resources/game/heros/hero/moud.png rename to assets/resources/game/heros/mon/moud.png diff --git a/assets/resources/game/heros/hero/moud.png.meta b/assets/resources/game/heros/mon/moud.png.meta similarity index 100% rename from assets/resources/game/heros/hero/moud.png.meta rename to assets/resources/game/heros/mon/moud.png.meta diff --git a/assets/resources/game/heros/hero/mud1.meta b/assets/resources/game/heros/mon/mud1.meta similarity index 100% rename from assets/resources/game/heros/hero/mud1.meta rename to assets/resources/game/heros/mon/mud1.meta diff --git a/assets/resources/game/heros/hero/mud1/atk0.anim b/assets/resources/game/heros/mon/mud1/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mud1/atk0.anim rename to assets/resources/game/heros/mon/mud1/atk0.anim diff --git a/assets/resources/game/heros/hero/mud1/atk0.anim.meta b/assets/resources/game/heros/mon/mud1/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud1/atk0.anim.meta rename to assets/resources/game/heros/mon/mud1/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mud1/idle.anim b/assets/resources/game/heros/mon/mud1/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mud1/idle.anim rename to assets/resources/game/heros/mon/mud1/idle.anim diff --git a/assets/resources/game/heros/hero/mud1/idle.anim.meta b/assets/resources/game/heros/mon/mud1/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud1/idle.anim.meta rename to assets/resources/game/heros/mon/mud1/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mud1/max0.anim b/assets/resources/game/heros/mon/mud1/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mud1/max0.anim rename to assets/resources/game/heros/mon/mud1/max0.anim diff --git a/assets/resources/game/heros/hero/mud1/max0.anim.meta b/assets/resources/game/heros/mon/mud1/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud1/max0.anim.meta rename to assets/resources/game/heros/mon/mud1/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mud1/max1.anim b/assets/resources/game/heros/mon/mud1/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mud1/max1.anim rename to assets/resources/game/heros/mon/mud1/max1.anim diff --git a/assets/resources/game/heros/hero/mud1/max1.anim.meta b/assets/resources/game/heros/mon/mud1/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud1/max1.anim.meta rename to assets/resources/game/heros/mon/mud1/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mud1/move.anim b/assets/resources/game/heros/mon/mud1/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mud1/move.anim rename to assets/resources/game/heros/mon/mud1/move.anim diff --git a/assets/resources/game/heros/hero/mud1/move.anim.meta b/assets/resources/game/heros/mon/mud1/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud1/move.anim.meta rename to assets/resources/game/heros/mon/mud1/move.anim.meta diff --git a/assets/resources/game/heros/hero/mud2.meta b/assets/resources/game/heros/mon/mud2.meta similarity index 100% rename from assets/resources/game/heros/hero/mud2.meta rename to assets/resources/game/heros/mon/mud2.meta diff --git a/assets/resources/game/heros/hero/mud2/atk0.anim b/assets/resources/game/heros/mon/mud2/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mud2/atk0.anim rename to assets/resources/game/heros/mon/mud2/atk0.anim diff --git a/assets/resources/game/heros/hero/mud2/atk0.anim.meta b/assets/resources/game/heros/mon/mud2/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud2/atk0.anim.meta rename to assets/resources/game/heros/mon/mud2/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mud2/idle.anim b/assets/resources/game/heros/mon/mud2/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mud2/idle.anim rename to assets/resources/game/heros/mon/mud2/idle.anim diff --git a/assets/resources/game/heros/hero/mud2/idle.anim.meta b/assets/resources/game/heros/mon/mud2/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud2/idle.anim.meta rename to assets/resources/game/heros/mon/mud2/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mud2/max0.anim b/assets/resources/game/heros/mon/mud2/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mud2/max0.anim rename to assets/resources/game/heros/mon/mud2/max0.anim diff --git a/assets/resources/game/heros/hero/mud2/max0.anim.meta b/assets/resources/game/heros/mon/mud2/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud2/max0.anim.meta rename to assets/resources/game/heros/mon/mud2/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mud2/max1.anim b/assets/resources/game/heros/mon/mud2/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mud2/max1.anim rename to assets/resources/game/heros/mon/mud2/max1.anim diff --git a/assets/resources/game/heros/hero/mud2/max1.anim.meta b/assets/resources/game/heros/mon/mud2/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud2/max1.anim.meta rename to assets/resources/game/heros/mon/mud2/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mud2/move.anim b/assets/resources/game/heros/mon/mud2/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mud2/move.anim rename to assets/resources/game/heros/mon/mud2/move.anim diff --git a/assets/resources/game/heros/hero/mud2/move.anim.meta b/assets/resources/game/heros/mon/mud2/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud2/move.anim.meta rename to assets/resources/game/heros/mon/mud2/move.anim.meta diff --git a/assets/resources/game/heros/hero/mud3.meta b/assets/resources/game/heros/mon/mud3.meta similarity index 100% rename from assets/resources/game/heros/hero/mud3.meta rename to assets/resources/game/heros/mon/mud3.meta diff --git a/assets/resources/game/heros/hero/mud3/atk0.anim b/assets/resources/game/heros/mon/mud3/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mud3/atk0.anim rename to assets/resources/game/heros/mon/mud3/atk0.anim diff --git a/assets/resources/game/heros/hero/mud3/atk0.anim.meta b/assets/resources/game/heros/mon/mud3/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud3/atk0.anim.meta rename to assets/resources/game/heros/mon/mud3/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mud3/idle.anim b/assets/resources/game/heros/mon/mud3/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mud3/idle.anim rename to assets/resources/game/heros/mon/mud3/idle.anim diff --git a/assets/resources/game/heros/hero/mud3/idle.anim.meta b/assets/resources/game/heros/mon/mud3/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud3/idle.anim.meta rename to assets/resources/game/heros/mon/mud3/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mud3/max0.anim b/assets/resources/game/heros/mon/mud3/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mud3/max0.anim rename to assets/resources/game/heros/mon/mud3/max0.anim diff --git a/assets/resources/game/heros/hero/mud3/max0.anim.meta b/assets/resources/game/heros/mon/mud3/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud3/max0.anim.meta rename to assets/resources/game/heros/mon/mud3/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mud3/max1.anim b/assets/resources/game/heros/mon/mud3/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mud3/max1.anim rename to assets/resources/game/heros/mon/mud3/max1.anim diff --git a/assets/resources/game/heros/hero/mud3/max1.anim.meta b/assets/resources/game/heros/mon/mud3/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud3/max1.anim.meta rename to assets/resources/game/heros/mon/mud3/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mud3/move.anim b/assets/resources/game/heros/mon/mud3/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mud3/move.anim rename to assets/resources/game/heros/mon/mud3/move.anim diff --git a/assets/resources/game/heros/hero/mud3/move.anim.meta b/assets/resources/game/heros/mon/mud3/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud3/move.anim.meta rename to assets/resources/game/heros/mon/mud3/move.anim.meta diff --git a/assets/resources/game/heros/hero/mud4.meta b/assets/resources/game/heros/mon/mud4.meta similarity index 100% rename from assets/resources/game/heros/hero/mud4.meta rename to assets/resources/game/heros/mon/mud4.meta diff --git a/assets/resources/game/heros/hero/mud4.plist b/assets/resources/game/heros/mon/mud4.plist similarity index 100% rename from assets/resources/game/heros/hero/mud4.plist rename to assets/resources/game/heros/mon/mud4.plist diff --git a/assets/resources/game/heros/hero/mud4.plist.meta b/assets/resources/game/heros/mon/mud4.plist.meta similarity index 100% rename from assets/resources/game/heros/hero/mud4.plist.meta rename to assets/resources/game/heros/mon/mud4.plist.meta diff --git a/assets/resources/game/heros/hero/mud4.png b/assets/resources/game/heros/mon/mud4.png similarity index 100% rename from assets/resources/game/heros/hero/mud4.png rename to assets/resources/game/heros/mon/mud4.png diff --git a/assets/resources/game/heros/hero/mud4.png.meta b/assets/resources/game/heros/mon/mud4.png.meta similarity index 100% rename from assets/resources/game/heros/hero/mud4.png.meta rename to assets/resources/game/heros/mon/mud4.png.meta diff --git a/assets/resources/game/heros/hero/mud4/atk0.anim b/assets/resources/game/heros/mon/mud4/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mud4/atk0.anim rename to assets/resources/game/heros/mon/mud4/atk0.anim diff --git a/assets/resources/game/heros/hero/mud4/atk0.anim.meta b/assets/resources/game/heros/mon/mud4/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud4/atk0.anim.meta rename to assets/resources/game/heros/mon/mud4/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mud4/idle.anim b/assets/resources/game/heros/mon/mud4/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mud4/idle.anim rename to assets/resources/game/heros/mon/mud4/idle.anim diff --git a/assets/resources/game/heros/hero/mud4/idle.anim.meta b/assets/resources/game/heros/mon/mud4/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud4/idle.anim.meta rename to assets/resources/game/heros/mon/mud4/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mud4/max0.anim b/assets/resources/game/heros/mon/mud4/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mud4/max0.anim rename to assets/resources/game/heros/mon/mud4/max0.anim diff --git a/assets/resources/game/heros/hero/mud4/max0.anim.meta b/assets/resources/game/heros/mon/mud4/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud4/max0.anim.meta rename to assets/resources/game/heros/mon/mud4/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mud4/max1.anim b/assets/resources/game/heros/mon/mud4/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mud4/max1.anim rename to assets/resources/game/heros/mon/mud4/max1.anim diff --git a/assets/resources/game/heros/hero/mud4/max1.anim.meta b/assets/resources/game/heros/mon/mud4/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud4/max1.anim.meta rename to assets/resources/game/heros/mon/mud4/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mud4/move.anim b/assets/resources/game/heros/mon/mud4/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mud4/move.anim rename to assets/resources/game/heros/mon/mud4/move.anim diff --git a/assets/resources/game/heros/hero/mud4/move.anim.meta b/assets/resources/game/heros/mon/mud4/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud4/move.anim.meta rename to assets/resources/game/heros/mon/mud4/move.anim.meta diff --git a/assets/resources/game/heros/hero/mud5.meta b/assets/resources/game/heros/mon/mud5.meta similarity index 100% rename from assets/resources/game/heros/hero/mud5.meta rename to assets/resources/game/heros/mon/mud5.meta diff --git a/assets/resources/game/heros/hero/mud5/atk0.anim b/assets/resources/game/heros/mon/mud5/atk0.anim similarity index 100% rename from assets/resources/game/heros/hero/mud5/atk0.anim rename to assets/resources/game/heros/mon/mud5/atk0.anim diff --git a/assets/resources/game/heros/hero/mud5/atk0.anim.meta b/assets/resources/game/heros/mon/mud5/atk0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud5/atk0.anim.meta rename to assets/resources/game/heros/mon/mud5/atk0.anim.meta diff --git a/assets/resources/game/heros/hero/mud5/idle.anim b/assets/resources/game/heros/mon/mud5/idle.anim similarity index 100% rename from assets/resources/game/heros/hero/mud5/idle.anim rename to assets/resources/game/heros/mon/mud5/idle.anim diff --git a/assets/resources/game/heros/hero/mud5/idle.anim.meta b/assets/resources/game/heros/mon/mud5/idle.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud5/idle.anim.meta rename to assets/resources/game/heros/mon/mud5/idle.anim.meta diff --git a/assets/resources/game/heros/hero/mud5/max0.anim b/assets/resources/game/heros/mon/mud5/max0.anim similarity index 100% rename from assets/resources/game/heros/hero/mud5/max0.anim rename to assets/resources/game/heros/mon/mud5/max0.anim diff --git a/assets/resources/game/heros/hero/mud5/max0.anim.meta b/assets/resources/game/heros/mon/mud5/max0.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud5/max0.anim.meta rename to assets/resources/game/heros/mon/mud5/max0.anim.meta diff --git a/assets/resources/game/heros/hero/mud5/max1.anim b/assets/resources/game/heros/mon/mud5/max1.anim similarity index 100% rename from assets/resources/game/heros/hero/mud5/max1.anim rename to assets/resources/game/heros/mon/mud5/max1.anim diff --git a/assets/resources/game/heros/hero/mud5/max1.anim.meta b/assets/resources/game/heros/mon/mud5/max1.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud5/max1.anim.meta rename to assets/resources/game/heros/mon/mud5/max1.anim.meta diff --git a/assets/resources/game/heros/hero/mud5/move.anim b/assets/resources/game/heros/mon/mud5/move.anim similarity index 100% rename from assets/resources/game/heros/hero/mud5/move.anim rename to assets/resources/game/heros/mon/mud5/move.anim diff --git a/assets/resources/game/heros/hero/mud5/move.anim.meta b/assets/resources/game/heros/mon/mud5/move.anim.meta similarity index 100% rename from assets/resources/game/heros/hero/mud5/move.anim.meta rename to assets/resources/game/heros/mon/mud5/move.anim.meta