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
790 changed files with 187455 additions and 152518 deletions

View File

@@ -1,49 +0,0 @@
# 技能配置重构实施计划
## 1. 探索阶段总结 (Current State Analysis)
经过对代码库的探索,当前技能触发系统及相关配置状态如下:
- `SkillSet.ts` 包含了所有技能的基座配置 `SkillConfig` 和技能字典 `SkillSet`
- `heroSet.ts` 中的 `HeroInfo` 存放英雄和怪物的配置,目前 `call`, `dead`, `fstart`, `fend` 被定义为 `number[]`,而 `atking``atked` 被定义为 `{s_uuid: number, t_num: number}[]`
- `HeroAttrsComp.ts` 内部存储了与配置一致的触发技能结构。
- `SkillTriggerHelper.ts` 负责判定并向外派发 `GameEvent.TriggerSkill` 事件,由 `SCastSystem.ts` 监听并执行 `forceCastTriggerSkill`
- 目前 `SCastSystem.ts` 在收集技能目标和施放技能时,都是直接从 `SkillSet[s_uuid]` 读取 `config`,没有针对具体角色的差异化机制。
## 2. 拟议变更 (Proposed Changes)
### 2.1 修改 `SkillSet.ts`
- **新增接口**:定义 `SkillOverrides` 接口,包含所有可被角色覆盖的技能参数(如 `TGroup`, `ap`, `hit_count`, `buffs` 等,全部为可选字段)。
- **新增函数**:编写 `mergeSkillParams(config, overrides?)` 函数,将基座 `config` 和角色覆盖 `overrides` 进行合并,返回一个新的 `SkillConfig` 对象。
### 2.2 修改 `heroSet.ts`
- **扩展接口**
-`HSkillInfo` 接口中增加 `overrides?: SkillOverrides;`
-`heroInfo` 接口中的触发字段 `call`, `dead`, `fstart`, `fend`, `atking`, `atked` 统一更新为 `{ s_uuid: number; t_num: number; overrides?: SkillOverrides }[]` 结构。
- **更新配置示例**:按照设计文档更新英雄 `5001`, `5002`, `5301`, `5302` 的配置,为特定的触发技能添加 `overrides` 字段(如盾骑士 5002 全队护盾覆盖)。
### 2.3 修改 `HeroAttrsComp.ts`
- **同步类型**:将 `call`, `dead`, `fstart`, `fend`, `atking`, `atked` 的类型同步改为与 `heroInfo` 一致的 `{ s_uuid: number; t_num: number; overrides?: SkillOverrides }[]`
### 2.4 修改 `SkillTriggerHelper.ts`
- **派发支持**
- 更新 `dispatchSingle` 方法签名,增加 `overrides?: SkillOverrides` 参数,并在 `oops.message.dispatchEvent(GameEvent.TriggerSkill, {...})` 中将其传入。
- 更新 `handleCall`, `handleDead`, `handleArrayTrigger` 处理逻辑,将原先对 `number[]` 的处理改为对 `{s_uuid, t_num, overrides}` 对象数组的处理,并提取 `overrides` 传递给 `dispatchArray`
- 更新 `handleAtking`, `handleAtked` 中的 `dispatchSingle` 调用,传入 `atkConfig.overrides`
### 2.5 修改 `SCastSystem.ts` (关键运行时逻辑)
- **事件监听更新**:在 `onTriggerSkill` 方法的 `args` 参数定义中补充 `overrides?: SkillOverrides`,并传递给 `forceCastTriggerSkill`
- **合并逻辑上移(架构优化)**
-`forceCastTriggerSkill``castSkill` 的**方法入口处**(而非 `applyFriendlySkillEffects` 内部),第一时间调用 `mergeSkillParams(config, overrides)` 获取 `effective` 技能配置。
- 将后续所有关于阵营判定(如 `effective.TGroup`)、目标收集、以及传递给 `applyFriendlySkillEffects` / `applyEnemySkillEffects` 的参数全部替换为 `effective`
- **为何如此设计**:如果在原设计中仅在 `applyFriendlySkillEffects` 入口处合并,那么前置的**目标选择逻辑**(依赖 `TGroup` 判定是 `Self` 还是 `Team`)将会使用未合并的基础配置,导致类似“自己加盾变为全队加盾”的 `TGroup` 覆盖无法生效。将合并操作前置可以彻底解决这一问题。
- **主动技能支持**:在 `pickCastSkill` 中,读取 `heroAttrs.skills[s_uuid]?.overrides` 并进行合并判定,同时将 `overrides` 放入返回的 `castPlan` 中,以便 `castSkill` 使用。
## 3. 假设与决策 (Assumptions & Decisions)
- **统一触发结构**:虽然 `call`, `dead`, `fstart`, `fend` 不严格需要 `t_num`,但为了类型统一并完全遵守设计规范,统一采用了包含 `t_num` 的对象结构。
- **合并前置决策**:如上所述,坚决在施放方法入口处进行 `mergeSkillParams` 以保证目标收集逻辑能够感知到 `TGroup` 的变化。这比设计规范中要求的修改范围略有扩大,但对于系统功能的正确实现是必须的。
- **卡牌技能影响**:卡牌技能(`forceCastCardSkill`)当前没有绑定角色的 `overrides`,因此维持读取基础 `SkillSet` 逻辑不变。
## 4. 验证步骤 (Verification steps)
1. 编译 TypeScript 代码,确保 `HeroAttrsComp`, `heroSet`, `SCastSystem` 等修改后的接口和类型无报错。
2. 启动游戏或运行测试,确认 `5001` (见习战士) 触发的基础护盾只对自己生效。
3. 确认 `5002` (盾骑士) 受击触发的护盾技能正确地为全队附加护盾并且护盾值ap与次数hit_count符合 `overrides` 配置。
4. 确认所有旧版英雄技能在无 `overrides` 时能够正确回退到 `SkillSet` 的默认配置,游戏运转正常无异常日志。

View File

@@ -1,55 +0,0 @@
# 重构场上英雄UI表现及交互计划
## 1. 目标与现状分析
**现状**
目前游戏中 `HInfoComp.ts` 负责在界面下方显示场上英雄的信息(生命、攻击、出售),由 `MissionCardComp` 管理 6 个固定槽位。
`HeroViewComp.ts` 负责战斗场景中英雄实体的动画表现。
**目标**
1. 保留 `HInfoComp.ts` 组件及预制体,但**取消其在底部的常驻显示**,将其改造为**弹窗形式**(类似 `IBoxComp`)。
2. 在战斗或准备阶段,玩家**直接点击场上的英雄模型**`HeroViewComp`)时,弹出 `HInfoComp` 面板。
3. 清理 `MissionCardComp.ts` 中管理底层 `HInfoComp` 的旧逻辑。
## 2. 具体修改步骤
### 2.1 注册 HInfo 为独立弹窗
* 修改 `assets/script/game/common/config/GameUIConfig.ts`
*`UIID` 枚举中添加 `HInfo`
*`UIConfigData` 中注册:`[UIID.HInfo]: { layer: LayerType.UI, prefab: "gui/element/hnode" }`
### 2.2 改造 HInfoComp.ts
* **数据传入**:添加 `onAdded(args: { eid: number })`,根据 `eid` 查询 `HeroAttrsComp` 实体进行数据绑定。
* **自驱动刷新**:原先由外部驱动刷新,现在添加 `update(dt: number)` 生命周期,在内部调用 `this.refresh()` 以保持血量等信息实时更新。
* **移除旧逻辑**:删除 `node_index``refreshByNodeIndex` 等固定槽位相关的代码。
* **交互恢复**:取消注释 `bindEvents``unbindEvents`,恢复出售按钮的点击事件。出售完成后调用 `oops.gui.remove(UIID.HInfo)`。打开 `IBox` 的点击逻辑可保持不变(或者作为详情按钮)。
* **添加关闭机制**:考虑到它是弹窗,可以添加一个点击非按钮区域关闭自身的功能,或者点击英雄之外的区域关闭。为简单起见,可以暂时复用点击面板打开 IBox同时关闭 HInfo并在 HInfo 添加额外的关闭按钮,或由 UI 框架自动处理(如果注册为 PopUp 并带有背景)。如果它是纯 UI可以点击其他地方关闭。这里我们让它在打开 `IBox` 后关闭自己:`oops.gui.remove(UIID.HInfo)`
### 2.3 清理 MissionCardComp.ts
* **移除属性**:删除 `@property(Node) hero_info_node``@property(Prefab) hero_info_prefab` 及其编辑器绑定。
* **移除内部状态**:删除 `cachedHInfoComps``heroInfoSyncTimer`
* **移除生命周期调用**:在 `onLoad``update``onMissionStart``onMissionEnd``onDestroy``reset``enterPreparePhase``enterBattlePhase` 中,删除所有涉及 `HInfoComp` 实例创建、刷新、显隐控制、销毁的代码。
### 2.4 修改 HeroViewComp.ts 添加点击交互
* **绑定事件**:在 `onLoad` 中为英雄模型节点绑定点击事件 `this.node.on(NodeEventType.TOUCH_END, this.onHeroClicked, this);`,并在 `reset` 等清理处解绑。
* **点击回调逻辑**
```typescript
private onHeroClicked(event: EventTouch) {
if (!this.model) return;
if (this.model.fac !== FacSet.HERO) return; // 仅对玩家英雄生效
const eid = this.ent?.eid;
if (!eid) return;
// 呼出英雄信息弹窗
oops.gui.remove(UIID.HInfo);
oops.gui.open(UIID.HInfo, { eid: eid });
}
```
## 3. 验证步骤
1. 进入战斗,确认下方不再有常驻的英雄信息面板。
2. 点击场上的英雄模型,确认能弹出该英雄的 `HInfoComp` 弹窗。
3. 观察弹窗内的血量和攻击力是否能随战斗实时刷新。
4. 点击弹窗上的出售按钮,确认英雄消失、金币增加且弹窗关闭。
5. 点击弹窗上的信息区域,确认能弹出 `IBoxComp` 详情面板。

