17 Commits

Author SHA1 Message Date
2ff7aab7c2 删除旧技能预制体 2025-10-19 20:36:28 +08:00
cbe15d4d20 refactor(map): 移除 MissionHomeComp 中未使用的 HeroPageComp 导入
- 删除了不再使用的 HeroPageComp 模块导入
- 减少了代码冗余,优化了依赖管理
- 提升了代码的可维护性和清晰度
2025-10-19 20:28:45 +08:00
ff6091b3e2 fix(game): 修复云端数据保存与获取逻辑
- 在SingletonModuleComp中增加云端数据保存成功日志输出
- 调整云端数据获取失败时的警告信息
- 初始化流程中云端登录成功后调用更新云端数据接口
- 任务开始时同步调用云端数据更新和获取接口
- 移除MissionHomeComp中未使用的HeroPageComp导入声明
2025-10-19 20:28:25 +08:00
1c40c10210 重构了云函数 2025-10-19 20:10:19 +08:00
cfb6819bc7 refactor(common): 重构游戏数据同步与单例模块代码
- 移除 GameDataSyncManager 类及相关依赖,简化数据同步管理逻辑
- 在 SingletonModuleComp 中集成数据管理功能,使用本地数组替代字典结构存储英雄数据
- 优化本地与云端数据同步方法,适配云函数接口改动
- 修改英雄判断逻辑,支持基于数组的查询方式
- 修正金币数据的增减接口,增加异步云调用与本地更新的统一处理
- 删除冗余注释及无用代码,提升代码可读性和维护性
- 调整数据结构定义和类型声明,保障类型安全与代码健壮性
2025-10-19 18:05:45 +08:00
3f6b94af0e refactor(mission): 优化肉鸽关卡及怪物生成逻辑
- 将出战英雄配置由数组改为单个英雄编号,简化相关接口和数据结构
- 统一出战英雄设置和获取方法,移除冗余多英雄管理逻辑
- 增加怪物生成时的强度倍率参数,支持怪物属性随关卡进度递增调整
- 扩展肉鸽模式配置,实现关卡类型区分及怪物数量动态计算
- 新增随机事件系统,支持事件关卡随机触发宝箱、陷阱、增益、减益等事件
- 优化怪物生成流程,整合怪物配置、等级和强度倍率信息,增强游戏体验
2025-10-19 17:18:22 +08:00
928f1dbe16 refactor(config): 精简并优化技能与英雄配置代码
- 删除SkillSet.ts中未使用或多余的枚举和注释
- 移除SkillConfig接口中的无用字段in参数
- 统一调整技能配置字段,删除多余的in参数
- 简化SkillSet技能数据,去除冗余注释和无用代码
- heroSet.ts删除被注释的HeroKind枚举和无用注释
- 精简英雄配置相关注释,提高代码可读性与维护性
2025-10-19 15:52:37 +08:00
6571eb2ef0 feat(game): 技能基础框架基本搭建完成,下步遇到再完善
- 调整了英雄角色top.prefab节点结构和组件关联,优化层级关系和属性值
- 修改pow、mpb等子节点的组件及位置,提升表现效果
- 更新技能atk_fires.prefab增加了ReadyLoop、SkillTime等新属性
- 调整攻击技能atk_s1.prefab的运行类型及相关时间与计数参数
- 修正atk_s1.prefab目标覆盖配置,完善prefab实例结构
- 精简atk_s_1.prefab的子节点引用,去除冗余id链接,简化资源结构
2025-10-19 15:16:39 +08:00
6d5c768a30 refactor(game): 精简肉鸽模式关卡配置并优化怪物加载逻辑
- 调整SkillSet基础攻击技能参数,降低CD时间和技能消耗
- 更新HeroInfo中英雄和怪物的技能组合,替换为更合理的技能ID
- 注释掉部分法师及精英怪物的定义,简化怪物列表
- 优化Monster类load和hero_init方法,移除不再使用的增强属性和关卡倍数参数
- 精简MissionMonComp刷怪队列逻辑,移除增强属性和关卡倍数支持
- 调整RogueConfig,去除怪物增强属性相关代码,仅保留基础刷怪类型和数量配置
- 修正SkillCom中使用属性枚举的地方,使用统一Attrs枚举
- 清理代码注释和多余空行,提升代码规范性和可读性
2025-10-19 12:06:18 +08:00
faae0f8005 添加了mo3 2025-10-18 09:25:43 +08:00
2eae29f1a1 fix(hero): 修正英雄与怪物技能消耗和状态判断逻辑
- 修改Hero和Monster类中技能对象,新增cost属性用于技能消耗
- 修复HeroViewComp中isStun和isFrost方法,确保返回布尔值
- SkillConComp日志输出技能列表和消耗信息,增强调试能力
- 更新英雄配置中的map属性值由0改为100,统一角色数据映射
2025-10-18 09:07:22 +08:00
a3e4e70d9d feat(hero): 初始化角色和怪物技能数据,修改技能数据引用
- 在Hero实体中初始化技能数组,添加技能UUID和冷却时间信息
- 在Monster实体中遍历怪物技能,准备技能相关数据
- 在HeroViewComp中新增skills属性以存储技能信息
- 在SkillEnt中修正技能属性赋值,使用深拷贝避免引用问题
- 删除SkillConComp中无用的空行,优化update方法代码格式
2025-10-17 22:29:10 +08:00
2cdb25ac58 refactor(skillSet): 基本功完成 新buff系统 优化DBuff与Attrs映射及转换逻辑
- 规范化DBuff的枚举命名,修正属性对应关系
- 统一DBuff与Attrs的双向映射,通过TransformBuffs函数处理转换
- 移除旧的getAttrFieldFromDebuff方法,改用更灵活的映射数组
- 更新Attrs枚举,增加被易伤、防护盾等新属性
- 重新调整AttrsType映射,保证属性类型一致性

refactor(hero): 重构Hero和Monster初始化属性及buff系统

- Hero初始化时完善基础属性赋值,新增基础移动速度与攻击距离
- Hero使用initAttrs替代initBuffsDebuffs,重构buff/debuff初始化流程
- Monster初始化简化,统一按Hero写法初始化基础属性和Attrs
- 实现buff/debuff属性智能覆盖与叠加时长的改进逻辑
- 属性计算改用统一逻辑,支持数值型和百分比型准确计算
- 增加属性值范围限制,确保部分属性在合理区间内

refactor(heroViewComp): 优化buff/debuff管理及状态判断

- 统一buff和debuff的持久与临时管理字典及更新方法
- 优化临时buff/debuff的更新时间处理,自动触发属性重新计算
- 提供isStun和isFrost接口简化眩晕、冰冻状态判断
- 规范注释及代码格式,提升可读性和维护性

refactor(skillConComp): 优化眩晕与冰冻状态判断逻辑

- 移除遍历判断,改用HeroViewComp的isStun和isFrost方法
- 简化技能冷却更新逻辑,提升性能

chore(heroSet): 添加AttrSet枚举定义属性最大值限制

docs(rogueConfig): 更新说明文档中的属性枚举定义说明

