1 Commits

Author SHA1 Message Date
walkpan
882f2b8536 refactor: 优化战斗流程与英雄死亡处理逻辑
1. 移除HeroAttrsComp中多余的空行
2. 修改英雄死亡处理:直接销毁实体而非移至墓地
3. 调整波次更迭逻辑:直接进入BattleStart而非PrepareStart
4. 简化fight_ready方法:移除死亡英雄复活入场逻辑
5. 调整抽卡面板与卡牌池逻辑:战斗阶段保留抽卡面板且仅刷英雄卡
6. 将enterPreparePhase改为public方法
2026-05-15 19:00:11 +08:00
612 changed files with 95093 additions and 56733 deletions

View File

@@ -1,41 +0,0 @@
{
"__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
}
]
}

View File

@@ -1 +0,0 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"0f38817f-a8df-4547-8b37-e7ed29de8216","files":[".json"],"subMetas":{},"userData":{}}

View File

@@ -1,41 +0,0 @@
{
"__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
}
]
}

View File

@@ -1 +0,0 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"ded728b9-6dd0-4c37-9970-9745c62aa8bf","files":[".json"],"subMetas":{},"userData":{}}

View File

@@ -1,41 +0,0 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "22f6acfb-c03d-4213-918a-4d3b0cce76b4",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{
"USE_TEXTURE": true
}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"glowColor": {
"__type__": "cc.Color",
"r": 130,
"g": 46,
"b": 255,
"a": 255
},
"glowWidth": 0.002,
"glowThreshold": 0.887
}
]
}

View File

@@ -1 +0,0 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"acf230af-e9ae-42f8-80a1-552d7d10390f","files":[".json"],"subMetas":{},"userData":{}}

View File

@@ -1,41 +0,0 @@
{
"__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
}
]
}

View File

@@ -1 +0,0 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"2b8a37ee-732c-4c5b-b6a4-136f3e581cde","files":[".json"],"subMetas":{},"userData":{}}

View File

@@ -1,169 +0,0 @@
// 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 <builtin/uniforms/cc-global>
#if USE_LOCAL
#include <builtin/uniforms/cc-local>
#endif
#if SAMPLE_FROM_RT
#include <common/common-define>
#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 <builtin/internal/embedded-alpha>
#include <builtin/internal/alpha-test>
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;
}
}%

View File

@@ -1 +0,0 @@
{"ver":"1.7.1","importer":"effect","imported":true,"uuid":"64e60a99-c0c5-4e55-bb76-89ab7d9bb1c7","files":[".json"],"subMetas":{},"userData":{"combinations":[{}]}}

View File

@@ -1,169 +0,0 @@
// 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 <builtin/uniforms/cc-global>
#if USE_LOCAL
#include <builtin/uniforms/cc-local>
#endif
#if SAMPLE_FROM_RT
#include <common/common-define>
#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 <builtin/internal/embedded-alpha>
#include <builtin/internal/alpha-test>
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;
}
}%

View File

@@ -1 +0,0 @@
{"ver":"1.7.1","importer":"effect","imported":true,"uuid":"6ef5f656-8e02-4293-81ad-f621d747205a","files":[".json"],"subMetas":{},"userData":{"combinations":[{}]}}

View File

@@ -1,169 +0,0 @@
// 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 <builtin/uniforms/cc-global>
#if USE_LOCAL
#include <builtin/uniforms/cc-local>
#endif
#if SAMPLE_FROM_RT
#include <common/common-define>
#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 <builtin/internal/embedded-alpha>
#include <builtin/internal/alpha-test>
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;
}
}%

View File

@@ -1 +0,0 @@
{"ver":"1.7.1","importer":"effect","imported":true,"uuid":"22f6acfb-c03d-4213-918a-4d3b0cce76b4","files":[".json"],"subMetas":{},"userData":{"combinations":[{}]}}

View File

@@ -1,169 +0,0 @@
// 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 <builtin/uniforms/cc-global>
#if USE_LOCAL
#include <builtin/uniforms/cc-local>
#endif
#if SAMPLE_FROM_RT
#include <common/common-define>
#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 <builtin/internal/embedded-alpha>
#include <builtin/internal/alpha-test>
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;
}
}%