View File

@@ -1,5 +1,42 @@
---
alwaysApply: true
alwaysApply: false
description: esp32嵌入式开发生效
---
# ESP32-C3 ESP-IDF 开发规则
- 每次在代码中引用其他文件函数的时候,需要严格审核引用的正确性。
仅在 ESP32 / ESP-IDF 相关开发中参考,保留关键结论如下:
## 1. HTTP Server
- `sdkconfig.defaults` 至少包含:
- `CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024`
- `CONFIG_HTTPD_MAX_URI_LEN=512`
- 修改 `sdkconfig.defaults` 后,如已有 `sdkconfig`,需同步处理并重新编译。
- `httpd` 任务栈建议设为 `8192`
- `httpd_req_recv()` 读取 POST 数据必须循环收完,按 `content_len` 分配缓冲区,并在结束后释放内存。
## 2. 表单处理
- 所有 `application/x-www-form-urlencoded` 表单参数必须先做 URL 解码再使用。
- 应封装统一的 `url_decode()` / `get_param()` 工具函数。
- 禁止直接用 `strstr` + `strchr` 手动截取参数值。
## 3. WiFi 连接
- 不要硬编码 `WIFI_AUTH_WPA2_PSK`,优先使用兼容性更好的认证模式。
- 空密码时使用 `WIFI_AUTH_OPEN`
- 启动时仅在 SSID 和密码都有效时尝试连接,否则进入配网模式。
- 日志中输出断开原因和密码长度,不输出密码明文。
## 4. 初始化顺序
- 必须按以下顺序初始化:
1. `nvs_flash_init()`
2. `esp_netif_init()`
3. `esp_event_loop_create_default()`
4. `esp_wifi_init()`
- 禁止在 `esp_wifi_init()` 之后再初始化 NVS。
## 5. 配网模式
- 配网阶段使用 `WIFI_MODE_AP`,不要使用 `WIFI_MODE_APSTA`

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": 152,
"b": 255,
"a": 255
},
"glowWidth": 0.004,
"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

@@ -34,7 +34,7 @@
"b": 20,
"a": 255
},
"glowWidth": 0.004,
"glowWidth": 0.002,
"glowThreshold": 0.887
}
]

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.004,
"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.004,
"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": 255,
"g": 245,
"b": 0,
"a": 255
},
"glowWidth": 0.004,
"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,150 +0,0 @@
[
{
"__type__": "cc.Prefab",
"_name": "shadow",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "shadow",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [],
"_active": true,
"_components": [
{
"__id__": 2
},
{
"__id__": 4
}
],
"_prefab": {
"__id__": 6
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 5,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 0.12,
"y": 0.3,
"z": 1
},
"_mobility": 0,
"_layer": 1,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 3
},
"_contentSize": {
"__type__": "cc.Size",
"width": 284,
"height": 39
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "6cmzBFonhLeL4QjawJnsDO"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 5
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_spriteFrame": {
"__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@34d88",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "9bBibS6lpJz5PzA6RCFpKW"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "68mbLQeptP8Kf2mAvL01yn",
"instance": null,
"targetOverrides": null
}
]

View File

@@ -0,0 +1,787 @@
[
{
"__type__": "cc.Prefab",
"_name": "0",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "0",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
},
{
"__id__": 14
},
{
"__id__": 26
}
],
"_active": true,
"_components": [
{
"__id__": 37
},
{
"__id__": 39
},
{
"__id__": 41
},
{
"__id__": 43
},
{
"__id__": 45
}
],
"_prefab": {
"__id__": 47
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -0.041,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 1,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "anm",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 9
},
{
"__id__": 11
}
],
"_prefab": {
"__id__": 13
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -35.876,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": -0.8,
"y": 0.8,
"z": 1
},
"_mobility": 0,
"_layer": 1,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
"width": 192,
"height": 192
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "9eaEPPEkdKYYfWIxgJ1KbU"
},
{
"__type__": "4ba4awuz8tF34rq4TkZ9W1S",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 6
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "569pdLaDNB6qtHi4mnEa2p"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 8
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5@d71e7",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "60b9989d-82c6-47fb-a50d-7325e83a99b5",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "aapdDlt5hKmZ6bjST88uia"
},
{
"__type__": "cc.Animation",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 10
},
"playOnLoad": true,
"_clips": [
{
"__uuid__": "c5ffa9f7-44e4-41b9-a927-f4856f5328f4",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "8f109f2d-d5fc-4f3f-8897-d4c4b5fabf68",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "2d545a13-b7b3-4a3d-b351-08937caafd96",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "97ca2809-a0c4-48e3-9249-d2036d7470ae",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "85922420-4b73-4fcc-bf19-11f39c582ac3",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "406uXfKLJEbab+NVEqD1aS"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 12
},
"hitFlashMaterial": {
"__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810",
"__expectedType__": "cc.Material"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "b4+2TVK9JC7p5lhflMVjuO"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "4aKyovCOhDJpr23Of35+5a",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 15
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 14
},
"asset": {
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
"__expectedType__": "cc.Prefab"
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": {
"__id__": 16
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "3a1pwLAh1NkYnlDVrAFcnS",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 17
},
{
"__id__": 19
},
{
"__id__": 20
},
{
"__id__": 21
},
{
"__id__": 22
},
{
"__id__": 23
},
{
"__id__": 25
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 18
},
"propertyPath": [
"_name"
],
"value": "shielded"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"c46/YsCPVOJYA4mWEpNYRx"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 18
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 18
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 18
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 18
},
"propertyPath": [
"_active"
],
"value": false
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 24
},
"propertyPath": [
"_contentSize"
],
"value": {
"__type__": "cc.Size",
"width": 120,
"height": 100
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"63NP9yq3hEUKD/OZZZ5t7x"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 18
},
"propertyPath": [
"_lscale"
],
"value": {
"__type__": "cc.Vec3",
"x": 1.3,
"y": 1.3,
"z": 1
}
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 27
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 26
},
"asset": {
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
"__expectedType__": "cc.Prefab"
},
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
"instance": {
"__id__": 28
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "69IAw7dThHvIlVtTfXOVMZ",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 29
},
{
"__id__": 31
},
{
"__id__": 32
},
{
"__id__": 33
},
{
"__id__": 34
},
{
"__id__": 36
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 30
},
"propertyPath": [
"_name"
],
"value": "top"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"5fqU0L3/FOhKaco5UkHuWT"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 30
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 110.506,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 30
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 30
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 35
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 10.531,
"z": 0
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"16MuhUBUpB2ZdBTYflEf1n"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 30
},
"propertyPath": [
"_lscale"
],
"value": {
"__type__": "cc.Vec3",
"x": 0.7,
"y": 0.7,
"z": 1
}
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 38
},
"_contentSize": {
"__type__": "cc.Size",
"width": 80,
"height": 100
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "14OhXRCixNOaApgow/hFbp"
},
{
"__type__": "a0379fmhvBHcbNcBF/l43O8",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 40
},
"anm": {
"__id__": 5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "73PcRpG0xKxJpIRC2zbI/o"
},
{
"__type__": "873f8d+SolMEo8DiTTxZRh4",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 42
},
"debugMode": false,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "ae2ywFEqlJ26Sq7z7AtGgk"
},
{
"__type__": "cc.RigidBody2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 44
},
"enabledContactListener": true,
"bullet": false,
"awakeOnLoad": true,
"_group": 4,
"_type": 1,
"_allowSleep": false,
"_gravityScale": 1,
"_linearDamping": 0,
"_angularDamping": 0,
"_linearVelocity": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_angularVelocity": 0,
"_fixedRotation": false,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a5vv6W0YtAmJB1hZwCBALm"
},
{
"__type__": "cc.BoxCollider2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 46
},
"tag": 0,
"_group": 4,
"_density": 1,
"_sensor": true,
"_friction": 0.2,
"_restitution": 0,
"_offset": {
"__type__": "cc.Vec2",
"x": 0,
"y": 50
},
"_size": {
"__type__": "cc.Size",
"width": 30,
"height": 100
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "23j+p5lLdC+r4iKSVeLNM4"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "fdklpBwCBM/qJ4WFlQF3kT",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 26
},
{
"__id__": 14
}
]
}
]