- 将属性增强枚举由BuffAttr修改为Attrs,以保持一致性
2025-10-17 22:02:23 +08:00
94f83482fa refactor(config): 修改 Buff/Debuff 接口字段命名
- 将 DbuffConf 中的属性 deV, deC, deR 重命名为 value, time, chance
- 将 BuffConf 中的属性 buV, buC, buR 重命名为 value, time, chance
- 统一代码中 Buff 和 Debuff 配置的字段命名,提升可读性和一致性
2025-10-17 19:46:31 +08:00
4706a128f3 refactor(buff): 统一buff和debuff属性结构及类型区分
- 新增Buff类型枚举BType,区分数值型与百分比型属性
- 定义AttrsType,映射每个属性的类型(数值或百分比)
- 添加辅助方法isRatioAttr和getAttrType用于属性类型判断
- HeroViewComp中buff和debuff相关属性名称重新命名,区分持久型和临时型及属性类型
- 修改buff/debuff的加载、应用、更新逻辑,适配新的属性结构
- 新增HeroViewComp的isStun和isFrost方法判断状态
- BattleMoveSystem中使用新判断方法替代旧列表遍历
- 移除SkillCom中未使用的BuffAttr导入项,优化依赖关系
2025-10-17 18:41:54 +08:00
13874f3618 比例添加还是有问题的 2025-10-17 13:40:59 +08:00
d9282b7469 feat(movement): 添加移动速度属性并调整速度计算逻辑
- 在DBuff和Attrs中新增移动速度相关字段SPEED
- 修改getAttrFieldFromDebuff映射,支持移动速度下降Debuff
- 修正DbuffConf接口中deV拼写错误
- BattleMoveSystem中使用Attrs.SPEED替代原慢速减值计算速度
- HeroViewComp中修复deV字段拼写并更新减速效果处理逻辑
- 移除未使用和无效的状态类Debuff标记,优化逻辑判断
2025-10-17 10:54:02 +08:00
2152 changed files with 367143 additions and 36819 deletions

View File

@@ -260,8 +260,8 @@
},
"_lscale": {
"__type__": "cc.Vec3",
"x": -0.7,
"y": 0.7,
"x": -0.65,
"y": 0.65,
"z": 1
},
"_mobility": 0,

File diff suppressed because it is too large Load Diff

View File

@@ -2,12 +2,12 @@
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "96eebc02-b140-49dc-a5e8-e0f3847499a0",
"uuid": "525f2387-2f0f-4c39-93df-409ae88f74d7",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "atk3"
"syncNodeName": "mo3"
}
}

View File

@@ -0,0 +1 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"4b509594-612c-4a10-b14f-790b3a16670b","files":[],"subMetas":{},"userData":{}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "am_ice",
"_name": "atk",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 12,
"sample": 10,
"speed": 1,
"wrapMode": 2,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.16666666666666666,
"_duration": 0,
"_hash": 500763545,
"_tracks": [
{
@@ -19,10 +19,21 @@
}
],
"_exoticAnimation": null,
"_events": [],
"_events": [
{
"frame": 0.4,
"func": "",
"params": []
},
{
"frame": 0.4,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
@@ -36,7 +47,7 @@
"proxy": null
},
"_channel": {
"__id__": 5
"__id__": 4
}
},
{
@@ -45,16 +56,9 @@
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -62,25 +66,13 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333
],
"_values": [
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@6350b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@e3e3b",
"__expectedType__": "cc.SpriteFrame"
}
]
"_times": [],
"_values": []
},
{
"__type__": "cc.AnimationClipAdditiveSettings",

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"bcf25973-6bba-4465-9841-026e2ccadc27","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}}

View File

@@ -0,0 +1,71 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atked",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [],
"_values": []
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a0173f4e-f35c-480c-805f-3534c77ac4bc","files":[".cconb"],"subMetas":{},"userData":{"name":"atked"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "am_blue",
"_name": "buff",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 12,
"sample": 10,
"speed": 1,
"wrapMode": 2,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.16666666666666666,
"_duration": 0,
"_hash": 500763545,
"_tracks": [
{
@@ -19,10 +19,21 @@
}
],
"_exoticAnimation": null,
"_events": [],
"_events": [
{
"frame": 0.4,
"func": "",
"params": []
},
{
"frame": 0.4,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
@@ -36,7 +47,7 @@
"proxy": null
},
"_channel": {
"__id__": 5
"__id__": 4
}
},
{
@@ -45,16 +56,9 @@
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -62,25 +66,13 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333
],
"_values": [
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@48223",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@19d79",
"__expectedType__": "cc.SpriteFrame"
}
]
"_times": [],
"_values": []
},
{
"__type__": "cc.AnimationClipAdditiveSettings",

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"8646b9df-9960-4e75-a0ec-e206535c26d3","files":[".cconb"],"subMetas":{},"userData":{"name":"buff"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "ay",
"_name": "debuff",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 24,
"sample": 10,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.20833333333333334,
"_duration": 0,
"_hash": 500763545,
"_tracks": [
{
@@ -22,7 +22,7 @@
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
@@ -36,7 +36,7 @@
"proxy": null
},
"_channel": {
"__id__": 5
"__id__": 4
}
},
{
@@ -45,16 +45,9 @@
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -62,30 +55,13 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@940a6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@ea076",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@fbf9e",
"__expectedType__": "cc.SpriteFrame"
}
]
"_times": [],
"_values": []
},
{
"__type__": "cc.AnimationClipAdditiveSettings",

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b86a690c-f934-490d-82be-58733fcdbe6c","files":[".cconb"],"subMetas":{},"userData":{"name":"debuff"}}

View File

@@ -0,0 +1,71 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "idle",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [],
"_values": []
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"cca89d6f-f0d0-432e-bcee-1f6f76599772","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "am_yellow",
"_name": "max",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 12,
"sample": 10,
"speed": 1,
"wrapMode": 2,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.16666666666666666,
"_duration": 0,
"_hash": 500763545,
"_tracks": [
{
@@ -19,10 +19,21 @@
}
],
"_exoticAnimation": null,
"_events": [],
"_events": [
{
"frame": 0.7,
"func": "",
"params": []
},
{
"frame": 0.7,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
@@ -36,7 +47,7 @@
"proxy": null
},
"_channel": {
"__id__": 5
"__id__": 4
}
},
{
@@ -45,16 +56,9 @@
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -62,25 +66,13 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333
],
"_values": [
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@df4cf",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@372f8",
"__expectedType__": "cc.SpriteFrame"
}
]
"_times": [],
"_values": []
},
{
"__type__": "cc.AnimationClipAdditiveSettings",

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a640a4db-ba1b-4093-b970-afe380bf119f","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}}

View File

@@ -0,0 +1,71 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "move",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [],
"_values": []
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"028f2465-2fc1-49e9-ab5f-a3e5d7e39f27","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}

View File