View File

@@ -1 +0,0 @@
{"ver":"1.7.1","importer":"effect","imported":true,"uuid":"645285fa-29be-4ca6-8f17-05ae82ef4982","files":[".json"],"subMetas":{},"userData":{"combinations":[{}]}}

View File

@@ -1,7 +1,7 @@
[
{
"__type__": "cc.Prefab",
"_name": "hk5",
"_name": "0",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
@@ -13,7 +13,7 @@
},
{
"__type__": "cc.Node",
"_name": "hk5",
"_name": "0",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
@@ -44,13 +44,10 @@
},
{
"__id__": 45
},
{
"__id__": 47
}
],
"_prefab": {
"__id__": 49
"__id__": 47
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -114,7 +111,7 @@
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -25,
"y": -35.876,
"z": 0
},
"_lrot": {
@@ -126,8 +123,8 @@
},
"_lscale": {
"__type__": "cc.Vec3",
"x": -1,
"y": 1,
"x": -0.8,
"y": 0.8,
"z": 1
},
"_mobility": 0,
@@ -154,8 +151,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 160,
"height": 113
"width": 192,
"height": 192
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@@ -209,12 +206,12 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "65901503-7638-405f-a6c0-41009376b3f2@652d1",
"__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d71e7",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
@@ -225,7 +222,7 @@
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "65901503-7638-405f-a6c0-41009376b3f2",
"__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
@@ -234,44 +231,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "aapdDlt5hKmZ6bjST88uia"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 10
},
"hitFlashMaterial": {
"__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810",
"__expectedType__": "cc.Material"
},
"outlineMatGreen": {
"__uuid__": "ded728b9-6dd0-4c37-9970-9745c62aa8bf",
"__expectedType__": "cc.Material"
},
"outlineMatBlue": {
"__uuid__": "0f38817f-a8df-4547-8b37-e7ed29de8216",
"__expectedType__": "cc.Material"
},
"outlineMatPurple": {
"__uuid__": "acf230af-e9ae-42f8-80a1-552d7d10390f",
"__expectedType__": "cc.Material"
},
"outlineMatYellow": {
"__uuid__": "2b8a37ee-732c-4c5b-b6a4-136f3e581cde",
"__expectedType__": "cc.Material"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "f9iLivg4dHhJksWCjvY9/w"
},
{
"__type__": "cc.Animation",
"_name": "",
@@ -282,28 +241,28 @@
},
"_enabled": true,
"__prefab": {
"__id__": 12
"__id__": 10
},
"playOnLoad": false,
"playOnLoad": true,
"_clips": [
{
"__uuid__": "9780974e-3d6b-4308-a076-f9e3af16050a",
"__uuid__": "c5ffa9f7-44e4-41b9-a927-f4856f5328f4",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "cfcce41a-1825-4d81-bb2f-d2e66185b00f",
"__uuid__": "8f109f2d-d5fc-4f3f-8897-d4c4b5fabf68",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "76131aba-4d3e-40e9-af4d-b23867980f91",
"__uuid__": "2d545a13-b7b3-4a3d-b351-08937caafd96",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "eec1f063-e4cc-438c-98b1-8d6510724ce8",
"__uuid__": "97ca2809-a0c4-48e3-9249-d2036d7470ae",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "c9914653-5e9d-4f3f-a063-adaa2e36e561",
"__uuid__": "85922420-4b73-4fcc-bf19-11f39c582ac3",
"__expectedType__": "cc.AnimationClip"
}
],
@@ -312,7 +271,29 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "d7c/TZIydH3ZHPSlggi9BX"
"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",
@@ -488,8 +469,8 @@
],
"value": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"x": 1.3,
"y": 1.3,
"z": 1
}
},
@@ -576,7 +557,7 @@
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 80,
"y": 110.506,
"z": 0
}
},
@@ -642,8 +623,8 @@
],
"value": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"x": 0.7,
"y": 0.7,
"z": 1
}
},
@@ -783,27 +764,6 @@
"__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": {

View File

@@ -2,12 +2,12 @@
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "9895aa95-2d19-4a18-8c9b-00d9500f273a",
"uuid": "48b244c4-b15f-4c6c-b468-c6b44aae439a",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "ha4"
"syncNodeName": "0"
}
}