View File

@@ -2,12 +2,12 @@
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "249c6cc6-2d0b-40f3-8e97-30fbeb15caf3",
"uuid": "48b244c4-b15f-4c6c-b468-c6b44aae439a",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "m1"
"syncNodeName": "0"
}
}

View File

@@ -22,38 +22,35 @@
"__id__": 2
},
{
"__id__": 10
"__id__": 14
},
{
"__id__": 22
},
{
"__id__": 34
"__id__": 26
}
],
"_active": true,
"_components": [
{
"__id__": 37
},
{
"__id__": 39
},
{
"__id__": 41
},
{
"__id__": 43
},
{
"__id__": 45
},
{
"__id__": 47
},
{
"__id__": 49
},
{
"__id__": 51
},
{
"__id__": 53
},
{
"__id__": 55
}
],
"_prefab": {
"__id__": 57
"__id__": 49
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -84,118 +81,6 @@
},
"_id": ""
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 3
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 2
},
"asset": {
"__uuid__": "1e4a101d-7d40-4611-8ccf-f2408bed7bf2",
"__expectedType__": "cc.Prefab"
},
"fileId": "68mbLQeptP8Kf2mAvL01yn",
"instance": {
"__id__": 4
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "b8gP2NuxNKNoICr9puaOd3",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 8
},
{
"__id__": 9
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_name"
],
"value": "shadow"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"68mbLQeptP8Kf2mAvL01yn"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 5,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "cc.Node",
"_name": "anm",
@@ -207,24 +92,24 @@
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 9
},
{
"__id__": 11
},
{
"__id__": 13
},
{
"__id__": 15
},
{
"__id__": 17
},
{
"__id__": 19
}
],
"_prefab": {
"__id__": 21
"__id__": 13
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -261,11 +146,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 12
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
@@ -289,11 +174,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 14
"__id__": 6
},
"_id": ""
},
@@ -307,11 +192,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 16
"__id__": 8
},
"_customMaterial": null,
"_srcBlendFactor": 2,
@@ -324,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,
@@ -340,7 +225,7 @@
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
@@ -355,11 +240,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 18
"__id__": 10
},
"playOnLoad": true,
"_clips": [
@@ -397,32 +282,16 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 20
"__id__": 12
},
"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": ""
},
{
@@ -449,14 +318,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 23
"__id__": 15
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 22
"__id__": 14
},
"asset": {
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
@@ -464,7 +333,7 @@
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": {
"__id__": 24
"__id__": 16
},
"targetOverrides": null
},
@@ -477,26 +346,26 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 17
},
{
"__id__": 19
},
{
"__id__": 20
},
{
"__id__": 21
},
{
"__id__": 22
},
{
"__id__": 23
},
{
"__id__": 25
},
{
"__id__": 27
},
{
"__id__": 28
},
{
"__id__": 29
},
{
"__id__": 30
},
{
"__id__": 31
},
{
"__id__": 33
}
],
"removedComponents": []
@@ -504,7 +373,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_name"
@@ -520,7 +389,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lpos"
@@ -535,7 +404,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lrot"
@@ -551,7 +420,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_euler"
@@ -566,7 +435,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_active"
@@ -576,7 +445,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 32
"__id__": 24
},
"propertyPath": [
"_contentSize"
@@ -596,7 +465,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lscale"
@@ -615,14 +484,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 35
"__id__": 27
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 34
"__id__": 26
},
"asset": {
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
@@ -630,7 +499,7 @@
},
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
"instance": {
"__id__": 36
"__id__": 28
},
"targetOverrides": null
},
@@ -644,22 +513,22 @@
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 37
"__id__": 29
},
{
"__id__": 39
"__id__": 31
},
{
"__id__": 40
"__id__": 32
},
{
"__id__": 41
"__id__": 33
},
{
"__id__": 42
"__id__": 34
},
{
"__id__": 44
"__id__": 36
}
],
"removedComponents": []
@@ -667,7 +536,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_name"
@@ -683,7 +552,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lpos"
@@ -698,7 +567,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lrot"
@@ -714,7 +583,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_euler"
@@ -729,7 +598,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 43
"__id__": 35
},
"propertyPath": [
"_lpos"
@@ -750,7 +619,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lscale"
@@ -772,7 +641,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 46
"__id__": 38
},
"_contentSize": {
"__type__": "cc.Size",
@@ -800,10 +669,10 @@
},
"_enabled": true,
"__prefab": {
"__id__": 48
"__id__": 40
},
"anm": {
"__id__": 13
"__id__": 5
},
"_id": ""
},
@@ -821,7 +690,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 50
"__id__": 42
},
"debugMode": false,
"_id": ""
@@ -840,7 +709,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 52
"__id__": 44
},
"enabledContactListener": true,
"bullet": false,
@@ -874,7 +743,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 54
"__id__": 46
},
"tag": 0,
"_group": 4,
@@ -908,7 +777,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 56
"__id__": 48
},
"playOnLoad": false,
"_clips": [],
@@ -932,13 +801,10 @@
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 34
"__id__": 26
},
{
"__id__": 22
},
{
"__id__": 2
"__id__": 14
}
]
}

View File