@@ -0,0 +1 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"704fa1cb-e16f-4dc8-8697-a8f1ffa3eb0d","files":[],"subMetas":{},"userData":{}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "shangguang3",
"_name": "atk",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 48,
"sample": 10,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.22916666666666666,
"_duration": 0.6,
"_hash": 500763545,
"_tracks": [
{
@@ -19,10 +19,21 @@
}
],
"_exoticAnimation": null,
"_events": [],
"_events": [
{
"frame": 0.4,
"func": "",
"params": []
},
{
"frame": 0.4,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
@@ -36,7 +47,7 @@
"proxy": null
},
"_channel": {
"__id__": 5
"__id__": 4
}
},
{
@@ -45,16 +56,9 @@
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -62,42 +66,42 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.041666666666666664,
0.08333333333333333,
0.125,
0.16666666666666666,
0.20833333333333334
0.1,
0.2,
0.3,
0.4,
0.5
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@d810b",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@83668",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@102a8",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@c51ba",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@1fa83",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@5d173",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@8c851",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@ada53",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@d97c1",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@262ea",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@9ddb4",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@bdd37",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"0e01e061-bac1-4766-844b-1c7877829bd2","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "bs",
"_name": "atked",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 24,
"sample": 10,
"speed": 1,
"wrapMode": 2,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.2916666666666667,
"_duration": 0.5,
"_hash": 500763545,
"_tracks": [
{
@@ -22,7 +22,7 @@
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
@@ -36,7 +36,7 @@
"proxy": null
},
"_channel": {
"__id__": 5
"__id__": 4
}
},
{
@@ -45,16 +45,9 @@
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -62,32 +55,37 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666,
0.25
0.1,
0.2,
0.3,
0.4
],
"_values": [
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@59ec8",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@fce02",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@3a170",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@aa694",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@482b5",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@dbe5e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@59ec8",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@f4f5c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@cea0e",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"48a1b691-53b0-4f98-873d-4630a9f27fb1","files":[".cconb"],"subMetas":{},"userData":{"name":"atked"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "map_cs",
"_name": "buff",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 14,
"sample": 10,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.5714285714285714,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -19,10 +19,21 @@
}
],
"_exoticAnimation": null,
"_events": [],
"_events": [
{
"frame": 0.4,
"func": "",
"params": []
},
{
"frame": 0.4,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
@@ -36,7 +47,7 @@
"proxy": null
},
"_channel": {
"__id__": 5
"__id__": 4
}
},
{
@@ -45,16 +56,9 @@
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -62,52 +66,52 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.07142857142857142,
0.14285714285714285,
0.21428571428571427,
0.2857142857142857,
0.35714285714285715,
0.42857142857142855,
0.5
0.1,
0.2,
0.3,
0.4,
0.5,
0.6,
0.7
],
"_values": [
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@8e37d",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@d6fb6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@da44e",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@18310",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@117bf",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@3a3fe",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@d62e6",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@de743",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@a4642",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@b1450",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@06d24",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@d4365",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@3b5ae",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@99a25",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@5d894",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@1c575",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"bd3b5e53-04fa-4667-affa-5739cd467cb4","files":[".cconb"],"subMetas":{},"userData":{"name":"buff"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "upap",
"_name": "debuff",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 16,
"sample": 10,
"speed": 1,
"wrapMode": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.5,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -62,45 +62,45 @@
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.0625,
0.125,
0.1875,
0.25,
0.3125,
0.375,
0.4375
0.1,
0.2,
0.3,
0.4,
0.5,
0.6,
0.7
],
"_values": [
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@8e37d",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@0f5d9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@da44e",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@01e58",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@117bf",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@99c09",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@d62e6",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@e8205",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@a4642",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@aeaff",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@06d24",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@866e5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@3b5ae",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@63f5a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "431dfc0e-1c05-4f41-a4d2-3d112efc6286@5d894",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@d5ee2",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a1fee72c-2f19-4f68-a970-188bdf77cf4b","files":[".cconb"],"subMetas":{},"userData":{"name":"debuff"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "ice",
"_name": "idle",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 24,
"sample": 10,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.625,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -22,7 +22,7 @@
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
@@ -36,7 +36,7 @@
"proxy": null
},
"_channel": {
"__id__": 5
"__id__": 4
}
},
{
@@ -45,16 +45,9 @@
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -62,52 +55,52 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666,
0.25,
0.3333333333333333,
0.4166666666666667,
0.1,
0.2,
0.3,
0.4,
0.5,
0.5833333333333334
0.6,
0.7
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@70000",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@30fde",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@11efd",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@9d11c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@038eb",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@4cea4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@a8353",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@687fd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@b2098",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@739fc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@446d9",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@84673",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@1df17",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@783b9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4275b",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@00cb6",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"d2bc59da-a81e-4515-91d5-9947609a1a04","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk_light",
"_name": "max",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 18,
"sample": 10,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.4444444444444444,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -21,19 +21,19 @@
"_exoticAnimation": null,
"_events": [
{
"frame": 0.3333333333333333,
"frame": 0.7,
"func": "",
"params": []
},
{
"frame": 0.3333333333333333,
"frame": 0.7,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
@@ -47,7 +47,7 @@
"proxy": null
},
"_channel": {
"__id__": 5
"__id__": 4
}
},
{
@@ -56,16 +56,9 @@
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "Node"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -73,52 +66,52 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.05555555555555555,
0.1111111111111111,
0.16666666666666666,
0.2222222222222222,
0.2777777777777778,
0.3333333333333333,
0.3888888888888889
0.1,
0.2,
0.3,
0.4,
0.5,
0.6,
0.7
],
"_values": [
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@c1e30",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@106c7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@f62e8",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@cd96e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@ac137",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@ebbbf",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@a99aa",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@27858",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b753c",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@6410f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b8d8f",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@fb448",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@77aba",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@a9733",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@82d97",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@35575",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"76dd06ef-80a7-4a36-8805-fdbe0606f63d","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "ab",
"_name": "move",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 24,
"sample": 10,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.2916666666666667,
"_duration": 0.5,
"_hash": 500763545,
"_tracks": [
{
@@ -22,7 +22,7 @@
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
@@ -36,7 +36,7 @@
"proxy": null
},
"_channel": {
"__id__": 5
"__id__": 4
}
},
{
@@ -45,16 +45,9 @@
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -62,32 +55,37 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666,
0.25
0.1,
0.2,
0.3,
0.4
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@c3f86",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@3dd90",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@cc86c",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@dad97",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@41271",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@d0993",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@aa54b",
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@b2661",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "dfb39fcf-5894-4567-89d2-e38a97a323f3@1b6cc",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"66cb07cc-81e5-45db-b88d-66b4e21044e2","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}

File diff suppressed because it is too large Load Diff

View File

@@ -7,11 +7,11 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 60,
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.05,
"_duration": 0.1,
"_hash": 500763545,
"_tracks": [
{
@@ -24,12 +24,12 @@
"_exoticAnimation": null,
"_events": [
{
"frame": 0.03333333333333333,
"frame": 0.06666666666666667,
"func": "",
"params": []
},
{
"frame": 0.03333333333333333,
"frame": 0.06666666666666667,
"func": "atk",
"params": []
}
@@ -88,7 +88,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.05000000074505806
0.1
],
"_values": [
{
@@ -101,9 +101,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
@@ -115,9 +113,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
}
],
"preExtrapolation": 1,
@@ -133,7 +129,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.05000000074505806
0.1
],
"_values": [
{
@@ -146,9 +142,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
@@ -160,9 +154,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
}
],
"preExtrapolation": 1,
@@ -178,7 +170,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.05000000074505806
0.1
],
"_values": [
{
@@ -191,9 +183,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
@@ -205,9 +195,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
}
],
"preExtrapolation": 1,
@@ -279,8 +267,8 @@
{
"__type__": "cc.RealCurve",
"_times": [
0.03333333507180214,
0.05000000074505806
0.06666666666666667,
0.1
],
"_values": [
{
@@ -293,9 +281,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
@@ -307,9 +293,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
}
],
"preExtrapolation": 1,
@@ -324,8 +308,8 @@
{
"__type__": "cc.RealCurve",
"_times": [
0.03333333507180214,
0.05000000074505806
0.06666666666666667,
0.1
],
"_values": [
{
@@ -338,9 +322,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
@@ -352,9 +334,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
}
],
"preExtrapolation": 1,
@@ -369,8 +349,8 @@
{
"__type__": "cc.RealCurve",
"_times": [
0.03333333507180214,
0.05000000074505806
0.06666666666666667,
0.1
],
"_values": [
{
@@ -383,9 +363,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
@@ -397,9 +375,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
}
],
"preExtrapolation": 1,
@@ -414,8 +390,8 @@
{
"__type__": "cc.RealCurve",
"_times": [
0.03333333507180214,
0.05000000074505806
0.06666666666666667,
0.1
],
"_values": [
{
@@ -428,9 +404,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
@@ -442,9 +416,7 @@
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
"__editorExtras__": null
}
],
"preExtrapolation": 1,

View File

@@ -312,11 +312,15 @@
"__expectedType__": "cc.Prefab"
},
"hasReady": true,
"ReadyTime": 0.1,
"ReadyLoop": true,
"SkillTime": 5,
"ReadyTime": 0.2,
"runType": 0,
"ready_y": 200,
"atk_x": 10,
"atk_y": 40,
"atk_x": 0,
"atk_y": 0,
"s_count": 5,
"s_interval": 0.2,
"_id": ""
},
{

View File

@@ -311,12 +311,16 @@
"__uuid__": "551c634e-b486-4ff5-a302-279e365751ee",
"__expectedType__": "cc.Prefab"
},
"runType": 2,
"hasReady": false,
"ReadyLoop": false,
"SkillTime": 1,
"ReadyTime": 0.1,
"runType": 2,
"ready_y": 0,
"atk_x": 10,
"atk_y": 0,
"s_count": 1,
"s_interval": 0,
"_id": ""
},
{
@@ -333,6 +337,7 @@
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 2

View File

@@ -32,13 +32,10 @@
},
{
"__id__": 16
},
{
"__id__": 18
}
],
"_prefab": {
"__id__": 20
"__id__": 18
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -359,24 +356,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "157f8YWOhK6pBg6CBgHHww"
},
{
"__type__": "b1d8e1ZA0dLtqufhidnFK/K",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 19
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "eeypCqftdF9bW7NF55WalQ"
},
{
"__type__": "cc.PrefabInfo",
"root": {

View File

@@ -32,13 +32,10 @@
},
{
"__id__": 16
},
{
"__id__": 18
}
],
"_prefab": {
"__id__": 20
"__id__": 18
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -359,24 +356,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "157f8YWOhK6pBg6CBgHHww"
},
{
"__type__": "b1d8e1ZA0dLtqufhidnFK/K",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 19
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "eeypCqftdF9bW7NF55WalQ"
},
{
"__type__": "cc.PrefabInfo",
"root": {

View File

@@ -32,13 +32,10 @@
},
{
"__id__": 16
},
{
"__id__": 18
}
],
"_prefab": {
"__id__": 20
"__id__": 18
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -359,24 +356,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "157f8YWOhK6pBg6CBgHHww"
},
{
"__type__": "b1d8e1ZA0dLtqufhidnFK/K",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 19
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "eeypCqftdF9bW7NF55WalQ"
},
{
"__type__": "cc.PrefabInfo",
"root": {

View File

@@ -1,403 +0,0 @@
[
{
"__type__": "cc.Prefab",
"_name": "am_blue",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "am_blue",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
}
],
"_active": true,
"_components": [
{
"__id__": 8
},
{
"__id__": 10
},
{
"__id__": 12
},
{
"__id__": 14
},
{
"__id__": 16
},
{
"__id__": 18
}
],
"_prefab": {
"__id__": 20
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"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": 1073741824,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "skill",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
}
],
"_prefab": {
"__id__": 7
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": -0.7071067811865475,
"w": 0.7071067811865476
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 0.8,
"y": 0.8,
"z": 1
},
"_mobility": 0,
"_layer": 1073741824,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": -90
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
"width": 139,
"height": 128
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "0bXCTL/l1A5YZuQAHcNimF"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 6
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@48223",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 1,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "b9QUlReiVJ7ZDxbXwpC4IM"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "9fUsJF0/xIH6lvrQ3ar5z7",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 9
},
"_contentSize": {
"__type__": "cc.Size",
"width": 40,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.49664333316829656,
"y": 0.5156666649712457
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
},
{
"__type__": "45646oIyIdA24W+0c5rdELD",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 11
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "bcCcCZuuJMgIWRgtrud9x7"
},
{
"__type__": "cc.BoxCollider2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 13
},
"tag": 8,
"_group": 4,
"_density": 1,
"_sensor": true,
"_friction": 0.2,
"_restitution": 0,
"_offset": {
"__type__": "cc.Vec2",
"x": -0.7,
"y": 0.5
},
"_size": {
"__type__": "cc.Size",
"width": 29.5,
"height": 10.8
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "81sJPuCINN3rZBRiuXBK3i"
},
{
"__type__": "cc.RigidBody2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 15
},
"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": "4bT+t24ixB5JXaf1K0opLg"
},
{
"__type__": "f680dkagx9PmbfqtF463/Ua",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 17
},
"speed": 600,
"controlPointSide": 1,
"controlPointOffset": 0.1,
"controlPointRandomness": 0,
"autoRotate": true,
"showTrajectory": false,
"trajectoryColor": {
"__type__": "cc.Color",
"r": 0,
"g": 255,
"b": 0,
"a": 255
},
"trajectoryWidth": 3,
"easing": "linear",
"rotationSmoothness": 0.6,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "5bdTSRB61JvJ58crjmM55d"
},
{
"__type__": "cc.Animation",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 19
},
"playOnLoad": true,
"_clips": [
{
"__uuid__": "1c9c8ff5-02a0-46fb-96f6-dbf283731c9f",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": {
"__uuid__": "1c9c8ff5-02a0-46fb-96f6-dbf283731c9f",
"__expectedType__": "cc.AnimationClip"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "81ijmfBpBLBYwxa+xOAd0J"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": null,
"targetOverrides": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "8f169859-9ba0-4da4-b26a-a4176294e8a2",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "am_blue"
}
}