View File

@@ -209,7 +209,7 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@85704",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e3af9",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
@@ -225,7 +225,7 @@
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
@@ -292,22 +292,6 @@
"__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810",
"__expectedType__": "cc.Material"
},
"outlineMatGreen": {
"__uuid__": "ded728b9-6dd0-4c37-9970-9745c62aa8bf",
"__expectedType__": "cc.Material"
},
"outlineMatBlue": {
"__uuid__": "0f38817f-a8df-4547-8b37-e7ed29de8216",
"__expectedType__": "cc.Material"
},
"outlineMatPurple": {
"__uuid__": "acf230af-e9ae-42f8-80a1-552d7d10390f",
"__expectedType__": "cc.Material"
},
"outlineMatYellow": {
"__uuid__": "2b8a37ee-732c-4c5b-b6a4-136f3e581cde",
"__expectedType__": "cc.Material"
},
"_id": ""
},
{

View File

@@ -114,7 +114,7 @@
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -25,
"y": -24.925,
"z": 0
},
"_lrot": {
@@ -209,7 +209,7 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4fb61",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1e4e3",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
@@ -225,7 +225,7 @@
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
@@ -234,44 +234,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "aapdDlt5hKmZ6bjST88uia"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 10
},
"hitFlashMaterial": {
"__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810",
"__expectedType__": "cc.Material"
},
"outlineMatGreen": {
"__uuid__": "ded728b9-6dd0-4c37-9970-9745c62aa8bf",
"__expectedType__": "cc.Material"
},
"outlineMatBlue": {
"__uuid__": "0f38817f-a8df-4547-8b37-e7ed29de8216",
"__expectedType__": "cc.Material"
},
"outlineMatPurple": {
"__uuid__": "acf230af-e9ae-42f8-80a1-552d7d10390f",
"__expectedType__": "cc.Material"
},
"outlineMatYellow": {
"__uuid__": "2b8a37ee-732c-4c5b-b6a4-136f3e581cde",
"__expectedType__": "cc.Material"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "f9iLivg4dHhJksWCjvY9/w"
},
{
"__type__": "cc.Animation",
"_name": "",
@@ -282,28 +244,28 @@
},
"_enabled": true,
"__prefab": {
"__id__": 12
"__id__": 10
},
"playOnLoad": false,
"playOnLoad": true,
"_clips": [
{
"__uuid__": "cd3e0604-8840-4794-8755-f2ed86dbe264",
"__uuid__": "27842cf4-9691-47b9-ae2f-a2d75599eb20",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "5d85a577-a49f-4ddc-a7b7-12a2721081d3",
"__uuid__": "0917b75e-39ac-489a-ade3-a971011e4e0a",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "774fcb32-b38f-4a74-a602-07b6115e8d64",
"__uuid__": "222a8903-2dee-4bf6-b6eb-72fd1541609b",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "a6bf4efc-ad53-4f37-b972-8fd0eb7f2ee6",
"__uuid__": "a8ecc076-98b4-45c6-99e1-ab67992682fa",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "6e473d77-a270-42c3-adc7-c675666f280d",
"__uuid__": "04b4ebf7-303b-495f-a3e9-640831dbb353",
"__expectedType__": "cc.AnimationClip"
}
],
@@ -312,7 +274,29 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "c5R7E6LWdMNYjjgZNJ+x0G"
"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",
@@ -576,7 +560,7 @@
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 80,
"y": 90.171,
"z": 0
}
},
@@ -796,12 +780,7 @@
"__id__": 48
},
"playOnLoad": false,
"_clips": [
{
"__uuid__": "cd3e0604-8840-4794-8755-f2ed86dbe264",
"__expectedType__": "cc.AnimationClip"
}
],
"_clips": [],
"_defaultClip": null,
"_id": ""
},