@@ -22,35 +22,35 @@
"__id__": 2
},
{
"__id__": 10
"__id__": 14
},
{
"__id__": 22
},
{
"__id__": 34
"__id__": 26
}
],
"_active": true,
"_components": [
{
"__id__": 37
},
{
"__id__": 39
},
{
"__id__": 41
},
{
"__id__": 43
},
{
"__id__": 45
},
{
"__id__": 47
},
{
"__id__": 49
},
{
"__id__": 51
},
{
"__id__": 53
}
],
"_prefab": {
"__id__": 55
"__id__": 49
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -81,118 +81,6 @@
},
"_id": ""
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 3
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 2
},
"asset": {
"__uuid__": "1e4a101d-7d40-4611-8ccf-f2408bed7bf2",
"__expectedType__": "cc.Prefab"
},
"fileId": "68mbLQeptP8Kf2mAvL01yn",
"instance": {
"__id__": 4
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "9aKnMFtc1GBrfBTCJ8TzgL",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 8
},
{
"__id__": 9
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_name"
],
"value": "shadow"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"68mbLQeptP8Kf2mAvL01yn"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 5,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "cc.Node",
"_name": "anm",
@@ -204,29 +92,29 @@
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 9
},
{
"__id__": 11
},
{
"__id__": 13
},
{
"__id__": 15
},
{
"__id__": 17
},
{
"__id__": 19
}
],
"_prefab": {
"__id__": 21
"__id__": 13
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -25,
"y": -24.925,
"z": 0
},
"_lrot": {
@@ -258,11 +146,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 12
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
@@ -286,11 +174,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 14
"__id__": 6
},
"_id": ""
},
@@ -304,11 +192,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 16
"__id__": 8
},
"_customMaterial": null,
"_srcBlendFactor": 2,
@@ -321,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,
@@ -337,7 +225,7 @@
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
@@ -346,76 +234,38 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "aapdDlt5hKmZ6bjST88uia"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 18
},
"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": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 20
"__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"
}
],
@@ -424,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",
@@ -446,14 +318,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 23
"__id__": 15
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 22
"__id__": 14
},
"asset": {
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
@@ -461,7 +333,7 @@
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": {
"__id__": 24
"__id__": 16
},
"targetOverrides": null
},
@@ -474,26 +346,26 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 17
},
{
"__id__": 19
},
{
"__id__": 20
},
{
"__id__": 21
},
{
"__id__": 22
},
{
"__id__": 23
},
{
"__id__": 25
},
{
"__id__": 27
},
{
"__id__": 28
},
{
"__id__": 29
},
{
"__id__": 30
},
{
"__id__": 31
},
{
"__id__": 33
}
],
"removedComponents": []
@@ -501,7 +373,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_name"
@@ -517,7 +389,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lpos"
@@ -532,7 +404,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lrot"
@@ -548,7 +420,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_euler"
@@ -563,7 +435,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_active"
@@ -573,7 +445,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 32
"__id__": 24
},
"propertyPath": [
"_contentSize"
@@ -593,7 +465,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lscale"
@@ -612,14 +484,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 35
"__id__": 27
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 34
"__id__": 26
},
"asset": {
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
@@ -627,7 +499,7 @@
},
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
"instance": {
"__id__": 36
"__id__": 28
},
"targetOverrides": null
},
@@ -641,22 +513,22 @@
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 37
"__id__": 29
},
{
"__id__": 39
"__id__": 31
},
{
"__id__": 40
"__id__": 32
},
{
"__id__": 41
"__id__": 33
},
{
"__id__": 42
"__id__": 34
},
{
"__id__": 44
"__id__": 36
}
],
"removedComponents": []
@@ -664,7 +536,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_name"
@@ -680,7 +552,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lpos"
@@ -688,14 +560,14 @@
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 80,
"y": 90.171,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lrot"
@@ -711,7 +583,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_euler"
@@ -726,7 +598,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 43
"__id__": 35
},
"propertyPath": [
"_lpos"
@@ -747,7 +619,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lscale"
@@ -769,7 +641,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 46
"__id__": 38
},
"_contentSize": {
"__type__": "cc.Size",
@@ -797,10 +669,10 @@
},
"_enabled": true,
"__prefab": {
"__id__": 48
"__id__": 40
},
"anm": {
"__id__": 13
"__id__": 5
},
"_id": ""
},
@@ -818,7 +690,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 50
"__id__": 42
},
"debugMode": false,
"_id": ""
@@ -837,7 +709,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 52
"__id__": 44
},
"enabledContactListener": true,
"bullet": false,
@@ -871,7 +743,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 54
"__id__": 46
},
"tag": 0,
"_group": 4,
@@ -895,6 +767,27 @@
"__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": {
@@ -908,13 +801,10 @@
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 34
"__id__": 26
},
{
"__id__": 22
},
{
"__id__": 2
"__id__": 14
}
]
}

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

@@ -22,38 +22,35 @@
"__id__": 2
},
{
"__id__": 10
"__id__": 14
},
{
"__id__": 22
},
{
"__id__": 34
"__id__": 26
}
],
"_active": true,
"_components": [
{
"__id__": 37
},
{
"__id__": 39
},
{
"__id__": 41
},
{
"__id__": 43
},
{
"__id__": 45
},
{
"__id__": 47
},
{
"__id__": 49
},
{
"__id__": 51
},
{
"__id__": 53
},
{
"__id__": 55
}
],
"_prefab": {
"__id__": 57
"__id__": 49
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -84,118 +81,6 @@
},
"_id": ""
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 3
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 2
},
"asset": {
"__uuid__": "1e4a101d-7d40-4611-8ccf-f2408bed7bf2",
"__expectedType__": "cc.Prefab"
},
"fileId": "68mbLQeptP8Kf2mAvL01yn",
"instance": {
"__id__": 4
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "de5bdlK1dIObTx4HjdOpaJ",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 8
},
{
"__id__": 9
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_name"
],
"value": "shadow"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"68mbLQeptP8Kf2mAvL01yn"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 5,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "cc.Node",
"_name": "anm",
@@ -207,24 +92,24 @@
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 9
},
{
"__id__": 11
},
{
"__id__": 13
},
{
"__id__": 15
},
{
"__id__": 17
},
{
"__id__": 19
}
],
"_prefab": {
"__id__": 21
"__id__": 13
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -261,11 +146,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 12
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
@@ -289,11 +174,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 14
"__id__": 6
},
"_id": ""
},
@@ -307,11 +192,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 16
"__id__": 8
},
"_customMaterial": null,
"_srcBlendFactor": 2,
@@ -324,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,
@@ -340,7 +225,7 @@
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
@@ -349,89 +234,70 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "aapdDlt5hKmZ6bjST88uia"
},
{
"__type__": "cc.Animation",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 10
},
"playOnLoad": true,
"_clips": [
{
"__uuid__": "b277aa55-1679-493f-8e83-dcda712bb82d",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "a8017a4f-e079-4b37-b0ce-647a5c68e11a",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "c4f77aa9-cf65-4577-96eb-50fcb7b9ed72",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "b5e9db6a-bad1-45a4-a01a-06c81519aab9",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "70d98337-6518-4d2f-a45e-6e7e6b3fd20c",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "406uXfKLJEbab+NVEqD1aS"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 18
"__id__": 12
},
"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": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 20
},
"playOnLoad": false,
"_clips": [
{
"__uuid__": "74e35021-ee4c-4ece-b56c-2b05ea5fb030",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "2fcf90db-b183-4351-a01f-97f674a2d5e8",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "1110692e-6a26-4b5d-9ced-74990a5d6151",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "179d8551-31f3-43a9-a55d-1dd1bf0a48c6",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "574966fb-4a2d-4f05-ab7c-b7603d6cfce2",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": {
"__uuid__": "74e35021-ee4c-4ece-b56c-2b05ea5fb030",
"__expectedType__": "cc.AnimationClip"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "06EKbjjoxNH7Ap9yy21xqN"
},
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -452,14 +318,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 23
"__id__": 15
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 22
"__id__": 14
},
"asset": {
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
@@ -467,7 +333,7 @@
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": {
"__id__": 24
"__id__": 16
},
"targetOverrides": null
},
@@ -480,26 +346,26 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 17
},
{
"__id__": 19
},
{
"__id__": 20
},
{
"__id__": 21
},
{
"__id__": 22
},
{
"__id__": 23
},
{
"__id__": 25
},
{
"__id__": 27
},
{
"__id__": 28
},
{
"__id__": 29
},
{
"__id__": 30
},
{
"__id__": 31
},
{
"__id__": 33
}
],
"removedComponents": []
@@ -507,7 +373,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_name"
@@ -523,7 +389,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lpos"
@@ -538,7 +404,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lrot"
@@ -554,7 +420,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_euler"
@@ -569,7 +435,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_active"
@@ -579,7 +445,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 32
"__id__": 24
},
"propertyPath": [
"_contentSize"
@@ -599,7 +465,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lscale"
@@ -618,14 +484,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 35
"__id__": 27
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 34
"__id__": 26
},
"asset": {
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
@@ -633,7 +499,7 @@
},
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
"instance": {
"__id__": 36
"__id__": 28
},
"targetOverrides": null
},
@@ -647,22 +513,22 @@
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 37
"__id__": 29
},
{
"__id__": 39
"__id__": 31
},
{
"__id__": 40
"__id__": 32
},
{
"__id__": 41
"__id__": 33
},
{
"__id__": 42
"__id__": 34
},
{
"__id__": 44
"__id__": 36
}
],
"removedComponents": []
@@ -670,7 +536,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_name"
@@ -686,7 +552,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lpos"
@@ -694,14 +560,14 @@
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 80,
"y": 90.171,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lrot"
@@ -717,7 +583,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_euler"
@@ -732,7 +598,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 43
"__id__": 35
},
"propertyPath": [
"_lpos"
@@ -753,7 +619,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lscale"
@@ -775,7 +641,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 46
"__id__": 38
},
"_contentSize": {
"__type__": "cc.Size",
@@ -803,10 +669,10 @@
},
"_enabled": true,
"__prefab": {
"__id__": 48
"__id__": 40
},
"anm": {
"__id__": 13
"__id__": 5
},
"_id": ""
},
@@ -824,7 +690,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 50
"__id__": 42
},
"debugMode": false,
"_id": ""
@@ -843,7 +709,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 52
"__id__": 44
},
"enabledContactListener": true,
"bullet": false,
@@ -877,7 +743,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 54
"__id__": 46
},
"tag": 0,
"_group": 4,
@@ -911,7 +777,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 56
"__id__": 48
},
"playOnLoad": false,
"_clips": [],
@@ -935,13 +801,10 @@
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 34
"__id__": 26
},
{
"__id__": 22
},
{
"__id__": 2
"__id__": 14
}
]
}

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