View File

@@ -1,403 +0,0 @@
[
{
"__type__": "cc.Prefab",
"_name": "am_fire",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "am_fire",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
}
],
"_active": true,
"_components": [
{
"__id__": 8
},
{
"__id__": 10
},
{
"__id__": 12
},
{
"__id__": 14
},
{
"__id__": 16
},
{
"__id__": 18
}
],
"_prefab": {
"__id__": 20
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"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": 1073741824,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "skill",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
}
],
"_prefab": {
"__id__": 7
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 1,
"w": 6.123233995736766e-17
},
"_lscale": {
"__type__": "cc.Vec3",
"x": -0.3,
"y": 0.3,
"z": 1
},
"_mobility": 0,
"_layer": 1073741824,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 180
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
"width": 170,
"height": 238
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.49367133720771417,
"y": 0.5723333146837023
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "43ucwKXvZIjpuRMb6AMdcx"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 6
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@59ec8",
"__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": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "62kIaCLMJIDKY/ceTYVdJH"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "b05wpkPXFJqK6/PzoIxCfr",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 9
},
"_contentSize": {
"__type__": "cc.Size",
"width": 120,
"height": 80
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.49664333316829656,
"y": 0.5156666649712457
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
},
{
"__type__": "45646oIyIdA24W+0c5rdELD",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 11
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "8ahZv91itPcYJm8S0veHYl"
},
{
"__type__": "cc.Animation",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 13
},
"playOnLoad": true,
"_clips": [
{
"__uuid__": "f2338276-3fe1-4b8b-9a73-02540d9c17a9",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": {
"__uuid__": "f2338276-3fe1-4b8b-9a73-02540d9c17a9",
"__expectedType__": "cc.AnimationClip"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "16LYpWaddLdZBFsLWFfMKv"
},
{
"__type__": "f680dkagx9PmbfqtF463/Ua",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 15
},
"speed": 600,
"controlPointSide": 1,
"controlPointOffset": 0.7,
"controlPointRandomness": 0.1,
"autoRotate": true,
"showTrajectory": false,
"trajectoryColor": {
"__type__": "cc.Color",
"r": 0,
"g": 255,
"b": 0,
"a": 255
},
"trajectoryWidth": 3,
"easing": "linear",
"rotationSmoothness": 0.6,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "29TlPeJcdIy4wZXKhtLbdr"
},
{
"__type__": "cc.RigidBody2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 17
},
"enabledContactListener": true,
"bullet": false,
"awakeOnLoad": true,
"_group": 1,
"_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": "58tC4fIN9CO56Y1QXCUmEk"
},
{
"__type__": "cc.BoxCollider2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 19
},
"tag": 0,
"_group": 4,
"_density": 1,
"_sensor": true,
"_friction": 0.2,
"_restitution": 0,
"_offset": {
"__type__": "cc.Vec2",
"x": 2.1,
"y": 6.2
},
"_size": {
"__type__": "cc.Size",
"width": 20.5,
"height": 50
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "06iYFbB9lCdoNl1MeEo3h4"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": null,
"targetOverrides": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "f9a7ccb6-d45d-452f-81b7-5bf3cb9920b7",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "am_fire"
}
}