View File

@@ -2,7 +2,7 @@
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "2266c9e2-b1b7-4de7-9d45-b1f6e2ceb4d8",
"uuid": "93ae1893-59bb-4792-8034-95104f446a4e",
"files": [
".json"
],

View File

@@ -209,7 +209,7 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1d762",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7d01e",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
@@ -225,7 +225,7 @@
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
@@ -234,44 +234,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "aapdDlt5hKmZ6bjST88uia"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 10
},
"hitFlashMaterial": {
"__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810",
"__expectedType__": "cc.Material"
},
"outlineMatGreen": {
"__uuid__": "ded728b9-6dd0-4c37-9970-9745c62aa8bf",
"__expectedType__": "cc.Material"
},
"outlineMatBlue": {
"__uuid__": "0f38817f-a8df-4547-8b37-e7ed29de8216",
"__expectedType__": "cc.Material"
},
"outlineMatPurple": {
"__uuid__": "acf230af-e9ae-42f8-80a1-552d7d10390f",
"__expectedType__": "cc.Material"
},
"outlineMatYellow": {
"__uuid__": "2b8a37ee-732c-4c5b-b6a4-136f3e581cde",
"__expectedType__": "cc.Material"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "f9iLivg4dHhJksWCjvY9/w"
},
{
"__type__": "cc.Animation",
"_name": "",
@@ -282,40 +244,59 @@
},
"_enabled": true,
"__prefab": {
"__id__": 12
"__id__": 10
},
"playOnLoad": false,
"playOnLoad": true,
"_clips": [
{
"__uuid__": "74e35021-ee4c-4ece-b56c-2b05ea5fb030",
"__uuid__": "b277aa55-1679-493f-8e83-dcda712bb82d",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "2fcf90db-b183-4351-a01f-97f674a2d5e8",
"__uuid__": "a8017a4f-e079-4b37-b0ce-647a5c68e11a",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "1110692e-6a26-4b5d-9ced-74990a5d6151",
"__uuid__": "c4f77aa9-cf65-4577-96eb-50fcb7b9ed72",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "179d8551-31f3-43a9-a55d-1dd1bf0a48c6",
"__uuid__": "b5e9db6a-bad1-45a4-a01a-06c81519aab9",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "574966fb-4a2d-4f05-ab7c-b7603d6cfce2",
"__uuid__": "70d98337-6518-4d2f-a45e-6e7e6b3fd20c",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": {
"__uuid__": "74e35021-ee4c-4ece-b56c-2b05ea5fb030",
"__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": "06EKbjjoxNH7Ap9yy21xqN"
"fileId": "f9iLivg4dHhJksWCjvY9/w"
},
{
"__type__": "cc.PrefabInfo",
@@ -579,7 +560,7 @@
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 80,
"y": 90.171,
"z": 0
}
},

View File

@@ -2,7 +2,7 @@
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "eb31f412-5260-4e30-b15b-959914056f7a",
"uuid": "9a1cd30e-f87a-4ab5-9749-d0e2db55545c",
"files": [
".json"
],

View File