@@ -1,945 +0,0 @@
[
{
"__type__": "cc.Prefab",
"_name": "ha4",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "ha4",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
},
{
"__id__": 10
},
{
"__id__": 22
},
{
"__id__": 34
}
],
"_active": true,
"_components": [
{
"__id__": 45
},
{
"__id__": 47
},
{
"__id__": 49
},
{
"__id__": 51
},
{
"__id__": 53
},
{
"__id__": 55
}
],
"_prefab": {
"__id__": 57
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -0.041,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 1,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 3
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 2
},
"asset": {
"__uuid__": "1e4a101d-7d40-4611-8ccf-f2408bed7bf2",
"__expectedType__": "cc.Prefab"
},
"fileId": "68mbLQeptP8Kf2mAvL01yn",
"instance": {
"__id__": 4
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "e3K5nHyPhHN4P69+10ibo3",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 8
},
{
"__id__": 9
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_name"
],
"value": "shadow"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"68mbLQeptP8Kf2mAvL01yn"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 5,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "cc.Node",
"_name": "anm",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 11
},
{
"__id__": 13
},
{
"__id__": 15
},
{
"__id__": 17
},
{
"__id__": 19
}
],
"_prefab": {
"__id__": 21
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -25,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": -1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 1,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 12
},
"_contentSize": {
"__type__": "cc.Size",
"width": 128,
"height": 128
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "9eaEPPEkdKYYfWIxgJ1KbU"
},
{
"__type__": "4ba4awuz8tF34rq4TkZ9W1S",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 14
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "569pdLaDNB6qtHi4mnEa2p"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 16
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e6c6a",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "aapdDlt5hKmZ6bjST88uia"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 18
},
"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": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 20
},
"playOnLoad": false,
"_clips": [
{
"__uuid__": "1f1bb53e-091b-46a6-b5f8-cf6b5337adcf",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "80fd4adf-5192-43fe-8eb1-250b9b95eda6",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "6911cab0-fbaa-4d7c-ba55-179d521c67c8",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "5d9dc8c2-a688-48c8-85a5-9edd8401b3a6",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "4665ac1c-4f18-44e8-a4d1-6716bf68da11",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "31Ly084eZNZJBKbriZpwZP"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "4aKyovCOhDJpr23Of35+5a",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 23
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 22
},
"asset": {
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
"__expectedType__": "cc.Prefab"
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": {
"__id__": 24
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "3a1pwLAh1NkYnlDVrAFcnS",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 25
},
{
"__id__": 27
},
{
"__id__": 28
},
{
"__id__": 29
},
{
"__id__": 30
},
{
"__id__": 31
},
{
"__id__": 33
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_name"
],
"value": "shielded"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"c46/YsCPVOJYA4mWEpNYRx"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_active"
],
"value": false
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 32
},
"propertyPath": [
"_contentSize"
],
"value": {
"__type__": "cc.Size",
"width": 120,
"height": 100
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"63NP9yq3hEUKD/OZZZ5t7x"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_lscale"
],
"value": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
}
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 35
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 34
},
"asset": {
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
"__expectedType__": "cc.Prefab"
},
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
"instance": {
"__id__": 36
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "69IAw7dThHvIlVtTfXOVMZ",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 37
},
{
"__id__": 39
},
{
"__id__": 40
},
{
"__id__": 41
},
{
"__id__": 42
},
{
"__id__": 44
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
},
"propertyPath": [
"_name"
],
"value": "top"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"5fqU0L3/FOhKaco5UkHuWT"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 80,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 43
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 10.531,
"z": 0
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"16MuhUBUpB2ZdBTYflEf1n"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
},
"propertyPath": [
"_lscale"
],
"value": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
}
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 46
},
"_contentSize": {
"__type__": "cc.Size",
"width": 80,
"height": 100
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "14OhXRCixNOaApgow/hFbp"
},
{
"__type__": "a0379fmhvBHcbNcBF/l43O8",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 48
},
"anm": {
"__id__": 13
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "73PcRpG0xKxJpIRC2zbI/o"
},
{
"__type__": "873f8d+SolMEo8DiTTxZRh4",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 50
},
"debugMode": false,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "ae2ywFEqlJ26Sq7z7AtGgk"
},
{
"__type__": "cc.RigidBody2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 52
},
"enabledContactListener": true,
"bullet": false,
"awakeOnLoad": true,
"_group": 4,
"_type": 1,
"_allowSleep": false,
"_gravityScale": 1,
"_linearDamping": 0,
"_angularDamping": 0,
"_linearVelocity": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_angularVelocity": 0,
"_fixedRotation": false,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a5vv6W0YtAmJB1hZwCBALm"
},
{
"__type__": "cc.BoxCollider2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 54
},
"tag": 0,
"_group": 4,
"_density": 1,
"_sensor": true,
"_friction": 0.2,
"_restitution": 0,
"_offset": {
"__type__": "cc.Vec2",
"x": 0,
"y": 50
},
"_size": {
"__type__": "cc.Size",
"width": 30,
"height": 100
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "23j+p5lLdC+r4iKSVeLNM4"
},
{
"__type__": "cc.Animation",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 56
},
"playOnLoad": false,
"_clips": [],
"_defaultClip": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "49+IQe4gZPPYzJ/FgxeX/O"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "fdklpBwCBM/qJ4WFlQF3kT",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 34
},
{
"__id__": 22
},
{
"__id__": 2
}
]
}
]

View File