View File

@@ -1,404 +0,0 @@
[
{
"__type__": "cc.Prefab",
"_name": "am_ice",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "am_ice",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
}
],
"_active": true,
"_components": [
{
"__id__": 8
},
{
"__id__": 10
},
{
"__id__": 12
},
{
"__id__": 14
},
{
"__id__": 16
},
{
"__id__": 18
}
],
"_prefab": {
"__id__": 20
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"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": 1073741824,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "skill",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
}
],
"_prefab": {
"__id__": 7
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": -0.7071067811865475,
"w": 0.7071067811865476
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 0.8,
"y": 0.8,
"z": 1
},
"_mobility": 0,
"_layer": 1073741824,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": -90
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
"width": 107,
"height": 71
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "0bXCTL/l1A5YZuQAHcNimF"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 6
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@6350b",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 1,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "b9QUlReiVJ7ZDxbXwpC4IM"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "9fUsJF0/xIH6lvrQ3ar5z7",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 9
},
"_contentSize": {
"__type__": "cc.Size",
"width": 40,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.49664333316829656,
"y": 0.5156666649712457
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
},
{
"__type__": "45646oIyIdA24W+0c5rdELD",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 11
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "bcCcCZuuJMgIWRgtrud9x7"
},
{
"__type__": "cc.BoxCollider2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 13
},
"tag": 8,
"_group": 4,
"_density": 1,
"_sensor": true,
"_friction": 0.2,
"_restitution": 0,
"_offset": {
"__type__": "cc.Vec2",
"x": 0.3,
"y": 9
},
"_size": {
"__type__": "cc.Size",
"width": 31.5,
"height": 12.7
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "81sJPuCINN3rZBRiuXBK3i"
},
{
"__type__": "cc.RigidBody2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 15
},
"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": "4bT+t24ixB5JXaf1K0opLg"
},
{
"__type__": "f680dkagx9PmbfqtF463/Ua",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 17
},
"speed": 600,
"controlPointSide": 1,
"controlPointOffset": 0.1,
"controlPointRandomness": 0,
"autoRotate": true,
"showTrajectory": false,
"trajectoryColor": {
"__type__": "cc.Color",
"r": 0,
"g": 255,
"b": 0,
"a": 255
},
"trajectoryWidth": 3,
"easing": "linear",
"rotationSmoothness": 0.6,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "5bdTSRB61JvJ58crjmM55d"
},
{
"__type__": "cc.Animation",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 19
},
"playOnLoad": true,
"_clips": [
null,
{
"__uuid__": "059f0942-820b-4ec5-b537-b4e6384f7b74",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": {
"__uuid__": "059f0942-820b-4ec5-b537-b4e6384f7b74",
"__expectedType__": "cc.AnimationClip"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "81ijmfBpBLBYwxa+xOAd0J"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": null,
"targetOverrides": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "6c4fdfd2-d7ff-4f07-a890-4149c44e25ae",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "am_ice"
}
}

View File