@@ -44,13 +44,10 @@
},
{
"__id__": 45
},
{
"__id__": 47
}
],
"_prefab": {
"__id__": 49
"__id__": 47
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -209,7 +206,7 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@14e00",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@14e00",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
@@ -225,7 +222,7 @@
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
@@ -234,44 +231,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "aapdDlt5hKmZ6bjST88uia"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 10
},
"hitFlashMaterial": {
"__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810",
"__expectedType__": "cc.Material"
},
"outlineMatGreen": {
"__uuid__": "ded728b9-6dd0-4c37-9970-9745c62aa8bf",
"__expectedType__": "cc.Material"
},
"outlineMatBlue": {
"__uuid__": "0f38817f-a8df-4547-8b37-e7ed29de8216",
"__expectedType__": "cc.Material"
},
"outlineMatPurple": {
"__uuid__": "acf230af-e9ae-42f8-80a1-552d7d10390f",
"__expectedType__": "cc.Material"
},
"outlineMatYellow": {
"__uuid__": "2b8a37ee-732c-4c5b-b6a4-136f3e581cde",
"__expectedType__": "cc.Material"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "f9iLivg4dHhJksWCjvY9/w"
},
{
"__type__": "cc.Animation",
"_name": "",
@@ -282,28 +241,28 @@
},
"_enabled": true,
"__prefab": {
"__id__": 12
"__id__": 10
},
"playOnLoad": false,
"playOnLoad": true,
"_clips": [
{
"__uuid__": "d795f0b0-cd12-43db-bc47-79dddf1d7528",
"__uuid__": "c7a0ded9-a870-4fc4-93e2-1bec11801142",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "fed4df36-6a3f-4a12-a6e5-2a5ad140efbf",
"__uuid__": "9098ce69-33e0-41d6-ab79-274accd1fa56",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "2d5be258-449e-43a6-bf51-11e7cbf7ce0a",
"__uuid__": "fbf32dae-f240-47a6-9aa5-b4f8b01a87af",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "69f355b0-4430-4b47-9784-545110b51829",
"__uuid__": "56628bc8-a6c1-4c3d-8326-8a28b03af883",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "034e64ba-3ad5-4f85-94e7-315de6a7f508",
"__uuid__": "5390adef-a142-406a-9324-2fa2baefd64e",
"__expectedType__": "cc.AnimationClip"
}
],
@@ -312,7 +271,29 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "7eUuagZhNEMq55Rlf93k+e"
"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",
@@ -576,7 +557,7 @@
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 80,
"y": 87.191,
"z": 0
}
},
@@ -783,27 +764,6 @@
"__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": {

View File

@@ -2,7 +2,7 @@
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "2d428d8f-7fe9-458c-90f8-6d276e2ba9d4",
"uuid": "dcdb138c-1ca1-4ff2-85f7-eff1225fae08",
"files": [
".json"
],

View File

@@ -1,138 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_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
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5a47e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f26c6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@761bc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@70ef7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@dddeb",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2b5f0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@94bad",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@850d9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e79b7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2cd62",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4abe8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f51f4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@48a32",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 838 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 805 KiB

View File

@@ -2,7 +2,7 @@
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee",
"uuid": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943",
"files": [
".json",
".png"
@@ -10,8 +10,8 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a",
"displayName": "k5m5",
"uuid": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a",
"displayName": "a1c1",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -22,7 +22,7 @@
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee",
"imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943",
"visible": false
},
"ver": "1.0.22",
@@ -37,6 +37,6 @@
"type": "texture",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a"
"redirect": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a"
}
}

View File

@@ -1 +0,0 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"89017205-6a1d-4903-936f-c405888094bd","files":[],"subMetas":{},"userData":{}}

View File

@@ -1,138 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_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
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@29293",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4f9cd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@93898",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@9732d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@b2cd5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@7e86e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@b58b4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@165f7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@08770",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@6ff7e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e143d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@ff726",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5f6f4",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,138 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_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
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@a7a2d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e838b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@c02b4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@294f8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e2bdd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@c9436",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@786b6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e265c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@3ec3d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@bbd0f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d8a81",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@ca166",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1909c",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"c0d039ce-1001-4764-a679-48254b94b223","files":[],"subMetas":{},"userData":{}}

View File

@@ -1,138 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_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
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@7b3f5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@cb3ad",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@3ae4c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5534d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@7f70f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@63eb3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1095e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d129e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1a870",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@84dff",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2ebde",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@bc6e1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@8c1a1",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 874 KiB

View File

@@ -2,7 +2,7 @@
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f715eece-d5c2-4813-9f80-2cda39c3a706",
"uuid": "19d24e7b-440b-46b5-8f05-c3090661d736",
"files": [
".json",
".png"
@@ -10,8 +10,8 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a",
"displayName": "a1234",
"uuid": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a",
"displayName": "be123",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -22,7 +22,7 @@
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "f715eece-d5c2-4813-9f80-2cda39c3a706",
"imageUuidOrDatabaseUri": "19d24e7b-440b-46b5-8f05-c3090661d736",
"visible": false
},
"ver": "1.0.22",
@@ -37,6 +37,6 @@
"type": "texture",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f715eece-d5c2-4813-9f80-2cda39c3a706@6c48a"
"redirect": "19d24e7b-440b-46b5-8f05-c3090661d736@6c48a"
}
}