@@ -22,38 +22,32 @@
"__id__": 2
},
{
"__id__": 10
"__id__": 14
},
{
"__id__": 22
},
{
"__id__": 34
"__id__": 26
}
],
"_active": true,
"_components": [
{
"__id__": 37
},
{
"__id__": 39
},
{
"__id__": 41
},
{
"__id__": 43
},
{
"__id__": 45
},
{
"__id__": 47
},
{
"__id__": 49
},
{
"__id__": 51
},
{
"__id__": 53
},
{
"__id__": 55
}
],
"_prefab": {
"__id__": 57
"__id__": 47
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -84,118 +78,6 @@
},
"_id": ""
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 3
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 2
},
"asset": {
"__uuid__": "1e4a101d-7d40-4611-8ccf-f2408bed7bf2",
"__expectedType__": "cc.Prefab"
},
"fileId": "68mbLQeptP8Kf2mAvL01yn",
"instance": {
"__id__": 4
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "20QrZREuhPobPDc/dEz+BM",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 8
},
{
"__id__": 9
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_name"
],
"value": "shadow"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"68mbLQeptP8Kf2mAvL01yn"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 5,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "cc.Node",
"_name": "anm",
@@ -207,24 +89,24 @@
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 9
},
{
"__id__": 11
},
{
"__id__": 13
},
{
"__id__": 15
},
{
"__id__": 17
},
{
"__id__": 19
}
],
"_prefab": {
"__id__": 21
"__id__": 13
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -261,11 +143,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 12
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
@@ -289,11 +171,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 14
"__id__": 6
},
"_id": ""
},
@@ -307,11 +189,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 16
"__id__": 8
},
"_customMaterial": null,
"_srcBlendFactor": 2,
@@ -324,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,
@@ -340,7 +222,7 @@
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
@@ -349,76 +231,38 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "aapdDlt5hKmZ6bjST88uia"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 18
},
"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": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 20
"__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"
}
],
@@ -427,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",
@@ -449,14 +315,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 23
"__id__": 15
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 22
"__id__": 14
},
"asset": {
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
@@ -464,7 +330,7 @@
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": {
"__id__": 24
"__id__": 16
},
"targetOverrides": null
},
@@ -477,26 +343,26 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 17
},
{
"__id__": 19
},
{
"__id__": 20
},
{
"__id__": 21
},
{
"__id__": 22
},
{
"__id__": 23
},
{
"__id__": 25
},
{
"__id__": 27
},
{
"__id__": 28
},
{
"__id__": 29
},
{
"__id__": 30
},
{
"__id__": 31
},
{
"__id__": 33
}
],
"removedComponents": []
@@ -504,7 +370,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_name"
@@ -520,7 +386,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lpos"
@@ -535,7 +401,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lrot"
@@ -551,7 +417,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_euler"
@@ -566,7 +432,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_active"
@@ -576,7 +442,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 32
"__id__": 24
},
"propertyPath": [
"_contentSize"
@@ -596,7 +462,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
"__id__": 18
},
"propertyPath": [
"_lscale"
@@ -615,14 +481,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 35
"__id__": 27
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 34
"__id__": 26
},
"asset": {
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
@@ -630,7 +496,7 @@
},
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
"instance": {
"__id__": 36
"__id__": 28
},
"targetOverrides": null
},
@@ -644,22 +510,22 @@
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 37
"__id__": 29
},
{
"__id__": 39
"__id__": 31
},
{
"__id__": 40
"__id__": 32
},
{
"__id__": 41
"__id__": 33
},
{
"__id__": 42
"__id__": 34
},
{
"__id__": 44
"__id__": 36
}
],
"removedComponents": []
@@ -667,7 +533,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_name"
@@ -683,7 +549,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lpos"
@@ -691,14 +557,14 @@
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 80,
"y": 87.191,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lrot"
@@ -714,7 +580,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_euler"
@@ -729,7 +595,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 43
"__id__": 35
},
"propertyPath": [
"_lpos"
@@ -750,7 +616,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
"__id__": 30
},
"propertyPath": [
"_lscale"
@@ -772,7 +638,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 46
"__id__": 38
},
"_contentSize": {
"__type__": "cc.Size",
@@ -800,10 +666,10 @@
},
"_enabled": true,
"__prefab": {
"__id__": 48
"__id__": 40
},
"anm": {
"__id__": 13
"__id__": 5
},
"_id": ""
},
@@ -821,7 +687,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 50
"__id__": 42
},
"debugMode": false,
"_id": ""
@@ -840,7 +706,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 52
"__id__": 44
},
"enabledContactListener": true,
"bullet": false,
@@ -874,7 +740,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 54
"__id__": 46
},
"tag": 0,
"_group": 4,
@@ -898,27 +764,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "23j+p5lLdC+r4iKSVeLNM4"
},
{
"__type__": "cc.Animation",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 56
},
"playOnLoad": false,
"_clips": [],
"_defaultClip": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "49+IQe4gZPPYzJ/FgxeX/O"
},
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -932,13 +777,10 @@
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 34
"__id__": 26
},
{
"__id__": 22
},
{
"__id__": 2
"__id__": 14
}
]
}

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,945 +0,0 @@
[
{
"__type__": "cc.Prefab",
"_name": "hc2",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "hc2",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
},
{
"__id__": 10
},
{
"__id__": 22
},
{
"__id__": 34
}
],
"_active": true,
"_components": [
{
"__id__": 45
},
{
"__id__": 47
},
{
"__id__": 49
},
{
"__id__": 51
},
{
"__id__": 53
},
{
"__id__": 55
}
],
"_prefab": {
"__id__": 57
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -0.041,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 1,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 3
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 2
},
"asset": {
"__uuid__": "1e4a101d-7d40-4611-8ccf-f2408bed7bf2",
"__expectedType__": "cc.Prefab"
},
"fileId": "68mbLQeptP8Kf2mAvL01yn",
"instance": {
"__id__": 4
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "de1paTI/hA0auAfPAuOpPJ",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 8
},
{
"__id__": 9
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_name"
],
"value": "shadow"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"68mbLQeptP8Kf2mAvL01yn"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 5,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "cc.Node",
"_name": "anm",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 11
},
{
"__id__": 13
},
{
"__id__": 15
},
{
"__id__": 17
},
{
"__id__": 19
}
],
"_prefab": {
"__id__": 21
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -25,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": -1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 1,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 12
},
"_contentSize": {
"__type__": "cc.Size",
"width": 128,
"height": 128
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "9eaEPPEkdKYYfWIxgJ1KbU"
},
{
"__type__": "4ba4awuz8tF34rq4TkZ9W1S",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 14
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "569pdLaDNB6qtHi4mnEa2p"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 16
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@28c51",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": {
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "aapdDlt5hKmZ6bjST88uia"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 18
},
"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": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 20
},
"playOnLoad": false,
"_clips": [
{
"__uuid__": "83e8b59a-9b9c-41d1-b039-123d8ee3c2ca",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "565db9a3-5c7c-4936-85d2-fefc87086597",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "63385316-79d3-4237-a421-10504927ff71",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "270a74c7-b521-4688-9627-7618cee322c7",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "c075034e-2f66-4fc1-8607-90c16fca23f7",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "d9wky9J+VJKrB9kRloK1Zs"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "4aKyovCOhDJpr23Of35+5a",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 23
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 22
},
"asset": {
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
"__expectedType__": "cc.Prefab"
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": {
"__id__": 24
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "3a1pwLAh1NkYnlDVrAFcnS",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 25
},
{
"__id__": 27
},
{
"__id__": 28
},
{
"__id__": 29
},
{
"__id__": 30
},
{
"__id__": 31
},
{
"__id__": 33
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_name"
],
"value": "shielded"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"c46/YsCPVOJYA4mWEpNYRx"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_active"
],
"value": false
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 32
},
"propertyPath": [
"_contentSize"
],
"value": {
"__type__": "cc.Size",
"width": 120,
"height": 100
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"63NP9yq3hEUKD/OZZZ5t7x"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 26
},
"propertyPath": [
"_lscale"
],
"value": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
}
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 35
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 34
},
"asset": {
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
"__expectedType__": "cc.Prefab"
},
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
"instance": {
"__id__": 36
},
"targetOverrides": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "69IAw7dThHvIlVtTfXOVMZ",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 37
},
{
"__id__": 39
},
{
"__id__": 40
},
{
"__id__": 41
},
{
"__id__": 42
},
{
"__id__": 44
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
},
"propertyPath": [
"_name"
],
"value": "top"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"5fqU0L3/FOhKaco5UkHuWT"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 80,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 43
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 10.531,
"z": 0
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"16MuhUBUpB2ZdBTYflEf1n"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 38
},
"propertyPath": [
"_lscale"
],
"value": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
}
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 46
},
"_contentSize": {
"__type__": "cc.Size",
"width": 80,
"height": 100
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "14OhXRCixNOaApgow/hFbp"
},
{
"__type__": "a0379fmhvBHcbNcBF/l43O8",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 48
},
"anm": {
"__id__": 13
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "73PcRpG0xKxJpIRC2zbI/o"
},
{
"__type__": "873f8d+SolMEo8DiTTxZRh4",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 50
},
"debugMode": false,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "ae2ywFEqlJ26Sq7z7AtGgk"
},
{
"__type__": "cc.RigidBody2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 52
},
"enabledContactListener": true,
"bullet": false,
"awakeOnLoad": true,
"_group": 4,
"_type": 1,
"_allowSleep": false,
"_gravityScale": 1,
"_linearDamping": 0,
"_angularDamping": 0,
"_linearVelocity": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_angularVelocity": 0,
"_fixedRotation": false,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a5vv6W0YtAmJB1hZwCBALm"
},
{
"__type__": "cc.BoxCollider2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 54
},
"tag": 0,
"_group": 4,
"_density": 1,
"_sensor": true,
"_friction": 0.2,
"_restitution": 0,
"_offset": {
"__type__": "cc.Vec2",
"x": 0,
"y": 50
},
"_size": {
"__type__": "cc.Size",
"width": 30,
"height": 100
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "23j+p5lLdC+r4iKSVeLNM4"
},
{
"__type__": "cc.Animation",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 56
},
"playOnLoad": false,
"_clips": [],
"_defaultClip": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "49+IQe4gZPPYzJ/FgxeX/O"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "fdklpBwCBM/qJ4WFlQF3kT",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 34
},
{
"__id__": 22
},
{
"__id__": 2
}
]
}
]

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": "d290d18e-9f37-446b-bb7e-5a9e34cd5862",
"uuid": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943",
"files": [
".json",
".png"
@@ -10,8 +10,8 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d290d18e-9f37-446b-bb7e-5a9e34cd5862@6c48a",
"displayName": "o789",
"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": "d290d18e-9f37-446b-bb7e-5a9e34cd5862",
"imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943",
"visible": false
},
"ver": "1.0.22",
@@ -37,6 +37,6 @@
"type": "texture",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d290d18e-9f37-446b-bb7e-5a9e34cd5862@6c48a"
"redirect": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a"
}
}

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"
}
}

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"
}
}

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": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee",
"uuid": "a30edf8a-0c58-410e-9f7f-529c82758cd0",
"files": [
".json",
".png"
@@ -10,8 +10,8 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a",
"displayName": "k5m5",
"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": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee",
"imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0",
"visible": false
},
"ver": "1.0.22",
@@ -37,6 +37,6 @@
"type": "texture",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "20e6c79c-e7a6-40a7-a2cc-c8e101ad68ee@6c48a"
"redirect": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a"
}
}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.5333333333333333,
"_duration": 0.6666666666666666,
"_hash": 500763545,
"_tracks": [
{
@@ -76,71 +76,91 @@
0.4,
0.43333333333333335,
0.4666666666666667,
0.5
0.5,
0.5333333333333333,
0.5666666666666667,
0.6,
0.6333333333333333
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@cea12",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e9205",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@0b41a",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@35cb3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@418e0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@20d4b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@21d56",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0f1aa",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@8aa15",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cbd6c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@98a04",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d6f67",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@ab77c",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@993b3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@3c145",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f23a3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@9cdac",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@85956",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@23fda",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e66fc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f4d14",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0b4f6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1b9a8",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ec4aa",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@800f0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@64b4c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@19235",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@14bf2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@345a2",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@24319",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d911c",
"__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"
}
]

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.6,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -69,43 +69,58 @@
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333
0.5333333333333333,
0.6,
0.6666666666666666,
0.7333333333333333
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@85704",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@85704",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@35219",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@35219",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d748d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d748d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@92027",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@92027",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4d3d4",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4d3d4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@18367",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@18367",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@295fd",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@295fd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@7bb9f",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7bb9f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5cd54",
"__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"
}
]

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.45,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -69,43 +69,78 @@
0.25,
0.3,
0.35,
0.4
0.4,
0.45,
0.5,
0.55,
0.6,
0.65,
0.7,
0.75
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@46381",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e3af9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e9823",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5cb03",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@40049",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@78df0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@598fa",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7b3fb",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2ac56",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0741b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5328c",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@27b3e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@164e0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a84bd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@02442",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b1f80",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d5f9e",
"__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"
}
]

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -73,59 +73,74 @@
0.3,
0.3333333333333333,
0.36666666666666664,
0.4
0.4,
0.43333333333333335,
0.4666666666666667,
0.5
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5a47e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a2ae4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f26c6",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4d9fe",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@761bc",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@93628",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@70ef7",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6d64b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@dddeb",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@849c2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2b5f0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@98343",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@94bad",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7dc3d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@850d9",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@761d4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e79b7",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@05c47",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2cd62",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ecc1a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4abe8",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@adbb1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f51f4",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ddcc8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@48a32",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8dde2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@97161",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@10581",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9c742",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -7,11 +7,11 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 12,
"sample": 15,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.5,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -62,35 +62,45 @@
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666,
0.25,
0.06666666666666667,
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333,
0.4166666666666667
0.4,
0.4666666666666667
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@28ccb",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@86ff6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5c1ba",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ef970",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@bca30",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@68ab0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@6d60e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8d02d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e67ee",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cf58c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f11ef",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9a164",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2fa19",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3b56d",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"89017205-6a1d-4903-936f-c405888094bd","files":[],"subMetas":{},"userData":{}}
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"97e6ae27-9f43-4343-8801-ecdfd49cd39e","files":[],"subMetas":{},"userData":{}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.5333333333333333,
"_duration": 0.6666666666666666,
"_hash": 500763545,
"_tracks": [
{
@@ -76,71 +76,91 @@
0.4,
0.43333333333333335,
0.4666666666666667,
0.5
0.5,
0.5333333333333333,
0.5666666666666667,
0.6,
0.6333333333333333
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e0a5b",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ac518",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@62e7f",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c6f18",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e0882",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@01a40",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e53d6",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e12b7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@0803a",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1bfe6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@c891e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b0dc3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@01ec2",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0c2da",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@ffb04",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0188e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@6a4f9",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1cefc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@9e70e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@065ff",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@73592",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c16e3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@95945",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2238e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@920c0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d48b4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@8f845",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e81e5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@81ade",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8198a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4d224",
"__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"
}
]

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

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.6,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -69,43 +69,58 @@
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333
0.5333333333333333,
0.6,
0.6666666666666666,
0.7333333333333333
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4fb61",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1e4e3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@3e6c5",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b7722",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4932f",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@03c0e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@13597",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@37ecb",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@be134",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e4794",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@6dffd",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c3a10",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e8c23",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@33928",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4fa63",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@00407",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@b0402",
"__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"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"5d85a577-a49f-4ddc-a7b7-12a2721081d3","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