@@ -1,403 +0,0 @@
[
{
"__type__": "cc.Prefab",
"_name": "am_yellow",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "am_yellow",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
}
],
"_active": true,
"_components": [
{
"__id__": 8
},
{
"__id__": 10
},
{
"__id__": 12
},
{
"__id__": 14
},
{
"__id__": 16
},
{
"__id__": 18
}
],
"_prefab": {
"__id__": 20
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"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": 1073741824,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "skill",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
}
],
"_prefab": {
"__id__": 7
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": -0.7071067811865475,
"w": 0.7071067811865476
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 0.5,
"y": 0.5,
"z": 1
},
"_mobility": 0,
"_layer": 1073741824,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": -90
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
"width": 139,
"height": 127
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "0bXCTL/l1A5YZuQAHcNimF"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 6
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@df4cf",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 1,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "b9QUlReiVJ7ZDxbXwpC4IM"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "9fUsJF0/xIH6lvrQ3ar5z7",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 9
},
"_contentSize": {
"__type__": "cc.Size",
"width": 40,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.49664333316829656,
"y": 0.5156666649712457
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
},
{
"__type__": "45646oIyIdA24W+0c5rdELD",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 11
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "bcCcCZuuJMgIWRgtrud9x7"
},
{
"__type__": "cc.BoxCollider2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 13
},
"tag": 8,
"_group": 4,
"_density": 1,
"_sensor": true,
"_friction": 0.2,
"_restitution": 0,
"_offset": {
"__type__": "cc.Vec2",
"x": -0.7,
"y": 0.5
},
"_size": {
"__type__": "cc.Size",
"width": 29.5,
"height": 10.8
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "81sJPuCINN3rZBRiuXBK3i"
},
{
"__type__": "cc.RigidBody2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 15
},
"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": "4bT+t24ixB5JXaf1K0opLg"
},
{
"__type__": "f680dkagx9PmbfqtF463/Ua",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 17
},
"speed": 600,
"controlPointSide": 1,
"controlPointOffset": 0.1,
"controlPointRandomness": 0,
"autoRotate": true,
"showTrajectory": false,
"trajectoryColor": {
"__type__": "cc.Color",
"r": 0,
"g": 255,
"b": 0,
"a": 255
},
"trajectoryWidth": 3,
"easing": "linear",
"rotationSmoothness": 0.6,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "5bdTSRB61JvJ58crjmM55d"
},
{
"__type__": "cc.Animation",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 19
},
"playOnLoad": true,
"_clips": [
{
"__uuid__": "ed6cf35f-840b-406b-b1c0-442ec6b52218",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": {
"__uuid__": "ed6cf35f-840b-406b-b1c0-442ec6b52218",
"__expectedType__": "cc.AnimationClip"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "e1u2A/8GJEhKdc+zvPwRLJ"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": null,
"targetOverrides": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "50b9cd2d-a41d-4955-97e5-587dfb07bab1",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "am_yellow"
}
}

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "981ef7be-92cf-44d5-a3db-fa233d44a2d8",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "ab"
}
}

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "1c9c8ff5-02a0-46fb-96f6-dbf283731c9f",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "am_blue"
}
}

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "059f0942-820b-4ec5-b537-b4e6384f7b74",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "am_ice"
}
}

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "ed6cf35f-840b-406b-b1c0-442ec6b52218",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "am_yellow"
}
}

View File

@@ -1,268 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 24,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.625,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
},
{
"__id__": 7
},
{
"__id__": 13
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 19
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX3"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.041666666666666664,
0.08333333333333333,
0.125,
0.16666666666666666,
0.20833333333333334,
0.25
],
"_values": [
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@50d44",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@fc3f4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@1bf03",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@c09bc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@01cc3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@bb1ab",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 8
},
"proxy": null
},
"_channel": {
"__id__": 11
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 9
},
{
"__id__": 10
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX4"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 12
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0.16666666666666666,
0.20833333333333334,
0.25,
0.2916666666666667,
0.3333333333333333,
0.375,
0.4166666666666667
],
"_values": [
null,
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@50d44",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@fc3f4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@1bf03",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@c09bc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@01cc3",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 14
},
"proxy": null
},
"_channel": {
"__id__": 17
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 15
},
{
"__id__": 16
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX5"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 18
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0.3333333333333333,
0.375,
0.4166666666666667,
0.4583333333333333,
0.5,
0.5416666666666666,
0.5833333333333334
],
"_values": [
null,
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@50d44",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@fc3f4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@1bf03",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@c09bc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@01cc3",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "7e14a335-71d0-480e-beaf-e4d0ea6ecb19",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "atk1"
}
}

View File

@@ -1,568 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk2",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 24,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 1.0833333333333333,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
},
{
"__id__": 7
},
{
"__id__": 13
},
{
"__id__": 19
},
{
"__id__": 25
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.20833333333333334,
"func": "",
"params": []
},
{
"frame": 0.20833333333333334,
"func": "atk",
"params": []
},
{
"frame": 0.375,
"func": "",
"params": []
},
{
"frame": 0.375,
"func": "atk",
"params": []
},
{
"frame": 0.5416666666666666,
"func": "",
"params": []
},
{
"frame": 0.5416666666666666,
"func": "atk",
"params": []
},
{
"frame": 0.7916666666666666,
"func": "",
"params": []
},
{
"frame": 0.7916666666666666,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 31
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX3"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0.3333333333333333,
0.375,
0.4166666666666667,
0.4583333333333333,
0.5,
0.5416666666666666,
0.5833333333333334,
0.625,
0.6666666666666666,
0.7083333333333334,
0.75,
0.7916666666666666
],
"_values": [
null,
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@1009c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@de62b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@5b01f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@254e1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b42a1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@4ba4a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b9773",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@70740",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@8a2ee",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@04fca",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 8
},
"proxy": null
},
"_channel": {
"__id__": 11
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 9
},
{
"__id__": 10
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX4"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 12
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0.125,
0.16666666666666666,
0.20833333333333334,
0.25,
0.2916666666666667,
0.3333333333333333,
0.375,
0.4166666666666667,
0.4583333333333333,
0.5,
0.5416666666666666,
0.5833333333333334,
0.625
],
"_values": [
null,
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@30608",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b0b10",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@76298",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@76bd7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@d4058",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@9197a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@22801",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@76161",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@a8392",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@e2de4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@d96ab",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 14
},
"proxy": null
},
"_channel": {
"__id__": 17
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 15
},
{
"__id__": 16
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX5"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 18
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.041666666666666664,
0.08333333333333333,
0.125,
0.16666666666666666,
0.20833333333333334,
0.25,
0.2916666666666667,
0.3333333333333333,
0.375,
0.4166666666666667,
0.4583333333333333
],
"_values": [
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@30608",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b0b10",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@76298",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@76bd7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@d4058",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@9197a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@22801",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@76161",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@a8392",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@e2de4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@d96ab",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 20
},
"proxy": null
},
"_channel": {
"__id__": 23
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 21
},
{
"__id__": 22
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX6"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 24
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0.5833333333333334,
0.625,
0.6666666666666666,
0.7083333333333334,
0.75,
0.7916666666666666,
0.8333333333333334,
0.875,
0.9166666666666666,
0.9583333333333334,
1,
1.0416666666666667
],
"_values": [
null,
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@1009c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@de62b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@5b01f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@254e1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b42a1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@4ba4a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b9773",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@70740",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@8a2ee",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@04fca",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 26
},
"proxy": null
},
"_channel": {
"__id__": 29
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 27
},
{
"__id__": 28
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX7"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 30
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.041666666666666664,
0.08333333333333333,
0.125,
0.16666666666666666,
0.25
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@07243",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@55d08",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@36291",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4052b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@e928b",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "37647271-97cd-475c-a0b9-0f0603dde7ae",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "atk2"
}
}

View File

@@ -1,325 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk3",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 60,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.2,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 12
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.VectorTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channels": [
{
"__id__": 4
},
{
"__id__": 6
},
{
"__id__": 8
},
{
"__id__": 10
}
],
"_nComponents": 3
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"scale"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX3"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.05,
0.1,
0.15,
0.2
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1.2000000476837158,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0.8999999761581421,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 7
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.05,
0.1,
0.15,
0.2
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1.100000023841858,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0.800000011920929,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 9
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.05,
0.1,
0.15,
0.2
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 11
}
},
{
"__type__": "cc.RealCurve",
"_times": [],
"_values": [],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "d5db66e1-ef21-4e64-974a-94d2b586f0fa",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "atk3"
}
}

View File