View File

@@ -1 +0,0 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"fe03c008-45b6-4b21-a414-3e53f77cd1eb","files":[],"subMetas":{},"userData":{}}

View File

@@ -1,118 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "idle",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"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.06666666666666667,
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@14e00",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@52cd6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d8da8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8edd3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1a65e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a81aa",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@dfcd0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@72c5c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@49f37",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,118 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max0",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 20,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.45,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@82ec1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7830e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@471b2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@0466c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e30b5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d8e62",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c5dd0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7b64a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9c2bd",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,138 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@73b8b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5847f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c83ed",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b502d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5f50e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e6eb1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a7cdc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6dfd4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5725a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@de419",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b489b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a0b97",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@23fcf",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 619 KiB

View File

@@ -1,42 +0,0 @@
{
"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"
}
}

View File

@@ -1 +0,0 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"e40ed6b8-fb97-430f-9a90-e7f81c1aafe3","files":[],"subMetas":{},"userData":{}}

View File

@@ -1,113 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk0",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.26666666666666666,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@3eb39",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fe5b1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fa59f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@2daf8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fbe36",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b478c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@31489",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d7aca",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"83e8b59a-9b9c-41d1-b039-123d8ee3c2ca","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}}

View File

@@ -1,118 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "idle",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"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.06666666666666667,
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@28c51",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a5141",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7be70",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@297ea",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6dd09",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ba57f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@bdb6f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@72a39",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8c200",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"565db9a3-5c7c-4936-85d2-fefc87086597","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -1,118 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max0",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 20,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.45,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1995d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a8226",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a736a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9ea0b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@eeb88",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b1640",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7343d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@529ba",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5769b",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"63385316-79d3-4237-a421-10504927ff71","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}}

View File

@@ -1,138 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@f5e50",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@62cd5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@de666",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7d894",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@674ab",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@0e1dc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5bec9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@151bd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1fd8a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1fee8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a7173",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8e89e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c30a2",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"270a74c7-b521-4688-9627-7618cee322c7","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}

View File

@@ -1,103 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "move",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.4,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@958dd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@915da",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@30783",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7a23d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@961c4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@56bc9",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c075034e-2f66-4fc1-8607-90c16fca23f7","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}

View File

@@ -1,113 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk0",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.26666666666666666,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ca093",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b8018",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e3878",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@65d65",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@4c49c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@61a82",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c58c3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@0ba45",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"e680bad6-87e6-4d4a-b306-8fb30b6eb2b3","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}}

View File

@@ -1,118 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "idle",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"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.06666666666666667,
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@26070",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@27101",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ae691",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d730e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c2ff5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d2d4a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@37378",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@aa382",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@556be",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"ef272738-5f27-4ff5-aac8-3522466b7b88","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -1,118 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max0",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 20,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.45,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d1898",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d66d2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@daa29",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@907a2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@f8023",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fb67c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@21017",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@38ea1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@17c0b",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b34b7690-72da-4d8d-a666-a325702c99d6","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}}

View File

@@ -1,138 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@42c1f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7889e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6e363",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e4f1f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@bcf6c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9183f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@05513",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@dce9b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7a13e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d3bbd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@50498",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ac6a4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@618da",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"fdd12b35-6814-46e2-92da-ec8783348101","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}

View File

@@ -1,103 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "move",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.4,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7bf01",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@278fc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@0d1e1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e6138",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ac028",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@cbb80",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"182321f6-7b0a-473a-a485-1e14bebb0f9b","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 913 KiB

View File