@@ -7,11 +7,11 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 20,
"sample": 24,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.45,
"_duration": 0.6666666666666666,
"_hash": 500763545,
"_tracks": [
{
@@ -62,50 +62,85 @@
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.05,
0.1,
0.15,
0.2,
0.041666666666666664,
0.08333333333333333,
0.125,
0.16666666666666666,
0.20833333333333334,
0.25,
0.3,
0.35,
0.4
0.2916666666666667,
0.3333333333333333,
0.375,
0.4166666666666667,
0.4583333333333333,
0.5,
0.5416666666666666,
0.5833333333333334,
0.625
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@a7cad",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2c738",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@081ac",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b12ff",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@8fc27",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a3132",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@90810",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e6ca6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@94f5e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5ca04",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@bc38a",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@62e36",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@76fc6",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@220b1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d2151",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@40cce",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@08d14",
"__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"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"774fcb32-b38f-4a74-a602-07b6115e8d64","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"}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -73,59 +73,74 @@
0.3,
0.3333333333333333,
0.36666666666666664,
0.4
0.4,
0.43333333333333335,
0.4666666666666667,
0.5
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@29293",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f5571",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@4f9cd",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ae255",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@93898",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6f886",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@9732d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@667c4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@b2cd5",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6bb3f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@7e86e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@73c9c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@b58b4",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8cd43",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@165f7",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ecebe",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@08770",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@10a88",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@6ff7e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3c8b8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e143d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3e046",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@ff726",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@59bf8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5f6f4",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@47aa2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c3781",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4c3ba",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@60710",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a6bf4efc-ad53-4f37-b972-8fd0eb7f2ee6","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a8ecc076-98b4-45c6-99e1-ab67992682fa","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.4,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -66,31 +66,41 @@
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333
0.3333333333333333,
0.4,
0.4666666666666667
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@378ca",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7b1f5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@ee1a2",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cf210",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@8d3f0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a5c45",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@98226",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5c218",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@a44ec",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@bbab0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@775aa",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b1844",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9b1f5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c721c",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"6e473d77-a270-42c3-adc7-c675666f280d","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"04b4ebf7-303b-495f-a3e9-640831dbb353","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}

View File