@@ -1,166 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk_dian",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 18,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.8333333333333334,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.3333333333333333,
"func": "",
"params": []
},
{
"frame": 0.3333333333333333,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "Node"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.05555555555555555,
0.1111111111111111,
0.16666666666666666,
0.2222222222222222,
0.2777777777777778,
0.3333333333333333,
0.3888888888888889,
0.4444444444444444,
0.5,
0.5555555555555556,
0.6111111111111112,
0.6666666666666666,
0.7222222222222222,
0.7777777777777778
],
"_values": [
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@813c5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@821e0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@33a20",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@1f6a0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@0d15e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@585d7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@e54e2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@06857",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@bf8fe",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@53534",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@1b0bb",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@8d306",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b44d9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@8364b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b1f2c",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "26cb4d57-2d33-48d9-a693-c5273ba69dea",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "atk_dian"
}
}

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "2e77e65a-370f-41db-a42b-00fa4c893aba",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "atk_light"
}
}

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "41254db6-e7b8-4628-a08a-79621a93c681",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "ay"
}
}

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "f2338276-3fe1-4b8b-9a73-02540d9c17a9",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "bs"
}
}

View File

@@ -1,309 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "fwall",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 12,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.6666666666666666,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
},
{
"__id__": 7
},
{
"__id__": 13
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.5,
"func": "",
"params": []
},
{
"frame": 0.5,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 19
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "anm1"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666,
0.25,
0.3333333333333333,
0.4166666666666667,
0.5,
0.5833333333333334
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@ee31b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@6171c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@0a599",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@d9355",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@09c9f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4d16f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@2d6fe",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@b7d39",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 8
},
"proxy": null
},
"_channel": {
"__id__": 11
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 9
},
{
"__id__": 10
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "anm2"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 12
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666,
0.25,
0.3333333333333333,
0.4166666666666667,
0.5,
0.5833333333333334
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@ee31b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@6171c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@0a599",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@d9355",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@09c9f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4d16f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@2d6fe",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@b7d39",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 14
},
"proxy": null
},
"_channel": {
"__id__": 17
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 15
},
{
"__id__": 16
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "anm3"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 18
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666,
0.25,
0.3333333333333333,
0.4166666666666667,
0.5,
0.5833333333333334
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@ee31b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@6171c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@0a599",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@d9355",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@09c9f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4d16f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@2d6fe",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@b7d39",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "3476949c-812c-44d5-8832-a4d72c111005",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "fwall"
}
}

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "afb1a09b-ec12-4908-9b46-d8b95960bd11",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "ice"
}
}

View File

@@ -1,105 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "icet",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 24,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.375,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666,
0.25,
0.3333333333333333
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@90c11",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@fea95",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@586a7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@a5055",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@8d30e",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "da04af6b-54c3-44d3-a29e-090655ed14d7",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "icet"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -1,42 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "85e5c51a-3127-426a-a3c5-36ada6764f8f",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "85e5c51a-3127-426a-a3c5-36ada6764f8f@6c48a",
"displayName": "icez",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "85e5c51a-3127-426a-a3c5-36ada6764f8f",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "85e5c51a-3127-426a-a3c5-36ada6764f8f@6c48a"
}
}

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "949980cc-4c77-4f43-9d8e-aa8060a44477",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "light2"
}
}

View File

@@ -1,130 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "light3",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 18,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.5555555555555556,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "Node"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.05555555555555555,
0.1111111111111111,
0.16666666666666666,
0.2222222222222222,
0.2777777777777778,
0.3333333333333333,
0.3888888888888889,
0.4444444444444444,
0.5
],
"_values": [
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@1009c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@de62b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@5b01f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@254e1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b42a1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@4ba4a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b9773",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@70740",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@8a2ee",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@04fca",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "ba4df2dc-02e7-49cb-b983-cd12991195c7",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "light3"
}
}

View File

@@ -1,135 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "light4",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 18,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.6111111111111112,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "Node"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.05555555555555555,
0.1111111111111111,
0.16666666666666666,
0.2222222222222222,
0.2777777777777778,
0.3333333333333333,
0.3888888888888889,
0.4444444444444444,
0.5,
0.5555555555555556
],
"_values": [
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@30608",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@b0b10",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@76298",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@76bd7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@d4058",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@9197a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@22801",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@76161",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@a8392",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@e2de4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "46594657-02d0-432c-bbad-dcbcad549216@d96ab",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "60c95561-2f53-4d0d-8a9d-2f1ceac3635a",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "light4"
}
}

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "4e7de055-43d0-4bed-a975-8c83539cccaf",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "map_cs"
}
}

View File

@@ -1,240 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max_bwind",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 16,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.625,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
},
{
"__id__": 7
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.25,
"func": "",
"params": []
},
{
"frame": 0.25,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 13
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "anm"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.0625,
0.125,
0.1875,
0.25,
0.3125,
0.375,
0.4375,
0.5,
0.5625
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@260b5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@d0af2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4227a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@62e19",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@2a7dc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@cb9ed",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4867c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@6e917",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@0332a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@daea2",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 8
},
"proxy": null
},
"_channel": {
"__id__": 11
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 9
},
{
"__id__": 10
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "Node"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 12
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.0625,
0.125,
0.1875,
0.25,
0.3125,
0.375,
0.4375,
0.5,
0.5625
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@47d67",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@f657a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4b23b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@248f8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4a311",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@5b879",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@88e75",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@6e59d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@03629",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@988ca",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "f02f25be-c381-4871-9167-87d4d4a2edb8",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "max_bwind"
}
}

View File

@@ -1,206 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max_firedun",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.26666666666666666,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
},
{
"__id__": 7
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 13
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX4"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.03333333333333333,
0.06666666666666667,
0.1,
0.13333333333333333,
0.16666666666666666,
0.2,
0.23333333333333334
],
"_values": [
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@dc8dc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@8138a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@98e07",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@559ac",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@eaf5e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@d52e2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@3b865",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@d447d",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 8
},
"proxy": null
},
"_channel": {
"__id__": 11
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 9
},
{
"__id__": 10
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX5"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 12
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.03333333333333333,
0.06666666666666667,
0.1,
0.13333333333333333,
0.16666666666666666,
0.2,
0.23333333333333334
],
"_values": [
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@6bbad",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@8d11b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@331b8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@0fda1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@7a03d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@fb8b6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@3f1d3",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "1d6f9037-81ca-4ffa-94d4-27b013e2f8dd",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "max_firedun"
}
}

View File