@@ -2,7 +2,7 @@
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b3480ba8-c727-42de-8769-928a194061d2",
"uuid": "a30edf8a-0c58-410e-9f7f-529c82758cd0",
"files": [
".json",
".png"
@@ -10,8 +10,8 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b3480ba8-c727-42de-8769-928a194061d2@6c48a",
"displayName": "m1234",
"uuid": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a",
"displayName": "h1m2",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -22,7 +22,7 @@
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "b3480ba8-c727-42de-8769-928a194061d2",
"imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0",
"visible": false
},
"ver": "1.0.22",
@@ -37,6 +37,6 @@
"type": "texture",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b3480ba8-c727-42de-8769-928a194061d2@6c48a"
"redirect": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a"
}
}

View File

@@ -1 +0,0 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"c9088434-2345-4f73-b8e0-fd9445b4f003","files":[],"subMetas":{},"userData":{}}

View File

@@ -1,113 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk0",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.26666666666666666,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1ac60",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e9c4a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@498fd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@322c9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ec601",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@f1dc4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e14c3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@f7176",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"d053f111-94c6-42f1-8b30-bab932fee9e9","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}}

View File

@@ -1,118 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "idle",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"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.06666666666666667,
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7d4ec",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9cafe",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7e8db",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@81413",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a7789",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@72fc6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1202f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@25056",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@3a3bf",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b982e1fb-b9be-48da-891e-e8919f26f518","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -1,118 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max0",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 20,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.45,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c0d78",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@266b8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8716f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@84473",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@2c514",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9d1f3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@80568",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c8bb4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@3ab16",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"07fc3ec5-9fc9-42c2-bf05-183556eb1abb","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}}

View File

@@ -1,138 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@92972",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@72460",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a82bc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ad6a1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c979e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1fcdb",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@56295",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@98ce1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@14b41",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@02175",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@09670",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6f587",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@59d44",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a031daf3-f5fe-4294-bd49-76a718d1ed22","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}

View File

@@ -1,103 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "move",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.4,
"_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
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c77e6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a9e1c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6a7df",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9ea3e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fc2a4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6d278",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"e3e73c2b-75cf-43e5-ab42-52a618ac5696","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}

View File

@@ -0,0 +1,173 @@
[
{
"__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
}
]

View File

@@ -0,0 +1,133 @@
[
{
"__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
}
]

View File

@@ -0,0 +1,153 @@
[
{
"__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
}
]

View File

@@ -1,7 +1,7 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk0",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
@@ -80,67 +80,67 @@
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@cea12",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a2ae4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@0b41a",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4d9fe",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@418e0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@93628",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@21d56",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6d64b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@8aa15",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@849c2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@98a04",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@98343",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@ab77c",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7dc3d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@3c145",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@761d4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@9cdac",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@05c47",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@23fda",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ecc1a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f4d14",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@adbb1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1b9a8",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ddcc8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@800f0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8dde2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@19235",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@97161",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@345a2",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@10581",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d911c",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9c742",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1,7 +1,7 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "idle",
"_name": "move",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.6,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -68,44 +68,39 @@
0.26666666666666666,
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333
0.4666666666666667
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e6c6a",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@86ff6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@31af0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ef970",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1ed0c",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@68ab0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@cdaea",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8d02d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@a5abd",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cf58c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@88e30",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9a164",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@cb273",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2fa19",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d919d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@43074",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3b56d",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -0,0 +1 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"97e6ae27-9f43-4343-8801-ecdfd49cd39e","files":[],"subMetas":{},"userData":{}}

View File

@@ -0,0 +1,173 @@
[
{
"__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
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"cd3e0604-8840-4794-8755-f2ed86dbe264","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"27842cf4-9691-47b9-ae2f-a2d75599eb20","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}}

View File

@@ -0,0 +1,133 @@
[
{
"__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@1e4e3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b7722",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@03c0e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@37ecb",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e4794",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c3a10",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@33928",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@00407",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@83060",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dac07",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f4bc5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2d6fa",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"179d8551-31f3-43a9-a55d-1dd1bf0a48c6","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"0917b75e-39ac-489a-ade3-a971011e4e0a","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -0,0 +1,153 @@
[
{
"__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
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1110692e-6a26-4b5d-9ced-74990a5d6151","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"222a8903-2dee-4bf6-b6eb-72fd1541609b","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}}

Some files were not shown because too many files have changed in this diff Show More