@@ -1 +1 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"633e4cde-ab87-41ca-b2f3-729d8c5846e2","files":[],"subMetas":{},"userData":{}}
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"a6fcca3b-9137-4073-b74a-bdfa6a707593","files":[],"subMetas":{},"userData":{}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.5333333333333333,
"_duration": 0.6666666666666666,
"_hash": 500763545,
"_tracks": [
{
@@ -76,71 +76,91 @@
0.4,
0.43333333333333335,
0.4666666666666667,
0.5
0.5,
0.5333333333333333,
0.5666666666666667,
0.6,
0.6333333333333333
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1d762",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@57040",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@a5f7c",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e5f42",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@610d9",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@470a7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e385a",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@61856",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@bd1ab",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@29039",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5670e",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d340e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@0a55a",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@427f4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@88d75",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6d818",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@0d6fb",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@fe8d1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@69473",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@58ba7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@8f05c",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@456ce",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@bae36",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9bbc8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@741b3",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@de758",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@7eca1",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@38210",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d45dc",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2ea37",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@72cc4",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@bcfae",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@38bd1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@be458",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@79fcc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b4692",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"574966fb-4a2d-4f05-ab7c-b7603d6cfce2","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b277aa55-1679-493f-8e83-dcda712bb82d","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.6,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -69,43 +69,58 @@
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333
0.5333333333333333,
0.6,
0.6666666666666666,
0.7333333333333333
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@b7500",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7d01e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@799c1",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@82741",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@89b44",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@51359",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@204c2",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@84421",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@ef8a1",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f11d1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@5e04f",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8329e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@c6568",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c3865",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e6c21",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@52c75",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@a2556",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@271e3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ba0e0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c480a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@71e25",
"__expectedType__": "cc.SpriteFrame"
}
]

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":"a8017a4f-e079-4b37-b0ce-647a5c68e11a","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.45,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -69,43 +69,78 @@
0.25,
0.3,
0.35,
0.4
0.4,
0.45,
0.5,
0.55,
0.6,
0.65,
0.7,
0.75
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2c1ea",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@febca",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e3719",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@faba7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@417f7",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@dbe54",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1bdaa",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@afb16",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@2c8e7",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f5238",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@36b73",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5bee7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@fde92",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@06414",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@3d326",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@04443",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@aac63",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b2f8b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@3c3d1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ce34d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@15051",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@571ae",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5c2e4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@078fc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8c7e8",
"__expectedType__": "cc.SpriteFrame"
}
]

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":"c4f77aa9-cf65-4577-96eb-50fcb7b9ed72","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -73,59 +73,74 @@
0.3,
0.3333333333333333,
0.36666666666666664,
0.4
0.4,
0.43333333333333335,
0.4666666666666667,
0.5
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@a7a2d",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@87623",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e838b",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9d68d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@c02b4",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ff087",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@294f8",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a32d5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e2bdd",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@61087",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@c9436",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@82719",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@786b6",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@70530",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@e265c",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7a7e5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@3ec3d",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9756b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@bbd0f",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@4647d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@d8a81",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a9093",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@ca166",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@15d31",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@1909c",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d1072",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b65f5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@119da",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@0c4b3",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"2fcf90db-b183-4351-a01f-97f674a2d5e8","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b5e9db6a-bad1-45a4-a01a-06c81519aab9","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.4,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -66,31 +66,41 @@
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333
0.3333333333333333,
0.4,
0.4666666666666667
],
"_values": [
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@6dcbf",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c25f8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@9592c",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b0b5e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@8b83b",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@eadff",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@84bee",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@76880",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@b64af",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@8563d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@a831a",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1703c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@53293",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c3736",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"74e35021-ee4c-4ece-b56c-2b05ea5fb030","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"70d98337-6518-4d2f-a45e-6e7e6b3fd20c","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}

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
}
]

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__": "1fda2882-2baf-4446-96cc-492ef2722f05@7c477",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@15159",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@220eb",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@feb53",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@f2a40",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@a3a51",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +1 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"fe03c008-45b6-4b21-a414-3e53f77cd1eb","files":[],"subMetas":{},"userData":{}}
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"23745e1e-bf2b-4d9f-a9d4-3319b0d8f9bc","files":[],"subMetas":{},"userData":{}}

View File

@@ -7,11 +7,11 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"sample": 20,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.26666666666666666,
"_duration": 0.5,
"_hash": 500763545,
"_tracks": [
{
@@ -62,45 +62,55 @@
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.03333333333333333,
0.06666666666666667,
0.05,
0.1,
0.13333333333333333,
0.16666666666666666,
0.15,
0.2,
0.23333333333333334
0.25,
0.3,
0.35,
0.4,
0.45
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@3288d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9d33b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c7b8b",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@05d15",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@3d215",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@88fc8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@cc3d6",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@96402",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c53b6",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@bce04",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8ea02",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@84181",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6a172",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@02d80",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@65eee",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0531c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0e1e6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@93ee2",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1,13 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"d795f0b0-cd12-43db-bc47-79dddf1d7528","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}}
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "c7a0ded9-a870-4fc4-93e2-1bec11801142",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "atk0"
}
}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.6,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -69,43 +69,58 @@
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333
0.5333333333333333,
0.6,
0.6666666666666666,
0.7333333333333333
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@14e00",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@14e00",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@52cd6",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@52cd6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d8da8",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d8da8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@8edd3",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8edd3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@1a65e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1a65e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a81aa",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a81aa",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@dfcd0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dfcd0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@72c5c",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@72c5c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@49f37",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@49f37",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cbe0f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@140ce",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@67242",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"fed4df36-6a3f-4a12-a6e5-2a5ad140efbf","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"9098ce69-33e0-41d6-ab79-274accd1fa56","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.45,
"_duration": 0.6,
"_hash": 500763545,
"_tracks": [
{
@@ -69,43 +69,58 @@
0.25,
0.3,
0.35,
0.4
0.4,
0.45,
0.5,
0.55
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@82ec1",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@44e63",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7830e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6c9b8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@471b2",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@616db",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@0466c",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c9b4d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e30b5",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8cb7f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d8e62",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@493e4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c5dd0",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6fa3b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7b64a",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f31a4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9c2bd",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dc6dc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c0d2b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cb359",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dff2f",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"2d5be258-449e-43a6-bf51-11e7cbf7ce0a","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"fbf32dae-f240-47a6-9aa5-b4f8b01a87af","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -73,59 +73,74 @@
0.3,
0.3333333333333333,
0.36666666666666664,
0.4
0.4,
0.43333333333333335,
0.4666666666666667,
0.5
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@73b8b",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@48efd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5847f",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a8748",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c83ed",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f3d8c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b502d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7840a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5f50e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@329bd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e6eb1",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6c7f7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a7cdc",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e1b56",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6dfd4",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@13af7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@5725a",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7fd65",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@de419",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@80024",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b489b",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1ddfb",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@a0b97",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5bc23",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@23fcf",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@77111",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@11326",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@756bc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c43be",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"69f355b0-4430-4b47-9784-545110b51829","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"56628bc8-a6c1-4c3d-8326-8a28b03af883","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.4,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -66,31 +66,41 @@
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333
0.3333333333333333,
0.4,
0.4666666666666667
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d3816",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d3816",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@81ca7",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@81ca7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c5456",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c5456",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@230fa",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@230fa",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@425d2",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@425d2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c347a",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c347a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@23920",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8041d",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"034e64ba-3ad5-4f85-94e7-315de6a7f508","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"5390adef-a142-406a-9324-2fa2baefd64e","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}

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,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,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 +1 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"471b16f3-f2f1-45b1-975d-c9b11aace269","files":[],"subMetas":{},"userData":{}}
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"12ecfa94-d93b-4dd3-a654-df3380f1f571","files":[],"subMetas":{},"userData":{}}

View File

@@ -7,11 +7,11 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"sample": 20,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.26666666666666666,
"_duration": 0.5,
"_hash": 500763545,
"_tracks": [
{
@@ -62,45 +62,55 @@
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.03333333333333333,
0.06666666666666667,
0.05,
0.1,
0.13333333333333333,
0.16666666666666666,
0.15,
0.2,
0.23333333333333334
0.25,
0.3,
0.35,
0.4,
0.45
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ca093",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@01fa0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@b8018",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@39536",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e3878",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a8e8e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@65d65",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@5164f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@4c49c",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1c0fd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@61a82",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@54561",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c58c3",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9326b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@0ba45",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6c817",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1bf74",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ff446",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

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

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.6,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -69,43 +69,58 @@
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333
0.5333333333333333,
0.6,
0.6666666666666666,
0.7333333333333333
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@26070",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@26070",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@27101",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@27101",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ae691",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@ae691",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d730e",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d730e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@c2ff5",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c2ff5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d2d4a",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d2d4a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@37378",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@37378",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@aa382",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@aa382",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@556be",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@556be",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@05437",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@27a42",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@9a41a",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"ef272738-5f27-4ff5-aac8-3522466b7b88","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"8f095457-d3e1-408c-b1eb-427651b92c4c","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.45,
"_duration": 0.6,
"_hash": 500763545,
"_tracks": [
{
@@ -69,43 +69,58 @@
0.25,
0.3,
0.35,
0.4
0.4,
0.45,
0.5,
0.55
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d1898",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@b9d02",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d66d2",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@c530f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@daa29",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@6d46e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@907a2",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@af68e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@f8023",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@194c7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@fb67c",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@1fffc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@21017",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@d70d9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@38ea1",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@73337",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@17c0b",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@32630",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@03301",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@79887",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f4ea4",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

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

View File

@@ -11,7 +11,7 @@
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.43333333333333335,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -73,59 +73,74 @@
0.3,
0.3333333333333333,
0.36666666666666664,
0.4
0.4,
0.43333333333333335,
0.4666666666666667,
0.5
],
"_values": [
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@42c1f",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@311b1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7889e",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@f95d2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@6e363",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@eba89",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@e4f1f",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@a9183",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@bcf6c",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@2d154",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@9183f",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@287ab",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@05513",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@44853",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@dce9b",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@7dfa2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@7a13e",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e52f1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@d3bbd",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e026b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@50498",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@3b42f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@ac6a4",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@e435c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "880e4caa-854e-4e80-9ab5-d3d587e4dd4d@618da",
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@441f1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@0e11a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@65cf5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "fa25ac4e-a686-4a67-a392-d88e1cc4468b@eb7ff",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

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

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