@@ -1,339 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max_gz",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 18,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 1.0555555555555556,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
},
{
"__id__": 7
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.2222222222222222,
"func": "",
"params": []
},
{
"frame": 0.2222222222222222,
"func": "atk",
"params": []
},
{
"frame": 0.2777777777777778,
"func": "",
"params": []
},
{
"frame": 0.2777777777777778,
"func": "",
"params": []
},
{
"frame": 0.2777777777777778,
"func": "atk",
"params": []
},
{
"frame": 0.3333333333333333,
"func": "",
"params": []
},
{
"frame": 0.3333333333333333,
"func": "",
"params": []
},
{
"frame": 0.3333333333333333,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 13
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "di"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.1111111111111111,
0.16666666666666666,
0.2222222222222222,
0.2777777777777778,
0.3333333333333333,
0.3888888888888889,
0.4444444444444444,
0.5,
0.5555555555555556,
0.6111111111111112,
0.6666666666666666,
0.7222222222222222,
0.7777777777777778,
0.8333333333333334,
0.8888888888888888,
0.9444444444444444,
1
],
"_values": [
null,
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@40144",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@40144",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@bfd83",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@59342",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@183d9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@751df",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@94ee9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@6b79d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@2cd83",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@efa96",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@c7c6f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@f43a3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@bde4c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@c8db1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@e8fa1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@b6e92",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@35bbd",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 8
},
"proxy": null
},
"_channel": {
"__id__": 11
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 9
},
{
"__id__": 10
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "guang"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 12
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.05555555555555555,
0.1111111111111111,
0.16666666666666666,
0.2222222222222222,
0.2777777777777778,
0.3333333333333333,
0.3888888888888889,
0.4444444444444444,
0.5,
0.5555555555555556,
0.6111111111111112,
0.6666666666666666,
0.7222222222222222,
0.7777777777777778,
0.8333333333333334,
0.8888888888888888
],
"_values": [
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@cc0db",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@204cd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@8433f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@06ded",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@3df31",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@a3649",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@8ce58",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@e8ff9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@fcdd4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@b9b7a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@c7fee",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@66e16",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@dcbbf",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@beb56",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@d0171",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@f0a48",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "8bcaba28-7188-418e-8074-20449a5541d8",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "max_gz"
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "ce348edb-f421-4aa6-9149-ed2e8f3bc544",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "max_icec"
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "c21f4c95-6dd2-4eaf-95a9-e36c16b71663",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "max_jianyu1"
}
}

View File

@@ -1,30 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk2",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 24,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0,
"_hash": 500763545,
"_tracks": [],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 1
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "d45fb9d7-ec0c-43d4-b169-e0f90f7ab61b",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "max_light"
}
}

View File

@@ -1,136 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max_waterT",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 18,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.5,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.2222222222222222,
"func": "",
"params": []
},
{
"frame": 0.2222222222222222,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "anm"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.05555555555555555,
0.1111111111111111,
0.16666666666666666,
0.2222222222222222,
0.2777777777777778,
0.3333333333333333,
0.3888888888888889,
0.4444444444444444
],
"_values": [
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@bffcd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@b0026",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@a7728",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@c2101",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@9e468",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@85a6d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@65fc3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@ba631",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@8419b",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "be7f41eb-fc16-469c-be61-59923e63376d",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "max_waterT"
}
}

View File

@@ -1,520 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max_yunshi",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.7333333333333333,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
},
{
"__id__": 7
},
{
"__id__": 18
},
{
"__id__": 24
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.4666666666666667,
"func": "",
"params": []
},
{
"frame": 0.4666666666666667,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 30
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX3"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.06666666666666667,
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333,
0.4,
0.43333333333333335
],
"_values": [
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@59ec8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@3a170",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@482b5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@59ec8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@3a170",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@482b5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@59ec8",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.animation.VectorTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 8
},
"proxy": null
},
"_channels": [
{
"__id__": 10
},
{
"__id__": 12
},
{
"__id__": 14
},
{
"__id__": 16
}
],
"_nComponents": 3
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 9
},
"position"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX3"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 11
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.4000000059604645,
0.7333333492279053
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": -200,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 13
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.4000000059604645,
0.7333333492279053
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 400,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 20,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 15,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 15
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.4000000059604645,
0.7333333492279053
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 17
}
},
{
"__type__": "cc.RealCurve",
"_times": [],
"_values": [],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 19
},
"proxy": null
},
"_channel": {
"__id__": 22
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 20
},
{
"__id__": 21
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX4"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 23
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0.4,
0.43333333333333335,
0.4666666666666667,
0.5,
0.5333333333333333,
0.5666666666666667,
0.6,
0.6333333333333333,
0.6666666666666666,
0.7
],
"_values": [
null,
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@efc4f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@fdba9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@11f7a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@3f33e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@9bd71",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@03e27",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@8dffc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@a083d",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 25
},
"proxy": null
},
"_channel": {
"__id__": 28
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 26
},
{
"__id__": 27
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "SlashFX5"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 29
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0.43333333333333335,
0.4666666666666667,
0.5,
0.5333333333333333,
0.5666666666666667,
0.6,
0.6333333333333333,
0.6666666666666666
],
"_values": [
null,
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@966d7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@80397",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@b7bfa",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@b2d29",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@11404",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@38fe5",
"__expectedType__": "cc.SpriteFrame"
},
null
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "82f73a9b-34a6-4060-aecc-a6c81f2d2104",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "max_yunshi"
}
}

View File

@@ -1,179 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "okill",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 32,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.4375,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
},
{
"__id__": 7
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 13
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "Node"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.0625,
0.125,
0.1875
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@55d08",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@36291",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4052b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@e928b",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 8
},
"proxy": null
},
"_channel": {
"__id__": 11
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 9
},
{
"__id__": 10
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "Node-001"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 12
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0.09375,
0.15625,
0.21875,
0.28125,
0.34375,
0.40625
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@d810b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@102a8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@1fa83",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@8c851",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@d97c1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@9ddb4",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "00f9792c-c224-4956-8ca1-03eb646274a4",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "okill"
}
}

View File

@@ -1,155 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "s_yun",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 12,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 1.25,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "anm"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666,
0.25,
0.3333333333333333,
0.4166666666666667,
0.5,
0.5833333333333334,
0.6666666666666666,
0.75,
0.8333333333333334,
0.9166666666666666,
1,
1.0833333333333333,
1.1666666666666667
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@90ca1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@f54b4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@e5cce",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@5df22",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@3a104",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@15571",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@bdff5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@d2e30",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@b80d4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@861a9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@eef80",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@30e51",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@36a27",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@b661f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@29d5e",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "715b6fb6-fd8b-4a35-a389-f7ccd442a707",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "s_yun"
}
}

View File

@@ -1,105 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "shangguang",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 24,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.375,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 7
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 5
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.08333333333333333,
0.16666666666666666,
0.25,
0.3333333333333333
],
"_values": [
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@07243",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@55d08",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@36291",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@4052b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "45af5702-7585-4d72-85cf-d7b8da02d832@e928b",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1,13 +0,0 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "36db0751-ae0c-4e1e-843c-7db7c3eda630",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "shangguang"
}
}

View File

@@ -1,507 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "to_dun",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 24,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.2916666666666667,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
},
{
"__id__": 12
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 24
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.VectorTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channels": [
{
"__id__": 4
},
{
"__id__": 6
},
{
"__id__": 8
},
{
"__id__": 10
}
],
"_nComponents": 3
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"scale"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill/dun"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.25
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0.8999999761581421,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 7
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.25
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 9
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.25
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 1,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 11
}
},
{
"__type__": "cc.RealCurve",
"_times": [],
"_values": [],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.ColorTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 13
},
"proxy": null
},
"_channels": [
{
"__id__": 16
},
{
"__id__": 18
},
{
"__id__": 20
},
{
"__id__": 22
}
]
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 14
},
{
"__id__": 15
},
"color"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "skill/dun"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 17
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.25,
0.2916666567325592
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 19
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.25,
0.2916666567325592
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 21
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.25,
0.2916666567325592
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 19,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 19,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 19,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 23
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.25,
0.2916666567325592
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

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