131 Commits

Author SHA1 Message Date
03a8a41980 feat(战斗系统): 添加伤害比例属性并应用到伤害计算
在SDataCom中添加dmg_ratio属性用于调整伤害比例
修改HeroAtkSystem中的伤害计算公式,将dmg_ratio纳入计算
2025-11-24 16:58:13 +08:00
91c18004eb feat(技能系统): 添加额外伤害和溅射伤害功能
在技能组件中新增ext_dmg和splash字段用于处理额外伤害和溅射伤害
修改技能创建和伤害计算逻辑以支持新功能
2025-11-24 16:58:04 +08:00
6df4abadd1 feat(战斗系统): 添加必杀技能类型并优化天赋触发逻辑
- 在TriType枚举中添加MAX类型用于必杀技能触发
- 重构SACastSystem中的技能处理逻辑,将普通攻击、技能和必杀技能分开处理
- 优化天赋触发条件判断,确保不同类型技能触发正确的天赋效果
- 调整技能动画播放和伤害计算逻辑,使风怒和双技能天赋能正确生效
2025-11-24 15:52:28 +08:00
8d2ec76b01 feat(战斗系统): 实现攻击和技能伤害加成天赋效果
添加ATK_DMG和SKILL_DMG天赋类型,支持在普通攻击和技能释放时应用额外伤害
修改SACastSystem以处理不同类型的伤害加成
重构TalEffet枚举并更新相关配置
2025-11-24 15:39:05 +08:00
4ed531e100 refactor(hero): 重命名天赋相关方法以区分计数型和数值型
将计数型天赋操作方法从addTalent/consumeTalent重命名为addCountTal/useCountTal
将数值型天赋操作方法从addTalBuff/clearTalBuff重命名为addValueTal/useValueTalByUuid
更新相关文档和调用代码以保持一致性
2025-11-24 10:27:38 +08:00
aefe3d6d06 refactor(战斗系统): 重构伤害计算逻辑并完善注释
重构 HeroAtkSystem 中的伤害计算方法,将基础伤害计算升级为详细的伤害计算流程
新增 applyPR 方法的详细注释,说明其计算公式和使用场景
优化代码结构,添加计算步骤的注释说明
2025-11-21 10:36:54 +08:00
2dc43b5b81 refactor(HeroAtkSystem): 重构伤害计算逻辑以提高可维护性
将原有的伤害计算逻辑拆分为更清晰的步骤,引入applyPR方法统一处理伤害加成和抗性计算
根据技能类型(DType)应用对应的元素伤害计算
使用防御和魔防的百分比减免公式替代原有的固定值减免
2025-11-21 10:28:14 +08:00
58fa6527ee feat(战斗系统): 扩展战斗属性配置和元素伤害类型
- 在GameSet.ts中添加物理和魔法防御常数
- 在SkillSet.ts中细化元素伤害类型并移除冗余字段
- 在HeroAttrs.ts中重构抗性和伤害加成属性,增加物理和魔法相关属性
2025-11-21 10:24:39 +08:00
df23e3787d feat(战斗系统): 完善伤害计算逻辑并添加元素伤害支持
修改 HeroAtkSystem 的 dmgCount 方法,增加目标属性参数并实现完整的伤害计算逻辑,包括物理/魔法伤害区分、防御减免和元素伤害计算。同时在 SkillSet 配置中新增 map 属性和元素伤害配置,支持冰/火/风三种元素伤害类型。
2025-11-21 10:23:35 +08:00
8a0cfb78dd refactor(combat): 重构战斗系统伤害计算逻辑并完善文档
- 将getNeAttrs函数移动到更合理的位置
- 重构伤害计算逻辑,明确区分施法者和被攻击者属性使用
- 完善接口和核心方法的文档注释
- 修正暴击伤害计算错误,使用施法者暴击伤害属性
- 优化闪避判定公式,考虑施法者命中率
2025-11-21 09:18:49 +08:00
3990799046 refactor: 移除废弃脚本并迁移ECS文档至assets目录
删除不再使用的update-oops-plugin-framework.bat脚本
将ecs.md文档从根目录迁移至assets/script目录并更新内容
2025-11-20 16:54:15 +08:00
1c49649c00 refactor(hero): 重构英雄攻击系统并重命名文件 2025-11-20 16:48:23 +08:00
51f32b1d29 refactor(战斗系统): 重构攻击处理逻辑并优化击退机制
- 将闪避、暴击和击退的概率检查统一为checkChance方法
- 移除HeroAtkComp类并清理无用代码
- 新增clearTalBuffByAttr方法用于清除特定属性的天赋buff
- 修改HeroViewComp.do_atked方法支持可选击退参数
- 移除Attrs.BACK属性及相关配置
2025-11-20 16:48:14 +08:00
b4fd807ddc feat(天赋系统): 添加天赋执行次数功能并实现必暴效果
为天赋系统添加count字段控制执行次数,并实现C_ATK、C_SKILL、C_MSKILL三种必暴效果类型
2025-11-20 16:22:36 +08:00
ff4ce76482 fix: 修复技能属性引用问题并移除无用代码
- 在Skill.ts中修改Attrs为浅拷贝避免引用问题
- 移除HeroAtk.ts中未使用的casterModel变量
2025-11-20 15:19:27 +08:00
8113ec671f refactor(技能系统): 统一额外伤害参数命名从exr_dmg改为ext_dmg
修改Skill.ts和SACastSystem.ts中的参数命名,保持代码一致性
2025-11-20 15:11:59 +08:00
5a81704379 refactor(hero): 重构天赋系统使用统一管理方式
- 将分散的天赋属性管理改为统一的Talents记录
- 添加addTalent和consumeTalent方法来管理天赋状态
- 修改技能系统使用新的天赋管理接口
2025-11-20 14:51:26 +08:00
f2ec48bd2b feat(天赋系统): 重构天赋buff处理逻辑并添加vType支持
- 在TalSlot接口和talConf配置中添加vType字段区分数值型和百分比型buff
- 重构HeroAttrsComp中BUFFS_TAL数据结构,改为以天赋uuid为key的映射
- 实现新的addTalBuff和clearTalBuff方法处理天赋buff
- 在TalComp中添加BUFF类型天赋的触发处理
2025-11-20 14:35:29 +08:00
94d5aa8920 refactor(hero): 重构天赋触发机制和属性类型
将天赋触发值从布尔类型改为数值类型以支持更灵活的触发条件
修改天赋配置描述和数值以更准确反映效果
优化天赋触发逻辑,支持同时检查多个天赋
添加天赋触发后的具体效果处理
2025-11-19 16:51:36 +08:00
bcaa377cf6 refactor(英雄技能): 重构天赋触发逻辑和技能施放系统
- 将HeroAttrsComp中的isDSill和isWFuny改为talTrigger结构体
- 移除TalComp中不再使用的checkTriggers和checkIsTrigger方法
- 优化SACastSystem中的技能施放逻辑,分离天赋处理代码块
- 为Skill.load方法添加damage参数
- 重命名executeCast返回变量为castSucess以提高可读性
2025-11-19 16:03:19 +08:00
e577ed976c feat(技能系统): 添加目标数量配置并优化目标选择逻辑
- 在SkillSet枚举中添加t_num字段用于配置技能目标数量
- 修改sTargets方法,根据技能配置中的t_num确定最大目标数量
- 重构findNearbyEnemies方法,实现基于距离和位置偏差的目标排序
- 添加对技能范围配置的灵活处理,支持range和dis字段
2025-11-19 15:39:57 +08:00
209d550e87 fix(SACastSystem): 修复技能目标选择逻辑并添加默认值
当sDamageTargets未找到目标时,回退到使用sDefaultTargets获取默认目标
同时为createSkill方法的isWFuny参数添加默认值false
2025-11-19 15:37:34 +08:00
5935b20094 refactor(game): 统一游戏地平线高度并优化技能目标选择
将GameSet中的GAME_LINE从0调整为120,并在英雄和怪物位置配置中使用该常量
简化SACastSystem中的目标选择逻辑,移除未使用的治疗和BUFF目标选择方法
使用BoxSet.GAME_LINE作为技能目标的默认Y坐标
2025-11-19 14:59:50 +08:00
78ac2e949f feat(英雄系统): 优化天赋触发机制和技能施放逻辑
重构HeroAttrsComp组件结构,新增天赋触发相关属性
调整SACastSystem技能施放逻辑,支持风怒和双施天赋效果
删除无用的SCastSystem.ts.meta文件
2025-11-19 11:18:11 +08:00
9f809b1ffa feat(技能系统): 添加最大技能自动施放开关并重构施法逻辑
- 在HeroSkillsComp中添加max_auto字段控制最大技能自动施放
- 重构SACastSystem的施法逻辑,增加返回值判断
- 新增manualCast和manualCastMax方法支持手动施法
- 删除废弃的SCastSystem文件
2025-11-19 10:34:37 +08:00
e42bdbb671 refactor(天赋系统): 优化天赋触发逻辑和代码结构
重构 TalComp 类的触发检查方法,将 checkIsTrigger 拆分为 getTriggers 和 checkIsTrigger
简化 SACastSystem 中的天赋触发判断逻辑,使用新的 checkIsTrigger 返回值
2025-11-19 10:34:15 +08:00
9798930879 feat(技能系统): 添加技能类型枚举并重构天赋系统
- 在SkillSet.ts中新增HSSet枚举区分普通攻击、技能和必杀技
- 重构TalSet.ts中的天赋效果枚举,移除N_ATK和N_SKILL类型
- 在HeroSkillsComp中增加hset字段标识技能类型
- 修改SACastSystem以支持根据技能类型触发不同天赋
- 完全重写TalComp组件,实现更完善的天赋触发和效果管理
2025-11-18 23:54:25 +08:00
7b067213c0 feat(天赋系统): 重构天赋系统并添加新天赋效果
- 重构天赋类型和效果枚举,简化触发条件分类
- 添加天赋buff数组支持叠加效果计算
- 实现多种新天赋效果包括风怒、溅射、护盾等
- 修改熟练天赋触发条件从3次改为10次攻击
2025-11-18 16:46:13 +08:00
ab8bb01dee refactor(配置): 重构英雄属性和天赋系统配置
- 将HeroAttrs中的KNOCKBACK和CHAIN_CHANCE重命名为BACK_CHANCE和SILENCE_CHANCE以保持命名一致性
- 简化TalSet.ts中的天赋配置接口,移除冗余字段并优化结构
- 添加新的天赋配置示例
2025-11-18 13:44:44 +08:00
deb224b067 refactor(game): 重构天赋系统配置和组件逻辑
重构天赋系统配置,包括:
1. 调整天赋类型枚举和效果枚举
2. 移除旧的天赋配置数据
3. 简化天赋组件实现
4. 更新设计文档中的天赋描述

同时修正地图组件中的英雄位置坐标和缩放值
2025-11-18 11:00:18 +08:00
078787ccf2 docs(Design): 更新游戏设计文档中的战斗和天赋描述
更新战斗部分的结构,并重新组织天赋系统的描述,使其更清晰易读。修改了天赋触发条件和效果说明,保持文档与实际设计一致。
2025-11-18 08:41:25 +08:00
3daddd6935 docs(Design.md): 更新游戏设计文档,简化核心概念并添加战斗关键词
重写游戏设计文档,移除了详细机制描述,聚焦于核心玩法概念。新增战斗系统关键词定义,包括风怒、护盾、溅射等效果及其天赋增强机制。
2025-11-17 16:57:23 +08:00
46a779633a feat(hero): 添加受击闪光效果并重构相关代码
新增FlashSprite组件实现受击闪光效果
重构HeroAnmComp和HeroViewComp以支持闪光效果
更新多个英雄prefab以包含闪光材质和组件
2025-11-15 11:15:30 +08:00
4af9a6fd9e refactor(hero): 重构英雄属性系统与受击特效
将HeroAttrSystem从HeroAttrsComp中分离为独立文件
删除废弃的05-outline-glow资源文件
优化TalComp.ts中的代码格式
使用FlashSprite替换旧的受击特效实现
2025-11-15 10:52:39 +08:00
a468c6c774 docs: 添加英雄天赋系统开发计划文档
添加详细的天赋系统开发计划文档,包含项目概述、阶段划分、任务清单和使用建议
2025-11-13 11:57:58 +08:00
60ca6f1d14 Merge branch 'oh/10171' of http://git.eoxnet.com/pan/heros into oh/10171 2025-11-12 14:46:29 +08:00
86cd78e3c2 feat(skill): 添加新的攻击动画和预制体,移除旧的攻击预制体
- 新增atk06.anim动画文件和对应的meta文件
- 新增atk_f1.prefab和atk_f2.prefab攻击预制体及meta文件
- 移除旧的atk_s5.prefab攻击预制体及meta文件
2025-11-12 14:46:28 +08:00
1915ffce8a 添加了很多技能动画 2025-11-05 17:21:09 +08:00
afbaa13cb2 制作了多个 近战技能 2025-11-04 17:25:48 +08:00
53cf25d7a5 refactor(游戏对象): 调整英雄位置和动画关键帧数值
- 修改hm2.prefab中英雄的y坐标位置
- 简化HInfoComp中节点查找路径
- 更新lr3.anim动画关键帧数值和编辑器额外属性
2025-11-04 14:46:28 +08:00
087f4010be refactor(渲染): 重构实体层级管理方式
- 移除通过 setSiblingIndex 手动设置层级的方式
- 新增 HERO、LINE1、LINE2、SKILL 等容器节点自动管理层级
- 调整英雄、怪物、技能等实体的父节点到对应容器
- 优化提示信息的位置偏移量
2025-11-04 14:23:07 +08:00
1e0537b63d refactor(hero): 优化怪物生成位置计算并添加调试日志
- 使用 MonStart 配置计算怪物出生位置,替代硬编码的 MonSet
- 添加 console.log 调试英雄和怪物的 siblingIndex
- 根据 y 坐标动态判断线路,提高代码可读性和可维护性
2025-11-04 11:12:43 +08:00
fc637529e2 地图动画,将英雄位置调整 2025-11-04 11:04:27 +08:00
5c9f299fd7 refactor(hero): 优化英雄缩放逻辑和位置配置
重构英雄缩放逻辑,使用统一的缩放计算方法替代硬编码值
调整英雄和怪物的初始位置坐标
在Hero和Monster类中添加size变量控制缩放
2025-11-04 10:38:20 +08:00
ed1b4f46a4 refactor(game): 删除BezierMove相关元文件并更新英雄和地图资源
- 删除assets/script/game/BezierMove.meta及相关文件
- 新增多个地图动画资源文件(lr.anim, lr2.anim等)
- 调整多个英雄预制体的尺寸和碰撞体参数
- 更新地图预制体(map_rpg.prefab)中的动画配置和节点布局
2025-11-04 10:38:05 +08:00
4670b12330 feat(英雄视图): 添加血条显示计时功能
新增血条显示持续时间配置和计时器,修改血条显示逻辑:
1. 添加 hpBarShowTime 和 hpBarShowCD 字段控制血条显示时间
2. 初始隐藏血条,仅在受到攻击时显示并开始计时
3. 移除满血自动隐藏逻辑,改为仅更新进度条
4. 重置状态时清除血条计时器
2025-11-03 23:40:43 +08:00
8152523e10 feat(战斗系统): 实现基于技能距离的智能移动和攻击逻辑
重构英雄和怪物移动系统,引入技能距离缓存机制
在HeroAttrsComp中添加技能距离缓存管理
修改HeroSkillsComp以支持技能距离计算
更新移动系统使用技能距离判断攻击时机和停止位置
调整怪物配置统一使用水球技能
2025-11-03 22:59:56 +08:00
914ab0e8b9 feat(技能系统): 实现技能冷却时间受攻击速度和技能速度属性影响
新增技能速度(SS)属性,用于减少非基础攻击技能的冷却时间
基础攻击技能冷却时间由英雄的as属性决定
眩晕和冰冻状态下不更新技能CD
合并冗余的canCast和resetCD方法
2025-11-03 20:53:31 +08:00
04aa5f9c78 fix(hero): 修复英雄视图组件的空指针异常和死亡逻辑
- 添加ent和model的安全检查防止空指针异常
- 重构死亡计时逻辑,使用deadCD代替Timer
- 统一死亡事件触发顺序并添加安全检查
- 在reset方法中清理碰撞器事件和伤害队列
2025-11-03 16:32:30 +08:00
c98f20ba1d fix(hero): 修复英雄死亡状态处理和怪物生成逻辑
调整HeroAnmComp中动画完成时的状态检查,增加dead和stun状态
修改MissionMonComp中怪物生成逻辑,现在只生成第一个怪物
重构HeroViewComp的死亡处理逻辑,添加死亡计时器和复活功能
2025-11-03 16:07:13 +08:00
1a45e91f1a feat(skill): 优化技能碰撞检测逻辑并添加攻击帧计数
- 在SkillView中缓存碰撞体引用并添加攻击帧计数器
- 实现攻击帧事件中动态开启碰撞检测
- 非持续碰撞类型技能在造成伤害后立即关闭碰撞检测
- 清理资源时取消所有定时器
- 调整技能预制体碰撞体位置和大小
- 注释掉Main.ts中的物理调试绘制代码
2025-11-03 14:47:53 +08:00
2d5653e0e4 fix(hero): 修复BOSS怪物层级显示问题
当怪物为BOSS类型时,设置其节点层级为BOSS专用层级,确保BOSS显示在正确层级
2025-11-03 13:39:29 +08:00
9fcb6d3121 feat(渲染): 重构渲染层级管理并添加BOSS层级
移除动态渲染层级更新逻辑,改为在实体加载时设置固定层级
- 在Hero和Monster的load方法中设置初始siblingIndex
- 添加BOSS枚举值到IndexSet
- 为Monster添加溢出保护,防止层级索引过大
- 删除墓地位置判断等不再需要的逻辑
2025-11-03 13:36:33 +08:00
96952ef493 refactor(game): 调整游戏层级配置数值并添加技能层级
将英雄、怪物层级数值放大10倍以提高层级管理灵活性
添加SLILL技能层级配置
2025-11-03 13:36:20 +08:00
d089699c36 feat(英雄): 优化英雄移动和碰撞逻辑
fix由于 setScale 会影响物理判断,造成玩家角色多次被攻击触发回调
- 添加英雄移动方向缓存避免频繁转向
- 优化英雄碰撞器初始状态管理
- 修复英雄后退动画重复触发问题
- 调整部分英雄prefab的碰撞组和传感器设置
2025-11-03 13:10:43 +08:00
5bd2e15fb5 refactor(skill): 优化技能碰撞检测逻辑并移除重复命中检查
- 移除hitTargets集合及相关重复命中检查逻辑
- 改进碰撞检测日志输出,增加安全性检查
- 清理注释掉的旧攻击逻辑代码
- 在reset方法中添加碰撞器事件解绑
2025-11-03 10:57:08 +08:00
e4905bcca2 fix(physics): 启用物理调试绘制并设置英雄碰撞组
启用AABB和质心的物理调试绘制标志,并在HeroViewComp中设置碰撞器组为英雄组
2025-11-03 10:56:32 +08:00
5805e00895 feat(skill): 添加彩色箭头技能资源及配置
- 新增红、蓝、绿三种箭头技能的prefab和动画资源
- 更新技能配置文件和英雄设置
- 调整水球技能物理参数
- 优化碰撞矩阵设置
- 修复动画时间精度问题
2025-11-03 10:56:03 +08:00
2a309a14d0 feat(渲染): 实现基于线路和生成顺序的层级管理系统
添加IndexSet枚举定义基础层级和增量
修改怪物生成逻辑以支持线路(lane)和生成顺序(spawnOrder)
重构MonMoveSystem中的渲染层级更新逻辑
优化HeroViewComp中血条显示逻辑
调整怪物位置配置以支持双线路布局
2025-11-03 06:38:06 +08:00
1f5792aa99 fix(hero): 调整英雄后退逻辑和伤害提示位置
修改英雄后退行为,移除英雄后退功能并增加怪物后退距离
调整伤害提示的垂直位置计算方式,使用传入的y参数
2025-11-03 06:37:51 +08:00
9d42c221fd 添加了几个技能 2025-11-02 22:39:04 +08:00
0d76fd4050 fix(hero): 调整英雄预制体和视图组件的锚点及尺寸
修改多个英雄预制体的锚点y坐标和高度尺寸,统一调整英雄视图组件的显示位置
禁用atk_s1和atk_s2技能节点的_enabled属性
移除HeroViewComp中对boss的特殊位置处理逻辑
2025-11-02 13:40:01 +08:00
187153ac9e feat(英雄系统): 添加怒气值属性及相关功能
top 血条样式调整
- 在HeroAttrsComp中添加pow属性表示当前怒气值
- 在HeroAttrs枚举中添加POW_MAX和POW_REGEN属性
- 修改HeroViewComp根据英雄类型显示不同资源条
- 调整boss血条位置偏移量
- 注释掉物理系统调试绘制代码
2025-11-02 13:34:04 +08:00
f35d755b74 整合,清理掉很多冗余的东西 2025-11-02 10:34:18 +08:00
b24f0e2afc fix: 修正技能类型并添加碰撞组件
- 将m_water_ball_1.prefab的_type从1改为0
- 在SACastSystem.ts中修复目标返回逻辑
- 为atk_s1.prefab添加RigidBody2D和BoxCollider2D组件
2025-11-02 00:23:53 +08:00
8fdd9e2c98 fix(skill): 添加命中目标追踪防止重复伤害
添加 hitTargets Set 来追踪已命中目标,避免技能对同一目标造成多次伤害。同时优化碰撞检测逻辑,移除不必要的条件检查。
2025-11-02 00:23:44 +08:00
1091b0399e fix: 修复技能碰撞检测和英雄prefab配置问题
修复技能碰撞检测逻辑,确保正确应用伤害并过滤同组碰撞
调整多个英雄prefab的_enabled状态和碰撞组配置
优化技能视图的日志输出和伤害应用逻辑
移除不必要的prefab组件和调试日志
2025-11-01 23:10:38 +08:00
2e1c6c3aa1 fix(英雄属性): 调整英雄锚点位置并修复HP/MP回复逻辑
将英雄hk1的锚点y坐标从0调整为0.2以改善显示效果
使用Timer控制HP/MP回复频率,从每帧改为每秒回复固定值
2025-11-01 21:34:40 +08:00
cb844cf65f 解决一些小问题 2025-11-01 15:02:31 +08:00
d014e63d27 refactor(skill): 重构技能移动系统,整合移动逻辑到SMoveComp
将技能移动逻辑从SkillView迁移到SMoveComp,实现统一的移动管理
添加多种移动类型支持(线性、贝塞尔、固定位置)
优化移动参数配置,从SkillView获取攻击偏移量
2025-11-01 12:16:21 +08:00
ab03e32278 docs(Main.ts): 更新ECS系统初始化注释说明 2025-11-01 12:15:45 +08:00
c1b1eba770 删除wiki库 2025-11-01 11:35:17 +08:00
2b8ba46759 技能继续调整 2025-11-01 11:15:11 +08:00
47509af7a1 技能动画调试 继续 2025-11-01 09:36:14 +08:00
638bbf505c 继续清理技能,技能动画开始重做,有多少资源做多少事,通过其他方面弥补动画的不足 2025-11-01 09:07:57 +08:00
600d49c679 技能动画图片整理 2025-11-01 00:02:01 +08:00
b8f48e09d6 feat(战斗系统): 实现伤害队列机制优化战斗处理
重构伤害处理逻辑,将直接伤害组件改为队列系统
- 新增DamageQueueComp组件管理伤害事件队列
- 添加DamageQueueHelper工具类处理伤害事件添加和查询
- 修改HeroAtkSystem改为处理伤害队列而非单个伤害
- 移除旧的DmgDataCom组件及相关引用
- 优化SkillView.apply_damage使用新队列系统
2025-10-31 20:08:43 +08:00
8e0d09fc98 refactor(战斗系统): 优化伤害计算与技能释放逻辑,下一步 将伤害信标处理,改为队列处理
- 移除HeroViewComp中的调试日志
- 缩短技能释放前摇时间从0.3秒到0.1秒
- 重构Skill类,清理无用导入并优化属性传递
- 改进HeroAtkSystem,添加伤害数据深拷贝避免重复处理
- 完善SkillView,增加技能结束类型处理并优化伤害应用逻辑
2025-10-31 16:43:27 +08:00
028a175df4 refactor(skill): 优化技能系统实现和配置
- 删除未使用的ECS元文件和组件
- 修复技能视图和移动逻辑,添加调试日志
- 调整技能预制体配置和动画参数
- 简化技能加载和方向处理逻辑
- 新增技能6002并更新英雄配置
- 统一受击特效路径命名
2025-10-31 16:42:57 +08:00
65b1eebd84 refactor(skill): 重构伤害计算逻辑
- 删除SkillEnt.ts及其meta文件,简化技能实体管理
- 将SDataCom重命名为更清晰的DmgDataCom和SDataCom
- 重构伤害计算系统,增加命中检测和伤害类型处理
- 优化技能碰撞检测逻辑,支持范围伤害和数量限制
2025-10-31 13:38:32 +08:00
8c597ae008 refactor(skill): 技能初步完成,下一步完善伤害系统
重命名SMoveData组件并修复组件添加方式
将SMoveData组件重命名为SMoveDataComp以保持命名一致性
修复Skill类中组件添加方式,明确指定组件类型参数
2025-10-31 11:06:17 +08:00
3b21ee4048 refactor(技能系统): 重构技能施放系统并优化位置初始化
- 将SkillCastSystem重命名为SCastSystem和SACastSystem以区分不同功能
- 优化SMoveComp中位置属性的初始化,改为null避免不必要的对象创建
- 统一日志前缀使用系统名称提高可读性
- 在SACastSystem中添加目标位置检查逻辑
- 修复代码格式问题,统一缩进和注释风格
2025-10-31 11:05:44 +08:00
2b3b80b308 refactor(技能系统): 重构技能系统以使用s_uuid作为主键并优化技能施放逻辑
- 将HeroSkillsComp中的技能数组改为以s_uuid为键的对象存储
- 修改CSRequestComp使用s_uuid替代skillIndex
- 优化SkillCastSystem和SACastSystem的施放逻辑
- 为SMoveDataComp添加rePos方法处理技能位置计算
- 移除未使用的SDataComSystem代码
2025-10-31 10:47:05 +08:00
b38e63e200 refactor(skill): 重构技能组件目录结构并重命名施法请求组件
将技能相关组件从hero目录移动到skill目录
将CastSkillRequestComp重命名为CSRequestComp
更新相关引用和文档说明
2025-10-31 09:22:50 +08:00
a1c605238d refactor(hero): 重构技能系统变量命名和自动施法系统
将技能相关变量名从skillId改为s_uuid以提高一致性
重命名自动施法系统文件并优化目标选择方法命名
删除旧版自动施法系统文件,新增重构后的实现
2025-10-31 09:00:37 +08:00
2f19433a0a feat(skill): 重构技能系统,新增技能数据组件和移动组件
refactor(skill): 移除旧技能组件和文档,优化技能配置结构

fix(skill): 修正技能预制体配置错误,统一技能运行类型字段

docs(skill): 删除过时的技能系统说明文档

perf(skill): 优化技能加载逻辑,减少资源消耗

style(skill): 调整代码格式,提高可读性
2025-10-31 00:35:51 +08:00
6db004a99f feat(skill): 重构技能模块,新增技能前后摇动画和组件
- 新增技能前后摇动画资源及配置
- 添加技能组件(SkillCom, EndAnmCom)和视图组件
- 重构技能配置表,支持前后摇动画配置
- 删除旧版技能资源(prefab, boom目录)
- 调整技能预制体路径结构
2025-10-30 19:30:55 +08:00
93ceaa70e4 wiki更新 2025-10-30 16:49:19 +08:00
40e0086be3 refactor(hero): 移除SkillConComp并添加ECS系统注册装饰器
- 删除废弃的SkillConComp组件及其meta文件
- 为HeroAtkSystem、HeroAttrSystem等系统添加@ecs.register装饰器
- 在生命周期系统中添加空安全检查
- 移除SkillConComp相关引用及调试日志
- 在移动系统中添加节点有效性检查
2025-10-30 16:31:44 +08:00
7984f8b784 refactor(技能系统): 添加系统注册和调试日志
为SkillCastSystem、SkillCDSystem和SkillAutocastSystem添加ECS注册装饰器
在关键方法中添加console.log调试信息以便追踪系统执行流程
2025-10-30 16:20:43 +08:00
bdcc606e02 refactor(hero): 将is_atking状态从HeroViewComp移到HeroAttrsComp
将攻击状态is_atking从视图组件HeroViewComp移动到属性组件HeroAttrsComp,以保持状态管理的集中性
2025-10-30 16:11:07 +08:00
56f45a7bb4 fix(hero): 修复实体销毁时可能出现的空引用问题
优化MissionComp中实体销毁逻辑,改为直接销毁实体让ECS处理组件清理
在HeroViewComp中添加多处model空值检查,防止销毁过程中访问null引用
移除reset方法中不必要的状态重置,由ECS系统统一处理
2025-10-30 15:51:41 +08:00
e9cc5aae08 refactor(英雄系统): 拆分通用移动组件为专属的英雄和怪物移动系统
将原有的BattleMoveComp和BattleMoveSystem拆分为HeroMoveComp/HeroMoveSystem和MonMoveComp/MonMoveSystem
移除不再使用的BattleMove相关文件和ECS位置系统
更新Hero和Monster实体使用新的移动组件
2025-10-30 15:28:11 +08:00
55646c3a11 重构了 技能系统,还需要完善 2025-10-30 15:12:49 +08:00
1281cbd32d feat(HeroAtkSystem): Integrate visual feedback for attack and death events
- Added HeroViewComp integration to trigger visual effects during attacks and upon hero death.
- Updated doAttack method to call do_atked and do_dead methods in HeroViewComp for enhanced visual representation.
- Cleaned up console log messages for better clarity in debugging.
2025-10-30 11:06:58 +08:00
29e8b7e8e7 refactor(HeroViewComp): Simplify attack logic and clean up imports
- Updated the do_atked method to directly handle damage and crit status.
- Removed unused imports to streamline the codebase.
2025-10-30 10:57:43 +08:00
e3bdc4b238 重构怪物属性系统,移除MonAttrsComp并替换为HeroAttrsComp。更新相关组件和系统以适应新属性结构,确保怪物逻辑与英雄逻辑一致。 2025-10-30 10:45:16 +08:00
2d358e450d 战斗系统 重构继续 2025-10-30 10:39:46 +08:00
a79cb9f35d 角色视图 数据逻辑 依ecs 框架进行重构 2025-10-30 08:56:37 +08:00
edb7f23918 feat(怪物系统): 重构怪物类型与属性计算系统
引入MonType枚举支持普通、精英、BOSS三种怪物类型
新增getMonAttr函数实现基于等级和类型的动态属性计算
更新Mon.ts的load和hero_init方法以支持新参数
扩展heroSet.ts添加多种新怪物类型配置
重构属性初始化流程,移除strengthMultiplier机制
更新相关文档和流程图反映最新设计
2025-10-29 16:50:30 +08:00
9dc1126dfe feat(怪物系统): 重构怪物生成逻辑并添加多种怪物类型
重构怪物生成系统,使用MonType枚举替代原有布尔标记
添加6种怪物类型配置和属性计算规则
修改关卡配置生成逻辑,支持精英/Boss波次
新增多种怪物配置并调整原有怪物属性
2025-10-29 16:41:08 +08:00
68b9c1924b 刷怪 未完成 2025-10-28 23:51:15 +08:00
166200af73 刷怪 未完成 2025-10-28 23:48:04 +08:00
0121f5b363 添加 英雄升级经验设定 2025-10-28 16:52:40 +08:00
4235e3b776 refactor(game): 移除已弃用的事件常量
- 删除 UpdateHero 和 UpdateFightHero 事件
- 移除 MISSION_UPDATE 事件常量
- 优化游戏事件枚举定义
2025-10-28 16:15:47 +08:00
b765e6a7a6 fix(heroSet): 为英雄配置添加天赋信息
- 刘邦添加天赋数组[7101,7201,7301]
- 荆轲天赋设置为[7201]
- 赵武灵王新增天赋[7002]
- 张良添加天赋[7004]
- 屈原配置天赋为[7101]
- 孙膑加入天赋[7202]
- 萧何设置天赋[7006]
2025-10-28 11:15:57 +08:00
3710f7f695 feat(英雄系统): 添加天赋组件及配套功能
实现英雄天赋系统核心功能,包括:
1. 新增 TalComp 组件管理天赋的获取、触发和效果应用
2. 重构 TalSet 配置结构,完善天赋类型和效果枚举
3. 在 Hero/Monster 实体中集成天赋组件
4. 为 SkillConComp 和 HeroViewComp 添加天赋相关引用
2025-10-28 00:07:50 +08:00
175a6e4232 refactor(hero): 重构英雄配置和添加天赋系统,需要测试验证
refactor(heroSet): 修改英雄属性配置,调整数值和描述
refactor(TalSet): 简化天赋系统结构,移除旧文档
2025-10-28 00:07:13 +08:00
b7ddbce7e7 dd 2025-10-27 11:19:28 +08:00
2ef12eaed2 dd 2025-10-27 11:18:06 +08:00
16fcaeb3f3 添加 天赋设置 2025-10-27 11:17:15 +08:00
c05e26b101 ui调整,背景地图调整 2025-10-26 23:56:37 +08:00
ef4099b873 ui调整 2025-10-26 12:00:44 +08:00
2e6a8b80a7 chore: 移除过时的项目状态和英雄设计文档
清理不再使用的状态报告和英雄设计文档,包括status.md、progress.md、@Progress.md、@project-status.md和assets/script/heros2.md
2025-10-25 16:26:41 +08:00
bcc61c9589 refactor(game): 移除未使用的数据模块和测试代码
清理不再使用的数据模块文件(data相关)和测试代码(Test.ts),优化项目结构
2025-10-25 16:11:20 +08:00
331effddaa 清理 skills下的无效文件,有用的迁移到skill目录 2025-10-25 15:51:24 +08:00
957cd6d453 refactor(英雄视图): 重构buff清理逻辑,支持按增益/减益类型过滤
将removeBuff方法替换为更通用的clearBuffs方法,支持清理指定属性或所有属性的buff,并能区分增益和减益效果。新增私有方法clearBuffsForAttr处理具体清理逻辑,提高代码复用性。
2025-10-25 15:38:56 +08:00
e62eecd214 refactor(buff系统): 重构英雄的buff管理逻辑,支持多次叠加和临时效果
- 统一管理持久型和临时型buff,简化buff的添加和移除逻辑
- 更新buff的叠加规则,允许同一属性的多个buff实例共存
- 优化属性计算公式,确保所有buff在计算时被纳入考虑
- 新增清空buff和移除特定buff的辅助方法,提升管理灵活性
- 详细更新文档,提供API使用示例和数据结构说明
2025-10-25 15:29:25 +08:00
11f1f08c1d refactor(属性系统): 重构英雄属性系统,将属性定义移至HeroAttrs模块
- 将Attrs和DBuff相关定义从SkillSet迁移至HeroAttrs
- 新增NeAttrs枚举用于管理负面状态
- 重构HeroViewComp中的buff/debuff处理逻辑
- 优化属性分类和分组,增加新属性类型
- 移除旧的DBuff相关代码,改用统一的负面状态管理
2025-10-25 15:04:11 +08:00
91eb0c9f6e SkillSet.ts 文件中的 Attrs 枚举、getAttrs 函数和 AttrsType 配置对象移动到 HeroAttrs.ts 文件中 2025-10-25 12:46:53 +08:00
abbe4cc6a0 refactor(hero): 将英雄属性相关引用统一替换为 HeroAttrs
- 移除废弃的 AttributeExample 示例类文件
- 全面替换各模块中对技能属性配置 SkillSet 中 Attrs 的引用,改用 HeroAttrs 中的 Attrs
- 保持代码引用整理一致性,优化属性相关模块的导入顺序和结构
- 无功能性改动,仅代码结构和引用路径调整,提高代码维护性和模块解耦性
2025-10-25 10:34:55 +08:00
326ceaf3d1 refactor(config): 优化英雄和技能配置数据结构
- 删除《吸血鬼幸存者》英雄特性分析文档,清理无用参考资料
- 调整技能配置,统一攻击类型枚举命名以AtkedName代替AtkedType
- 新增DType枚举区分物理与魔法攻击类型,丰富技能攻击属性
- 更新基础攻击技能配置,添加攻击类型字段并修正部分技能数据
- 删除heroSet.ts中旧版英雄基础属性和计算逻辑,简化代码结构
- 精简英雄信息定义,修正英雄基础属性和技能配置,改进角色定位说明
- 重新整理怪物角色基础属性和技能,提升数值合理性与一致性
2025-10-24 23:08:20 +08:00
2cf554b124 feat(attrs): 新增英雄基础属性及其对战斗属性影响的计算
- 在 Attrs 中添加力量、智力、敏捷、精神、幸运基本属性
- 为新增属性配置属性类型为数值型(BType.VALUE)
- 新增 HeroBaseAttributes,定义不同英雄类型的基础属性初始值
- 设计 AttributeInfluence,定义基础属性对战斗属性的影响系数
- 实现 calculateBaseAttributes 方法,根据英雄类型和等级计算基础属性值
- 实现 calculateAttributeInfluences 方法,计算基础属性对战斗属性的具体影响值
- 在 heroSet.ts 中增加相关类型导入和类型定义,完善属性系统逻辑
2025-10-24 16:54:19 +08:00
c03a655f15 docs(design): 重构游戏设计文档,完善核心玩法和英雄体系
- 重写并精简设计文档内容,去除重复和过时信息
- 明确游戏为单局制肉鸽塔防,强调自动战斗与策略奖励选择
- 细化金币经济、特殊事件、评分与成就系统设计
- 详细描述关卡结构、难度递增与游戏进程设计
- 完善英雄分类与成长体系,新增春秋战国及楚汉争霸英雄介绍
- 明确装备与技能系统分级与升级机制
- 设计多样化策略构筑与资源管理方案
- 提供界面和交互设计指导,简化操作并增强反馈
- 删除旧有天赋强化系统相关文档,统一调整为新设计方向
- 更新英雄配置信息,更换主将与刺客为刘邦与荆轲角色
2025-10-24 16:20:02 +08:00
24e6ffc110 refactor(hero): 移除多余cd字段并优化heroInfo结构
- 调整heroInfo接口,移除无用cd字段
- 精简各英雄与怪物对象中的cd属性
- 注释掉未使用的怪物配置数据
- 格式化属性排列更规范易读
2025-10-24 15:25:17 +08:00
6b97e67a93 fix(heroSet): 修改部分英雄资源路径和解禁新英雄配置
- 调整刺客、绿箭、牧师和火女的资源路径,使其指向正确文件夹
- 解禁魔法精灵和德鲁伊英雄配置,更新其相关属性和技能
- 删除注释,确保新增英雄配置生效
2025-10-24 15:20:34 +08:00
a3100c7156 新英雄 2025-10-24 00:02:03 +08:00
f60d727c31 dd 2025-10-23 11:12:49 +08:00
c1544365ba 英雄动画重构 2025-10-23 10:43:15 +08:00
b0751992f4 dd 2025-10-22 19:29:33 +08:00
861011893a 动画清理 2025-10-22 17:29:27 +08:00
815 changed files with 165457 additions and 104180 deletions

View File

@@ -1,18 +0,0 @@
# 进度更新
- 重构了动画结束处理逻辑,统一使用 EndAnmCom 组件
- 简化了技能组件代码,移除了重复的动画处理逻辑
- 修复了 SkillCom.ts 中的静态方法调用错误
- 将 this.bezierTo 改为 SkillCom.bezierTo 以正确访问静态方法
- 添加了 fixedStart 和 fixedEnd 两种新的技能移动方式
- 完善了技能移动系统,使其与配置表定义的 AnimType 完全匹配
- 为固定位置类型技能添加了动画结束endType.animationEnd支持
- 实现了动画播放完成后的技能销毁逻辑
- 修改了直线技能的结束条件,改为到达目标点时销毁
- 移除了不必要的屏幕边界检测
- 优化了技能伤害延迟计算逻辑
- 为抛物线类型技能添加了基于距离和速度的动态延迟计算
## 技能系统改进
- 优化了技能效果延迟时间的计算
- 添加了目标移动速度的考虑
- 实现了相向运动时的相对速度计算

View File

@@ -1,33 +0,0 @@
# 项目状态报告
## 已完成工作
- 统一了动画结束事件的处理方式
- 优化了代码结构,减少了重复代码
- 实现了直线技能的屏幕边界检测
- 优化了技能销毁逻辑
- 优化了直线技能的结束条件判断
- 确保技能行为符合设计意图
- 实现了抛物线技能的动态伤害延迟计算
- 保持了其他类型技能的默认延迟时间
- 在技能系统中实现了相对速度的计算
- 优化了技能效果的延迟时间计算机制
## 下一步工作建议
- 测试 EndAnmCom 组件在不同类型技能上的表现
- 确保动画结束事件能正确触发技能销毁
- 确认屏幕尺寸配置是否正确
- 测试直线技能在不同方向上的边界检测
- 测试直线技能到达目标点时的销毁效果
- 验证不同距离和速度下的技能表现
- 测试抛物线技能在不同距离下的伤害延迟表现
- 验证伤害时机是否与技能动画同步
- 考虑是否需要为其他类型技能添加自定义延迟计算
## 待处理的任务
- 可能需要添加更复杂的相对运动计算
- 考虑添加不同角度的相对运动支持
- 可能需要添加目标加速度的考虑
## 下一步计划
1. 验证相对速度计算的准确性
2. 考虑添加更多运动参数的支持
3. 可能需要添加碰撞预测功能

View File

@@ -22,13 +22,16 @@
},
{
"__id__": 24
},
{
"__id__": 35
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 34
"__id__": 46
},
"_auxiliaryCurveEntries": []
},
@@ -86,7 +89,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.8333333333333334,
0.8333333134651184,
1.25
],
"_values": [
@@ -146,7 +149,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.8333333333333334,
0.8333333134651184,
1.25
],
"_values": [
@@ -206,7 +209,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.8333333333333334,
0.8333333134651184,
1.25
],
"_values": [
@@ -266,7 +269,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.8333333333333334,
0.8333333134651184,
1.25
],
"_values": [
@@ -363,7 +366,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.8333333333333334,
0.8333333134651184,
1.25
],
"_values": [
@@ -423,7 +426,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.8333333333333334,
0.8333333134651184,
1.25
],
"_values": [
@@ -483,7 +486,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.8333333333333334,
0.8333333134651184,
1.25
],
"_values": [
@@ -543,7 +546,7 @@
"__type__": "cc.RealCurve",
"_times": [
0,
0.8333333333333334,
0.8333333134651184,
1.25
],
"_values": [
@@ -604,16 +607,16 @@
},
"_channels": [
{
"__id__": 26
"__id__": 27
},
{
"__id__": 28
"__id__": 29
},
{
"__id__": 30
"__id__": 31
},
{
"__id__": 32
"__id__": 33
}
],
"_nComponents": 3
@@ -621,20 +624,222 @@
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 26
},
"position"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "slist"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 27
"__id__": 28
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.6666666666666666,
0.8333333134651184,
1.25
],
"_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__": {
"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.animation.Channel",
"_curve": {
"__id__": 30
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.8333333134651184,
1.25
],
"_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__": {
"tangentMode": 0
}
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 100,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": {
"tangentMode": 0
}
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 32
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0
],
"_values": [
{
"__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__": 34
}
},
{
"__type__": "cc.RealCurve",
"_times": [],
"_values": [],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.VectorTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 36
},
"proxy": null
},
"_channels": [
{
"__id__": 38
},
{
"__id__": 40
},
{
"__id__": 42
},
{
"__id__": 44
}
],
"_nComponents": 3
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 37
},
"position"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "lab_content"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 39
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.8333333134651184,
1.25
],
"_values": [
@@ -681,14 +886,14 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 29
"__id__": 41
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.6666666666666666,
0.8333333134651184,
1.25
],
"_values": [
@@ -696,7 +901,7 @@
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 455,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
@@ -708,7 +913,7 @@
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 455,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
@@ -720,7 +925,7 @@
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 555,
"value": 100,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
@@ -735,14 +940,14 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 31
"__id__": 43
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.6666666666666666,
0.8333333134651184,
1.25
],
"_values": [
@@ -789,7 +994,7 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 33
"__id__": 45
}
},
{

View File

@@ -22,17 +22,11 @@
"__id__": 2
},
{
"__id__": 17
},
{
"__id__": 23
"__id__": 25
}
],
"_active": true,
"_components": [
{
"__id__": 31
},
{
"__id__": 33
},
@@ -44,15 +38,18 @@
},
{
"__id__": 39
},
{
"__id__": 41
}
],
"_prefab": {
"__id__": 41
"__id__": 43
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 455,
"y": 365,
"z": 0
},
"_lrot": {
@@ -110,45 +107,50 @@
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedChildren": [
{
"__id__": 5
}
],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 5
"__id__": 13
},
{
"__id__": 7
},
{
"__id__": 8
},
{
"__id__": 9
},
{
"__id__": 10
},
{
"__id__": 12
},
{
"__id__": 14
"__id__": 15
},
{
"__id__": 16
},
{
"__id__": 17
},
{
"__id__": 18
},
{
"__id__": 20
},
{
"__id__": 22
},
{
"__id__": 24
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"__type__": "cc.MountedChildrenInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_name"
],
"value": "slist"
"nodes": [
{
"__id__": 7
}
]
},
{
"__type__": "cc.TargetInfo",
@@ -156,143 +158,35 @@
"0bP5AdjVNKbIVXJK2hNWPD"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 11
},
"propertyPath": [
"_contentSize"
],
"value": {
"__type__": "cc.Size",
"width": 680,
"height": 120
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"53s5rNSsdM1rRVM8XF85z1"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 13
},
"propertyPath": [
"_contentSize"
],
"value": {
"__type__": "cc.Size",
"width": 680,
"height": 120
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"0fDjKrHkFN9YsEzQamA+QJ"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 15
},
"propertyPath": [
"_left"
],
"value": 10
},
{
"__type__": "cc.TargetInfo",
"localID": [
"88vjsnrkhKvrT5BHQt/TeZ"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 15
},
"propertyPath": [
"_right"
],
"value": 10
},
{
"__type__": "cc.Node",
"_name": "ItemIcon_Scroll_Feather",
"_objFlags": 0,
"__editorExtras__": {},
"__editorExtras__": {
"mountedRoot": {
"__id__": 2
}
},
"_parent": {
"__id__": 1
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 18
"__id__": 8
},
{
"__id__": 20
"__id__": 10
}
],
"_prefab": {
"__id__": 22
"__id__": 12
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -297.311,
"y": 40.477,
"y": 40.47700000000009,
"z": 0
},
"_lrot": {
@@ -324,11 +218,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 17
"__id__": 7
},
"_enabled": true,
"__prefab": {
"__id__": 19
"__id__": 9
},
"_contentSize": {
"__type__": "cc.Size",
@@ -352,11 +246,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 17
"__id__": 7
},
"_enabled": true,
"__prefab": {
"__id__": 21
"__id__": 11
},
"_customMaterial": null,
"_srcBlendFactor": 2,
@@ -404,6 +298,134 @@
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 14
},
"propertyPath": [
"_name"
],
"value": "slist"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"0bP5AdjVNKbIVXJK2hNWPD"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 14
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 14
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 14
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 19
},
"propertyPath": [
"_contentSize"
],
"value": {
"__type__": "cc.Size",
"width": 680,
"height": 120
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"53s5rNSsdM1rRVM8XF85z1"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 21
},
"propertyPath": [
"_contentSize"
],
"value": {
"__type__": "cc.Size",
"width": 680,
"height": 120
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"0fDjKrHkFN9YsEzQamA+QJ"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 23
},
"propertyPath": [
"_left"
],
"value": 10
},
{
"__type__": "cc.TargetInfo",
"localID": [
"88vjsnrkhKvrT5BHQt/TeZ"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 23
},
"propertyPath": [
"_right"
],
"value": 10
},
{
"__type__": "cc.Node",
"_name": "lab_content",
@@ -415,18 +437,18 @@
"_children": [],
"_active": true,
"_components": [
{
"__id__": 24
},
{
"__id__": 26
},
{
"__id__": 28
},
{
"__id__": 30
}
],
"_prefab": {
"__id__": 30
"__id__": 32
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -463,11 +485,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
"__id__": 25
},
"_enabled": true,
"__prefab": {
"__id__": 25
"__id__": 27
},
"_contentSize": {
"__type__": "cc.Size",
@@ -491,11 +513,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
"__id__": 25
},
"_enabled": true,
"__prefab": {
"__id__": 27
"__id__": 29
},
"_customMaterial": null,
"_srcBlendFactor": 2,
@@ -559,11 +581,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
"__id__": 25
},
"_enabled": true,
"__prefab": {
"__id__": 29
"__id__": 31
},
"_params": [],
"_dataID": "",
@@ -596,7 +618,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 32
"__id__": 34
},
"_contentSize": {
"__type__": "cc.Size",
@@ -624,7 +646,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 34
"__id__": 36
},
"_customMaterial": null,
"_srcBlendFactor": 2,
@@ -666,7 +688,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 36
"__id__": 38
},
"playOnLoad": true,
"_clips": [
@@ -695,13 +717,13 @@
},
"_enabled": true,
"__prefab": {
"__id__": 38
"__id__": 40
},
"lab_content": {
"__id__": 26
"__id__": 28
},
"animation": {
"__id__": 35
"__id__": 37
},
"_id": ""
},
@@ -719,13 +741,13 @@
},
"_enabled": true,
"__prefab": {
"__id__": 40
"__id__": 42
},
"_alignFlags": 1,
"_target": null,
"_left": 0,
"_right": 0,
"_top": 110,
"_top": 200,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,

Binary file not shown.

View File

@@ -1 +0,0 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"551a2611-69c0-45ae-bfc6-37f056a34b33","files":[],"subMetas":{},"userData":{}}

View File

@@ -1,41 +0,0 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "cfeeea4f-db9c-42cd-a0f7-fc5cb37bd3d7",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{
"USE_TEXTURE": true
}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"glowColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"glowWidth": 0.003,
"glowThreshold": 0.645
}
]
}

View File

@@ -1 +0,0 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"2fcd55a9-38ca-45aa-9164-68e48aaf51ce","files":[".json"],"subMetas":{},"userData":{}}

View File

@@ -1 +0,0 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"974af3c9-d7ee-449f-a5df-cd8e2dd49188","files":[".json"],"subMetas":{},"userData":{}}

View File

@@ -1 +0,0 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"7d369c63-9191-4323-abcc-edda5799a410","files":[],"subMetas":{},"userData":{}}

View File

@@ -1,169 +0,0 @@
// Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd.
CCEffect %{
techniques:
- passes:
- vert: sprite-vs:vert
frag: sprite-fs:frag
depthStencilState:
depthTest: false
depthWrite: false
blendState:
targets:
- blend: true
blendSrc: src_alpha
blendDst: one_minus_src_alpha
blendDstAlpha: one_minus_src_alpha
rasterizerState:
cullMode: none
properties:
alphaThreshold: { value: 0.5 }
glowColor: { value: [1, 1, 1, 1], editor: { type: color } }
glowWidth: { value: 0.05, editor: { slide: true, range: [0, 0.3], step: 0.001 } }
glowThreshold: { value: 1, editor: { slide: true, range: [0, 1], step: 0.001 } }
}%
CCProgram sprite-vs %{
precision highp float;
#include <builtin/uniforms/cc-global>
#if USE_LOCAL
#include <builtin/uniforms/cc-local>
#endif
#if SAMPLE_FROM_RT
#include <common/common-define>
#endif
in vec3 a_position;
in vec2 a_texCoord;
in vec4 a_color;
out vec4 color;
out vec2 uv0;
vec4 vert () {
vec4 pos = vec4(a_position, 1);
#if USE_LOCAL
pos = cc_matWorld * pos;
#endif
#if USE_PIXEL_ALIGNMENT
pos = cc_matView * pos;
pos.xyz = floor(pos.xyz);
pos = cc_matProj * pos;
#else
pos = cc_matViewProj * pos;
#endif
uv0 = a_texCoord;
#if SAMPLE_FROM_RT
CC_HANDLE_RT_SAMPLE_FLIP(uv0);
#endif
color = a_color;
return pos;
}
}%
CCProgram sprite-fs %{
precision highp float;
#include <builtin/internal/embedded-alpha>
#include <builtin/internal/alpha-test>
in vec4 color;
uniform FSConstants {
vec4 glowColor;
float glowWidth;
float glowThreshold;
};
#if USE_TEXTURE
in vec2 uv0;
#pragma builtin(local)
layout(set = 2, binding = 12) uniform sampler2D cc_spriteTexture;
#endif
vec4 getTextureColor (sampler2D mainTexture, vec2 uv) {
if (uv.x > 1.0 || uv.x < 0.0 || uv.y > 1.0 || uv.y < 0.0) {
return vec4(0.0, 0.0, 0.0, 0.0);
}
return texture(mainTexture, uv);
}
float getColorAlpha (float angle, float dist) {
// 角度转弧度,公式为:弧度 = 角度 * (pi / 180)
float radian = angle * 3.14 / 180.0;
vec2 newUV = uv0 + vec2(dist * cos(radian), dist * sin(radian));
vec4 color = getTextureColor(cc_spriteTexture, newUV);
return color.a;
}
float getAverageAlpha (float dist) {
float totalAlpha = 0.0;
totalAlpha += getColorAlpha(0.0, dist);
totalAlpha += getColorAlpha(30.0, dist);
totalAlpha += getColorAlpha(60.0, dist);
totalAlpha += getColorAlpha(90.0, dist);
totalAlpha += getColorAlpha(120.0, dist);
totalAlpha += getColorAlpha(150.0, dist);
totalAlpha += getColorAlpha(180.0, dist);
totalAlpha += getColorAlpha(210.0, dist);
totalAlpha += getColorAlpha(240.0, dist);
totalAlpha += getColorAlpha(270.0, dist);
totalAlpha += getColorAlpha(300.0, dist);
totalAlpha += getColorAlpha(330.0, dist);
return totalAlpha * 0.0833;
}
float getGlowAlpha () {
if (glowWidth == 0.0 ) {
return 0.0;
}
float totalAlpha = 0.0;
totalAlpha += getAverageAlpha(glowWidth * 0.1);
totalAlpha += getAverageAlpha(glowWidth * 0.2);
totalAlpha += getAverageAlpha(glowWidth * 0.3);
totalAlpha += getAverageAlpha(glowWidth * 0.4);
totalAlpha += getAverageAlpha(glowWidth * 0.5);
totalAlpha += getAverageAlpha(glowWidth * 0.6);
totalAlpha += getAverageAlpha(glowWidth * 0.7);
totalAlpha += getAverageAlpha(glowWidth * 0.8);
totalAlpha += getAverageAlpha(glowWidth * 0.9);
totalAlpha += getAverageAlpha(glowWidth * 1.0);
return totalAlpha * 0.1;
}
vec4 frag () {
vec4 o = vec4(1, 1, 1, 1);
#if USE_TEXTURE
o *= CCSampleWithAlphaSeparated(cc_spriteTexture, uv0);
#if IS_GRAY
float gray = 0.2126 * o.r + 0.7152 * o.g + 0.0722 * o.b;
o.r = o.g = o.b = gray;
#endif
#endif
float alpha = getGlowAlpha();
if (alpha <= glowThreshold) {
alpha /= glowThreshold;
alpha = -1.0 * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) + 1.0;
} else {
alpha = 0.0;
}
vec4 dstColor = glowColor * alpha;
vec4 scrColor = o;
o = scrColor * scrColor.a + dstColor * (1.0 - scrColor.a);
o *= color;
ALPHA_TEST(o);
return o;
}
}%

View File

@@ -1,169 +0,0 @@
// Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd.
CCEffect %{
techniques:
- passes:
- vert: sprite-vs:vert
frag: sprite-fs:frag
depthStencilState:
depthTest: false
depthWrite: false
blendState:
targets:
- blend: true
blendSrc: src_alpha
blendDst: one_minus_src_alpha
blendDstAlpha: one_minus_src_alpha
rasterizerState:
cullMode: none
properties:
alphaThreshold: { value: 0.5 }
glowColor: { value: [1, 1, 1, 1], editor: { type: color } }
glowWidth: { value: 0.05, editor: { slide: true, range: [0, 0.3], step: 0.001 } }
glowThreshold: { value: 1, editor: { slide: true, range: [0, 1], step: 0.001 } }
}%
CCProgram sprite-vs %{
precision highp float;
#include <builtin/uniforms/cc-global>
#if USE_LOCAL
#include <builtin/uniforms/cc-local>
#endif
#if SAMPLE_FROM_RT
#include <common/common-define>
#endif
in vec3 a_position;
in vec2 a_texCoord;
in vec4 a_color;
out vec4 color;
out vec2 uv0;
vec4 vert () {
vec4 pos = vec4(a_position, 1);
#if USE_LOCAL
pos = cc_matWorld * pos;
#endif
#if USE_PIXEL_ALIGNMENT
pos = cc_matView * pos;
pos.xyz = floor(pos.xyz);
pos = cc_matProj * pos;
#else
pos = cc_matViewProj * pos;
#endif
uv0 = a_texCoord;
#if SAMPLE_FROM_RT
CC_HANDLE_RT_SAMPLE_FLIP(uv0);
#endif
color = a_color;
return pos;
}
}%
CCProgram sprite-fs %{
precision highp float;
#include <builtin/internal/embedded-alpha>
#include <builtin/internal/alpha-test>
in vec4 color;
uniform FSConstants {
vec4 glowColor;
float glowWidth;
float glowThreshold;
};
#if USE_TEXTURE
in vec2 uv0;
#pragma builtin(local)
layout(set = 2, binding = 12) uniform sampler2D cc_spriteTexture;
#endif
vec4 getTextureColor (sampler2D mainTexture, vec2 uv) {
if (uv.x > 1.0 || uv.x < 0.0 || uv.y > 1.0 || uv.y < 0.0) {
return vec4(0.0, 0.0, 0.0, 0.0);
}
return texture(mainTexture, uv);
}
float getColorAlpha (float angle, float dist) {
// 角度转弧度,公式为:弧度 = 角度 * (pi / 180)
float radian = angle * 3.14 / 180.0;
vec2 newUV = uv0 + vec2(dist * cos(radian), dist * sin(radian));
vec4 color = getTextureColor(cc_spriteTexture, newUV);
return color.a;
}
float getAverageAlpha (float dist) {
float totalAlpha = 0.0;
totalAlpha += getColorAlpha(0.0, dist);
totalAlpha += getColorAlpha(30.0, dist);
totalAlpha += getColorAlpha(60.0, dist);
totalAlpha += getColorAlpha(90.0, dist);
totalAlpha += getColorAlpha(120.0, dist);
totalAlpha += getColorAlpha(150.0, dist);
totalAlpha += getColorAlpha(180.0, dist);
totalAlpha += getColorAlpha(210.0, dist);
totalAlpha += getColorAlpha(240.0, dist);
totalAlpha += getColorAlpha(270.0, dist);
totalAlpha += getColorAlpha(300.0, dist);
totalAlpha += getColorAlpha(330.0, dist);
return totalAlpha * 0.0833;
}
float getGlowAlpha () {
if (glowWidth == 0.0 ) {
return 0.0;
}
float totalAlpha = 0.0;
totalAlpha += getAverageAlpha(glowWidth * 0.1);
totalAlpha += getAverageAlpha(glowWidth * 0.2);
totalAlpha += getAverageAlpha(glowWidth * 0.3);
totalAlpha += getAverageAlpha(glowWidth * 0.4);
totalAlpha += getAverageAlpha(glowWidth * 0.5);
totalAlpha += getAverageAlpha(glowWidth * 0.6);
totalAlpha += getAverageAlpha(glowWidth * 0.7);
totalAlpha += getAverageAlpha(glowWidth * 0.8);
totalAlpha += getAverageAlpha(glowWidth * 0.9);
totalAlpha += getAverageAlpha(glowWidth * 1.0);
return totalAlpha * 0.1;
}
vec4 frag () {
vec4 o = vec4(1, 1, 1, 1);
#if USE_TEXTURE
o *= CCSampleWithAlphaSeparated(cc_spriteTexture, uv0);
#if IS_GRAY
float gray = 0.2126 * o.r + 0.7152 * o.g + 0.0722 * o.b;
o.r = o.g = o.b = gray;
#endif
#endif
float alpha = getGlowAlpha();
if (alpha <= glowThreshold) {
alpha /= glowThreshold;
alpha = -1.0 * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) + 1.0;
} else {
alpha = 0.0;
}
vec4 dstColor = glowColor * alpha;
vec4 scrColor = o;
o = scrColor * scrColor.a + dstColor * (1.0 - scrColor.a);
o *= color;
ALPHA_TEST(o);
return o;
}
}%

View File

@@ -1 +0,0 @@
{"ver":"1.7.1","importer":"effect","imported":true,"uuid":"40c25c17-db22-4ae7-8d3a-f73cbb6d36ba","files":[".json"],"subMetas":{},"userData":{"combinations":[{}]}}

View File

@@ -28,18 +28,15 @@
},
{
"__id__": 6
},
{
"__id__": 8
}
],
"_prefab": {
"__id__": 10
"__id__": 8
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"y": 14.007,
"z": 0
},
"_lrot": {
@@ -51,8 +48,8 @@
},
"_lscale": {
"__type__": "cc.Vec3",
"x": -0.8,
"y": 0.8,
"x": -1.2,
"y": 1.2,
"z": 1
},
"_mobility": 0,
@@ -79,13 +76,13 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 256,
"height": 256
"width": 128,
"height": 128
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0
"y": 0.25
},
"_id": ""
},
@@ -115,13 +112,10 @@
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "9e5ec114-01a4-47d3-b7b7-df3b90209c91@6ce90",
"__expectedType__": "cc.SpriteFrame"
},
"_spriteFrame": null,
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
@@ -159,42 +153,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "3dBJqUbmFPGIhxjbVKe/vR"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": false,
"__prefab": {
"__id__": 9
},
"_alignFlags": 18,
"_target": null,
"_left": 180.8,
"_right": 180.8,
"_top": 460.8,
"_bottom": 450,
"_horizontalCenter": 0,
"_verticalCenter": 160,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 256,
"_originalHeight": 0,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "bbvPKZM+VNTrQG0iMfRGDW"
},
{
"__type__": "cc.PrefabInfo",
"root": {

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 560 KiB

View File

@@ -1,42 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "15588387-53dc-4224-bf79-8427e1cc1e9a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "15588387-53dc-4224-bf79-8427e1cc1e9a@6c48a",
"displayName": "equips2",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "15588387-53dc-4224-bf79-8427e1cc1e9a",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "15588387-53dc-4224-bf79-8427e1cc1e9a@6c48a"
}
}

View File

@@ -22,23 +22,20 @@
"__id__": 2
},
{
"__id__": 12
"__id__": 14
},
{
"__id__": 24
"__id__": 26
},
{
"__id__": 35
"__id__": 37
},
{
"__id__": 44
"__id__": 46
}
],
"_active": true,
"_components": [
{
"__id__": 53
},
{
"__id__": 55
},
@@ -53,16 +50,10 @@
},
{
"__id__": 63
},
{
"__id__": 65
},
{
"__id__": 67
}
],
"_prefab": {
"__id__": 69
"__id__": 65
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -115,15 +106,18 @@
},
{
"__id__": 9
},
{
"__id__": 11
}
],
"_prefab": {
"__id__": 11
"__id__": 13
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"y": -35.876,
"z": 0
},
"_lrot": {
@@ -135,8 +129,8 @@
},
"_lscale": {
"__type__": "cc.Vec3",
"x": -0.6,
"y": 0.6,
"x": -1,
"y": 1,
"z": 1
},
"_mobility": 0,
@@ -163,13 +157,13 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 256,
"height": 256
"width": 192,
"height": 192
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.515923074575571,
"y": 0.246783783334943
"x": 0.5,
"y": 0
},
"_id": ""
},
@@ -218,12 +212,12 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@f355d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e3af9",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
@@ -233,7 +227,10 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_atlas": {
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
},
{
@@ -255,36 +252,48 @@
"playOnLoad": true,
"_clips": [
{
"__uuid__": "e19acd9d-428a-4a50-ab60-3b2b38cfc8c7",
"__uuid__": "0411c53b-84a4-4224-8fbc-e6c53dcf3113",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "29475022-2131-4d81-a2f1-25d568695af9",
"__uuid__": "a4fdf2ea-9af6-443e-aba6-6d3c94187f84",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "4f06c5f0-0b93-48fe-ae51-cf85a56c4816",
"__uuid__": "cf5c013e-cdb0-4563-99c6-968ce93525c2",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "24c4c128-cccd-4a33-a133-22ee3d9360fa",
"__uuid__": "cc9f4dc9-ee75-4a58-b571-74aa98aaf48b",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "9bbfa8b0-bef7-4e6f-8226-5945a9b3f843",
"__uuid__": "016660a8-bcfe-446d-8b80-ccd58f2418de",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "584c96f6-3fc2-493a-94b8-69bb173856f8",
"__uuid__": "e181a0cd-8e6c-4efd-9813-66a1d3ed1e9a",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "8dfd321c-e500-460e-8483-2adac64e4bb7",
"__uuid__": "49017ed4-fa19-4bae-a226-407745f5f4b9",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "c4a54795-c97b-41ed-b232-138b71c2b1e8",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "1b97ed18-45d7-468e-8c98-61d8fbfbc8ea",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "799d4071-1356-443f-b878-23bdf975e966",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": {
"__uuid__": "e19acd9d-428a-4a50-ab60-3b2b38cfc8c7",
"__uuid__": "e181a0cd-8e6c-4efd-9813-66a1d3ed1e9a",
"__expectedType__": "cc.AnimationClip"
},
"_id": ""
@@ -293,6 +302,28 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "406uXfKLJEbab+NVEqD1aS"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 12
},
"hitFlashMaterial": {
"__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810",
"__expectedType__": "cc.Material"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "f9iLivg4dHhJksWCjvY9/w"
},
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -313,14 +344,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 13
"__id__": 15
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
"__id__": 14
},
"asset": {
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
@@ -328,7 +359,7 @@
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": {
"__id__": 14
"__id__": 16
},
"targetOverrides": null
},
@@ -341,15 +372,9 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 15
},
{
"__id__": 17
},
{
"__id__": 18
},
{
"__id__": 19
},
@@ -359,8 +384,14 @@
{
"__id__": 21
},
{
"__id__": 22
},
{
"__id__": 23
},
{
"__id__": 25
}
],
"removedComponents": []
@@ -368,7 +399,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_name"
@@ -384,22 +415,22 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": -0.057,
"y": -39.46,
"x": 0,
"y": -47.998,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_lrot"
@@ -415,7 +446,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_euler"
@@ -430,17 +461,17 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_active"
],
"value": true
"value": false
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 22
"__id__": 24
},
"propertyPath": [
"_contentSize"
@@ -460,7 +491,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_lscale"
@@ -479,14 +510,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 25
"__id__": 27
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 24
"__id__": 26
},
"asset": {
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
@@ -494,7 +525,7 @@
},
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
"instance": {
"__id__": 26
"__id__": 28
},
"targetOverrides": null
},
@@ -507,23 +538,23 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 27
},
{
"__id__": 29
},
{
"__id__": 30
},
{
"__id__": 31
},
{
"__id__": 32
},
{
"__id__": 33
},
{
"__id__": 34
},
{
"__id__": 36
}
],
"removedComponents": []
@@ -531,7 +562,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 28
"__id__": 30
},
"propertyPath": [
"_name"
@@ -547,7 +578,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 28
"__id__": 30
},
"propertyPath": [
"_lpos"
@@ -562,7 +593,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 28
"__id__": 30
},
"propertyPath": [
"_lrot"
@@ -578,7 +609,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 28
"__id__": 30
},
"propertyPath": [
"_euler"
@@ -593,7 +624,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 33
"__id__": 35
},
"propertyPath": [
"_lpos"
@@ -614,7 +645,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 28
"__id__": 30
},
"propertyPath": [
"_lscale"
@@ -633,14 +664,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 36
"__id__": 38
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 35
"__id__": 37
},
"asset": {
"__uuid__": "5b4ca49e-0f12-4478-b56d-bf8198b36b90",
@@ -648,7 +679,7 @@
},
"fileId": "0d6ZXmA5dHkZxoGONDL2sE",
"instance": {
"__id__": 37
"__id__": 39
},
"targetOverrides": null
},
@@ -661,20 +692,20 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 38
},
{
"__id__": 40
},
{
"__id__": 41
},
{
"__id__": 42
},
{
"__id__": 43
},
{
"__id__": 44
},
{
"__id__": 45
}
],
"removedComponents": []
@@ -682,7 +713,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 39
"__id__": 41
},
"propertyPath": [
"_name"
@@ -698,7 +729,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 39
"__id__": 41
},
"propertyPath": [
"_lpos"
@@ -713,7 +744,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 39
"__id__": 41
},
"propertyPath": [
"_lrot"
@@ -729,7 +760,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 39
"__id__": 41
},
"propertyPath": [
"_euler"
@@ -744,7 +775,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 39
"__id__": 41
},
"propertyPath": [
"_active"
@@ -758,14 +789,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 45
"__id__": 47
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 44
"__id__": 46
},
"asset": {
"__uuid__": "ae4493bd-cbcc-4392-921c-3e2b0fcd5338",
@@ -773,7 +804,7 @@
},
"fileId": "91yoyAQGNDm5ziI7NUChZ+",
"instance": {
"__id__": 46
"__id__": 48
},
"targetOverrides": null
},
@@ -786,20 +817,20 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 47
},
{
"__id__": 49
},
{
"__id__": 50
},
{
"__id__": 51
},
{
"__id__": 52
},
{
"__id__": 53
},
{
"__id__": 54
}
],
"removedComponents": []
@@ -807,7 +838,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 48
"__id__": 50
},
"propertyPath": [
"_name"
@@ -823,7 +854,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 48
"__id__": 50
},
"propertyPath": [
"_lpos"
@@ -838,7 +869,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 48
"__id__": 50
},
"propertyPath": [
"_lrot"
@@ -854,7 +885,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 48
"__id__": 50
},
"propertyPath": [
"_euler"
@@ -869,7 +900,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 48
"__id__": 50
},
"propertyPath": [
"_active"
@@ -886,7 +917,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 54
"__id__": 56
},
"_contentSize": {
"__type__": "cc.Size",
@@ -914,7 +945,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 56
"__id__": 58
},
"anm": {
"__id__": 5
@@ -929,25 +960,6 @@
"__type__": "873f8d+SolMEo8DiTTxZRh4",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 58
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "ae2ywFEqlJ26Sq7z7AtGgk"
},
{
"__type__": "7eb34NR6XVEf78HCi5eAKLm",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
@@ -959,7 +971,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "654wWWbWpMeYe/ywRBGTMP"
"fileId": "ae2ywFEqlJ26Sq7z7AtGgk"
},
{
"__type__": "cc.RigidBody2D",
@@ -1015,13 +1027,13 @@
"_restitution": 0,
"_offset": {
"__type__": "cc.Vec2",
"x": -1.1,
"y": 33.8
"x": 0,
"y": 50
},
"_size": {
"__type__": "cc.Size",
"width": 48.6,
"height": 67.5
"width": 60,
"height": 100
},
"_id": ""
},
@@ -1029,42 +1041,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "23j+p5lLdC+r4iKSVeLNM4"
},
{
"__type__": "6f882ofb1pO9Z6gIaAZLCeF",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 66
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a2jPQ8TNhPj67IyZiPimbD"
},
{
"__type__": "846e0MH5V5Lw6nbs4fImtZx",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 68
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a0ZuO8pcZBVLCGR/YlgT1g"
},
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -1078,16 +1054,16 @@
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 44
"__id__": 46
},
{
"__id__": 35
"__id__": 37
},
{
"__id__": 24
"__id__": 26
},
{
"__id__": 12
"__id__": 14
}
]
}

View File

@@ -2,7 +2,7 @@
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "35d64e39-037b-446d-b62c-dfe0b619d578",
"uuid": "e19334ed-9fcf-454f-a68e-fb934da2518b",
"files": [
".json"
],

View File

@@ -22,23 +22,20 @@
"__id__": 2
},
{
"__id__": 12
"__id__": 14
},
{
"__id__": 24
"__id__": 26
},
{
"__id__": 35
"__id__": 37
},
{
"__id__": 44
"__id__": 46
}
],
"_active": true,
"_components": [
{
"__id__": 53
},
{
"__id__": 55
},
@@ -53,16 +50,10 @@
},
{
"__id__": 63
},
{
"__id__": 65
},
{
"__id__": 67
}
],
"_prefab": {
"__id__": 69
"__id__": 65
},
"_lpos": {
"__type__": "cc.Vec3",
@@ -115,15 +106,18 @@
},
{
"__id__": 9
},
{
"__id__": 11
}
],
"_prefab": {
"__id__": 11
"__id__": 13
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"y": -35.876,
"z": 0
},
"_lrot": {
@@ -135,8 +129,8 @@
},
"_lscale": {
"__type__": "cc.Vec3",
"x": -0.6,
"y": 0.6,
"x": -1,
"y": 1,
"z": 1
},
"_mobility": 0,
@@ -163,13 +157,13 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 256,
"height": 256
"width": 192,
"height": 192
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.515923074575571,
"y": 0.246783783334943
"x": 0.5,
"y": 0
},
"_id": ""
},
@@ -218,12 +212,12 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "3751c550-6b31-4667-a6bb-c9af49ba570c@4a7f8",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@14e00",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
@@ -233,7 +227,10 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_atlas": {
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269",
"__expectedType__": "cc.SpriteAtlas"
},
"_id": ""
},
{
@@ -255,36 +252,48 @@
"playOnLoad": true,
"_clips": [
{
"__uuid__": "50b469f6-5a67-42df-b90e-66a14a7bccfd",
"__uuid__": "95c9a034-1c29-483d-a6f3-bd5e973f6c06",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "a0d8b93f-5256-4d05-831f-cfbd738e9b25",
"__uuid__": "c7a0ded9-a870-4fc4-93e2-1bec11801142",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "8415e22a-e82b-4d3c-ad43-d20b018fe284",
"__uuid__": "5ac9c26d-0afa-4667-8e62-a5bf13e51e38",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "d360c22d-9a28-4dde-ae5f-89f2a5fc12cc",
"__uuid__": "1ea275cc-cb83-452b-bc4d-98e40364523c",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "09fac07f-7398-4ccd-9312-19a050395c30",
"__uuid__": "7cdb305a-f16a-47eb-add8-8cda788aa184",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "47434ef6-f5d5-44d0-a9fe-6087ff150b76",
"__uuid__": "9098ce69-33e0-41d6-ab79-274accd1fa56",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "c47d691c-4955-4e97-8ed3-16ca317b88b2",
"__uuid__": "fbf32dae-f240-47a6-9aa5-b4f8b01a87af",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "56628bc8-a6c1-4c3d-8326-8a28b03af883",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "5390adef-a142-406a-9324-2fa2baefd64e",
"__expectedType__": "cc.AnimationClip"
},
{
"__uuid__": "083ce0cf-cfcb-4097-97fc-2283697ecb37",
"__expectedType__": "cc.AnimationClip"
}
],
"_defaultClip": {
"__uuid__": "50b469f6-5a67-42df-b90e-66a14a7bccfd",
"__uuid__": "9098ce69-33e0-41d6-ab79-274accd1fa56",
"__expectedType__": "cc.AnimationClip"
},
"_id": ""
@@ -293,6 +302,28 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "406uXfKLJEbab+NVEqD1aS"
},
{
"__type__": "954e43Y+QJHNIUpmqTCWA7A",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 12
},
"hitFlashMaterial": {
"__uuid__": "8eee8ab1-fe48-4b22-b956-3f5c18fc4810",
"__expectedType__": "cc.Material"
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "6cZu2rl69OR5+l1nRZerhd"
},
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -313,14 +344,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 13
"__id__": 15
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
"__id__": 14
},
"asset": {
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
@@ -328,7 +359,7 @@
},
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
"instance": {
"__id__": 14
"__id__": 16
},
"targetOverrides": null
},
@@ -341,15 +372,9 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 15
},
{
"__id__": 17
},
{
"__id__": 18
},
{
"__id__": 19
},
@@ -359,8 +384,14 @@
{
"__id__": 21
},
{
"__id__": 22
},
{
"__id__": 23
},
{
"__id__": 25
}
],
"removedComponents": []
@@ -368,7 +399,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_name"
@@ -384,22 +415,22 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": -0.057,
"y": -39.46,
"x": 0,
"y": -47.998,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_lrot"
@@ -415,7 +446,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_euler"
@@ -430,17 +461,17 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_active"
],
"value": true
"value": false
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 22
"__id__": 24
},
"propertyPath": [
"_contentSize"
@@ -460,7 +491,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 16
"__id__": 18
},
"propertyPath": [
"_lscale"
@@ -479,14 +510,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 25
"__id__": 27
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 24
"__id__": 26
},
"asset": {
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
@@ -494,7 +525,7 @@
},
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
"instance": {
"__id__": 26
"__id__": 28
},
"targetOverrides": null
},
@@ -507,23 +538,23 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 27
},
{
"__id__": 29
},
{
"__id__": 30
},
{
"__id__": 31
},
{
"__id__": 32
},
{
"__id__": 33
},
{
"__id__": 34
},
{
"__id__": 36
}
],
"removedComponents": []
@@ -531,7 +562,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 28
"__id__": 30
},
"propertyPath": [
"_name"
@@ -547,7 +578,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 28
"__id__": 30
},
"propertyPath": [
"_lpos"
@@ -562,7 +593,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 28
"__id__": 30
},
"propertyPath": [
"_lrot"
@@ -578,7 +609,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 28
"__id__": 30
},
"propertyPath": [
"_euler"
@@ -593,7 +624,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 33
"__id__": 35
},
"propertyPath": [
"_lpos"
@@ -614,7 +645,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 28
"__id__": 30
},
"propertyPath": [
"_lscale"
@@ -633,14 +664,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 36
"__id__": 38
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 35
"__id__": 37
},
"asset": {
"__uuid__": "5b4ca49e-0f12-4478-b56d-bf8198b36b90",
@@ -648,7 +679,7 @@
},
"fileId": "0d6ZXmA5dHkZxoGONDL2sE",
"instance": {
"__id__": 37
"__id__": 39
},
"targetOverrides": null
},
@@ -661,20 +692,20 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 38
},
{
"__id__": 40
},
{
"__id__": 41
},
{
"__id__": 42
},
{
"__id__": 43
},
{
"__id__": 44
},
{
"__id__": 45
}
],
"removedComponents": []
@@ -682,7 +713,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 39
"__id__": 41
},
"propertyPath": [
"_name"
@@ -698,7 +729,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 39
"__id__": 41
},
"propertyPath": [
"_lpos"
@@ -713,7 +744,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 39
"__id__": 41
},
"propertyPath": [
"_lrot"
@@ -729,7 +760,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 39
"__id__": 41
},
"propertyPath": [
"_euler"
@@ -744,7 +775,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 39
"__id__": 41
},
"propertyPath": [
"_active"
@@ -758,14 +789,14 @@
"__id__": 1
},
"_prefab": {
"__id__": 45
"__id__": 47
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 44
"__id__": 46
},
"asset": {
"__uuid__": "ae4493bd-cbcc-4392-921c-3e2b0fcd5338",
@@ -773,7 +804,7 @@
},
"fileId": "91yoyAQGNDm5ziI7NUChZ+",
"instance": {
"__id__": 46
"__id__": 48
},
"targetOverrides": null
},
@@ -786,20 +817,20 @@
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 47
},
{
"__id__": 49
},
{
"__id__": 50
},
{
"__id__": 51
},
{
"__id__": 52
},
{
"__id__": 53
},
{
"__id__": 54
}
],
"removedComponents": []
@@ -807,7 +838,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 48
"__id__": 50
},
"propertyPath": [
"_name"
@@ -823,7 +854,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 48
"__id__": 50
},
"propertyPath": [
"_lpos"
@@ -838,7 +869,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 48
"__id__": 50
},
"propertyPath": [
"_lrot"
@@ -854,7 +885,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 48
"__id__": 50
},
"propertyPath": [
"_euler"
@@ -869,7 +900,7 @@
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 48
"__id__": 50
},
"propertyPath": [
"_active"
@@ -886,7 +917,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 54
"__id__": 56
},
"_contentSize": {
"__type__": "cc.Size",
@@ -914,7 +945,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 56
"__id__": 58
},
"anm": {
"__id__": 5
@@ -929,25 +960,6 @@
"__type__": "873f8d+SolMEo8DiTTxZRh4",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 58
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "ae2ywFEqlJ26Sq7z7AtGgk"
},
{
"__type__": "7eb34NR6XVEf78HCi5eAKLm",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
@@ -959,7 +971,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "654wWWbWpMeYe/ywRBGTMP"
"fileId": "ae2ywFEqlJ26Sq7z7AtGgk"
},
{
"__type__": "cc.RigidBody2D",
@@ -1015,13 +1027,13 @@
"_restitution": 0,
"_offset": {
"__type__": "cc.Vec2",
"x": -1.1,
"y": 33.8
"x": 0,
"y": 50
},
"_size": {
"__type__": "cc.Size",
"width": 48.6,
"height": 67.5
"width": 60,
"height": 100
},
"_id": ""
},
@@ -1029,42 +1041,6 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "23j+p5lLdC+r4iKSVeLNM4"
},
{
"__type__": "6f882ofb1pO9Z6gIaAZLCeF",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 66
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a2jPQ8TNhPj67IyZiPimbD"
},
{
"__type__": "846e0MH5V5Lw6nbs4fImtZx",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 68
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a0ZuO8pcZBVLCGR/YlgT1g"
},
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -1078,16 +1054,16 @@
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 44
"__id__": 46
},
{
"__id__": 35
"__id__": 37
},
{
"__id__": 24
"__id__": 26
},
{
"__id__": 12
"__id__": 14
}
]
}

View File

@@ -2,7 +2,7 @@
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "f4c90c4c-56a1-4458-88f8-b6f14ec1412f",
"uuid": "dcdb138c-1ca1-4ff2-85f7-eff1225fae08",
"files": [
".json"
],

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"35ebd20f-6fd1-4a67-a5b7-46fb799065f4","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}}

View File

@@ -7,7 +7,7 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,

View File

@@ -2,12 +2,12 @@
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "ee70aa99-524a-4521-bae6-c156881ee3d1",
"uuid": "c5ffa9f7-44e4-41b9-a927-f4856f5328f4",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "dun1"
"name": "atk0"
}
}

View File

@@ -1,13 +1,13 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atked",
"_name": "atk1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"879dfba9-e02e-4ca5-99e5-69efed1d9a86","files":[".cconb"],"subMetas":{},"userData":{"name":"atk1"}}

View File

@@ -0,0 +1,71 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk2",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"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":"211c974f-254c-488e-be87-9e0fc1039543","files":[".cconb"],"subMetas":{},"userData":{"name":"atk2"}}

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1124e0ab-9fd5-44f5-980b-8e057ba497c0","files":[".cconb"],"subMetas":{},"userData":{"name":"atked"}}

View File

@@ -1,13 +1,13 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "buff",
"_name": "atk2",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
@@ -19,18 +19,7 @@
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.4,
"func": "",
"params": []
},
{
"frame": 0.4,
"func": "atk",
"params": []
}
],
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6

View File

@@ -2,7 +2,7 @@
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "6e578291-d871-4b04-8a2a-7d226cfb7940",
"uuid": "aa573219-edec-4df8-b6dc-e79e15fb81b0",
"files": [
".cconb"
],

View File

@@ -0,0 +1,71 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk2",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"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

@@ -2,7 +2,7 @@
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "e8c8e45b-6b0f-41bf-8eaf-cd65a80c41de",
"uuid": "1acca320-e159-4c4c-aa73-fd8987b590d6",
"files": [
".cconb"
],

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"000cc8a3-3dc8-4aaf-a5be-090ce64744c4","files":[".cconb"],"subMetas":{},"userData":{"name":"debuff"}}

View File

@@ -7,7 +7,7 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"3481dcef-28c2-4576-b690-804dfa747f91","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"8f109f2d-d5fc-4f3f-8897-d4c4b5fabf68","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"e7c3fafd-334f-4ed0-a273-96f2b708c0d4","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}}

View File

@@ -7,7 +7,7 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,

View File

@@ -0,0 +1,13 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "2d545a13-b7b3-4a3d-b351-08937caafd96",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "max0"
}
}

View File

@@ -0,0 +1,71 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"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":"97ca2809-a0c4-48e3-9249-d2036d7470ae","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}

View File

@@ -7,7 +7,7 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b764418d-4859-479c-b660-91738f12bd52","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"85922420-4b73-4fcc-bf19-11f39c582ac3","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}

View File

@@ -7,7 +7,7 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,

View File

@@ -0,0 +1,13 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "9c57e1af-2739-454d-9c12-00849ea05c1a",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "stun"
}
}

View File

@@ -1,746 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>frames</key>
<dict>
<key>Bow_buff_ATTACK1_0_move_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK1_0_move_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK1_0_move_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK1_0_move_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK1_0_move_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK4_0_Attack_Bow_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK4_0_Attack_Bow_0-10.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK4_0_Attack_Bow_0-12.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK4_0_Attack_Bow_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK4_0_Attack_Bow_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK4_0_Attack_Bow_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK4_0_Attack_Bow_0-8.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK5_1_Skill_Magic_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK5_1_Skill_Magic_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK5_1_Skill_Magic_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK5_1_Skill_Magic_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK5_1_Skill_Magic_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK5_1_Skill_Magic_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK5_1_Skill_Magic_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK5_1_Skill_Magic_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK5_1_Skill_Magic_0-8.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_ATTACK5_1_Skill_Magic_0-9.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_DEATH0_0_Damaged_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_DEATH0_0_Damaged_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_DEATH0_0_Damaged_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_DEATH0_0_Damaged_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_DEATH0_0_Damaged_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_IDLE0_0_idle_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_IDLE0_0_idle_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_IDLE0_0_idle_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_IDLE0_0_idle_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_IDLE0_0_idle_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_IDLE0_0_idle_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_IDLE0_0_idle_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_IDLE0_0_idle_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER0_0_Debuff_Stun_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER0_0_Debuff_Stun_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER0_0_Debuff_Stun_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER0_0_Debuff_Stun_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER0_0_Debuff_Stun_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER0_0_Debuff_Stun_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER0_0_Debuff_Stun_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER0_0_Debuff_Stun_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER2_0_Buff_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER2_0_Buff_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER2_0_Buff_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER2_0_Buff_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_buff_OTHER2_0_Buff_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
</dict>
<key>metadata</key>
<dict>
<key>format</key>
<integer>3</integer>
<key>pixelFormat</key>
<string>RGBA8888</string>
<key>premultiplyAlpha</key>
<false/>
<key>realTextureFileName</key>
<string>a1.png</string>
<key>size</key>
<string>{1806,1806}</string>
<key>smartupdate</key>
<string>$TexturePacker:SmartUpdate:7dd899b9b10867865f0958f6ff63eeb4:1d1a0b115934959b288f1b4e5c661472:8f441eea617a1901ef1a8c6f9792dad3$</string>
<key>textureFileName</key>
<string>a1.png</string>
</dict>
</dict>
</plist>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 255 KiB

View File

@@ -2,7 +2,7 @@
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "3403fbf1-f543-4e09-a6ec-24425bc59177",
"uuid": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943",
"files": [
".json",
".png"
@@ -10,8 +10,8 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3403fbf1-f543-4e09-a6ec-24425bc59177@6c48a",
"displayName": "a3",
"uuid": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a",
"displayName": "a1c1",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -22,7 +22,7 @@
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "3403fbf1-f543-4e09-a6ec-24425bc59177",
"imageUuidOrDatabaseUri": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943",
"visible": false
},
"ver": "1.0.22",
@@ -34,9 +34,9 @@
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3403fbf1-f543-4e09-a6ec-24425bc59177@6c48a"
"redirect": "ea2f429b-cb7a-49d0-a6d3-49efc82ba943@6c48a"
}
}

View File

@@ -1,746 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>frames</key>
<dict>
<key>Bow_green_ATTACK1_0_move_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK1_0_move_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK1_0_move_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK1_0_move_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK1_0_move_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK2_0_Attack_Bow_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK2_0_Attack_Bow_0-10.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK2_0_Attack_Bow_0-12.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK2_0_Attack_Bow_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK2_0_Attack_Bow_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK2_0_Attack_Bow_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK2_0_Attack_Bow_0-8.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK5_1_Skill_Bow_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK5_1_Skill_Bow_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK5_1_Skill_Bow_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK5_1_Skill_Bow_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK5_1_Skill_Bow_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK5_1_Skill_Bow_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK5_1_Skill_Bow_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK5_1_Skill_Bow_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK5_1_Skill_Bow_0-8.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_ATTACK5_1_Skill_Bow_0-9.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_DEATH0_0_Damaged_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_DEATH0_0_Damaged_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_DEATH0_0_Damaged_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_DEATH0_0_Damaged_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_DEATH0_0_Damaged_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_IDLE0_0_idle_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_IDLE0_0_idle_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_IDLE0_0_idle_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_IDLE0_0_idle_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_IDLE0_0_idle_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_IDLE0_0_idle_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_IDLE0_0_idle_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_IDLE0_0_idle_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER0_0_Debuff_Stun_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER0_0_Debuff_Stun_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER0_0_Debuff_Stun_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER0_0_Debuff_Stun_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER0_0_Debuff_Stun_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER0_0_Debuff_Stun_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER0_0_Debuff_Stun_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER0_0_Debuff_Stun_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER2_0_Buff_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER2_0_Buff_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER2_0_Buff_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER2_0_Buff_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow_green_OTHER2_0_Buff_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
</dict>
<key>metadata</key>
<dict>
<key>format</key>
<integer>3</integer>
<key>pixelFormat</key>
<string>RGBA8888</string>
<key>premultiplyAlpha</key>
<false/>
<key>realTextureFileName</key>
<string>a2.png</string>
<key>size</key>
<string>{1806,1806}</string>
<key>smartupdate</key>
<string>$TexturePacker:SmartUpdate:1b9ed98b78f8c9f1abcbef9014a5d3d0:4115f7e118568642251cdbd6898124e2:ad3455d2962931411bc6674078684934$</string>
<key>textureFileName</key>
<string>a2.png</string>
</dict>
</dict>
</plist>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

View File

@@ -1,746 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>frames</key>
<dict>
<key>Bow3_ATTACK1_0_move_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK1_0_move_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK1_0_move_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK1_0_move_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK1_0_move_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK2_0_Attack_Bow_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK2_0_Attack_Bow_0-10.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK2_0_Attack_Bow_0-12.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK2_0_Attack_Bow_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK2_0_Attack_Bow_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK2_0_Attack_Bow_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK2_0_Attack_Bow_0-8.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK5_1_Skill_Bow_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK5_1_Skill_Bow_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK5_1_Skill_Bow_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK5_1_Skill_Bow_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK5_1_Skill_Bow_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK5_1_Skill_Bow_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK5_1_Skill_Bow_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK5_1_Skill_Bow_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK5_1_Skill_Bow_0-8.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_ATTACK5_1_Skill_Bow_0-9.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_DEATH0_0_Damaged_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_DEATH0_0_Damaged_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_DEATH0_0_Damaged_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_DEATH0_0_Damaged_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_DEATH0_0_Damaged_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_IDLE0_0_idle_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_IDLE0_0_idle_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_IDLE0_0_idle_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_IDLE0_0_idle_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_IDLE0_0_idle_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_IDLE0_0_idle_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_IDLE0_0_idle_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_IDLE0_0_idle_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER0_0_Debuff_Stun_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER0_0_Debuff_Stun_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER0_0_Debuff_Stun_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER0_0_Debuff_Stun_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER0_0_Debuff_Stun_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER0_0_Debuff_Stun_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER0_0_Debuff_Stun_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER0_0_Debuff_Stun_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER2_0_Buff_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER2_0_Buff_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER2_0_Buff_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER2_0_Buff_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>Bow3_OTHER2_0_Buff_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
</dict>
<key>metadata</key>
<dict>
<key>format</key>
<integer>3</integer>
<key>pixelFormat</key>
<string>RGBA8888</string>
<key>premultiplyAlpha</key>
<false/>
<key>realTextureFileName</key>
<string>a3.png</string>
<key>size</key>
<string>{1806,1806}</string>
<key>smartupdate</key>
<string>$TexturePacker:SmartUpdate:7b2e2835bf5a7f650a093e09b6b3ecf4:3b1884d09063c8673659da0ce8a71713:075f4bf0e18d30430a3992d42506f8be$</string>
<key>textureFileName</key>
<string>a3.png</string>
</dict>
</dict>
</plist>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

View File

@@ -1,746 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>frames</key>
<dict>
<key>chike_1_ATTACK0_0_Attack_Normal_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK0_0_Attack_Normal_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK0_0_Attack_Normal_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK0_0_Attack_Normal_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK0_0_Attack_Normal_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK0_0_Attack_Normal_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK5_1_Skill_Normal_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK5_1_Skill_Normal_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK5_1_Skill_Normal_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK5_1_Skill_Normal_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK5_1_Skill_Normal_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK5_1_Skill_Normal_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK5_1_Skill_Normal_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_ATTACK5_1_Skill_Normal_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_DEATH0_0_Damaged_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,1},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_DEATH0_0_Damaged_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_DEATH0_0_Damaged_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_DEATH0_0_Damaged_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_DEATH0_0_Damaged_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_IDLE0_0_idle_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_IDLE0_0_idle_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{259,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_IDLE0_0_idle_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_IDLE0_0_idle_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_IDLE0_0_idle_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_IDLE0_0_idle_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_IDLE0_0_idle_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,259},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_IDLE0_0_idle_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_MOVE0_0_move_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_MOVE0_0_move_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_MOVE0_0_move_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_MOVE0_0_move_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{517,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_MOVE0_0_move_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER0_0_Debuff_Stun_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER0_0_Debuff_Stun_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER0_0_Debuff_Stun_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,517},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER0_0_Debuff_Stun_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER0_0_Debuff_Stun_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER0_0_Debuff_Stun_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER0_0_Debuff_Stun_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{775,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER0_0_Debuff_Stun_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER2_0_Buff_0-0.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER2_0_Buff_0-1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,775},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER2_0_Buff_0-2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER2_0_Buff_0-3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER2_0_Buff_0-4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1033,1549},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER2_0_Buff_0-5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER2_0_Buff_0-6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1549,1033},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>chike_1_OTHER2_0_Buff_0-7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{256,256}</string>
<key>spriteSourceSize</key>
<string>{256,256}</string>
<key>textureRect</key>
<string>{{1291,1291},{256,256}}</string>
<key>textureRotated</key>
<false/>
</dict>
</dict>
<key>metadata</key>
<dict>
<key>format</key>
<integer>3</integer>
<key>pixelFormat</key>
<string>RGBA8888</string>
<key>premultiplyAlpha</key>
<false/>
<key>realTextureFileName</key>
<string>c1.png</string>
<key>size</key>
<string>{1806,1806}</string>
<key>smartupdate</key>
<string>$TexturePacker:SmartUpdate:5393a38cfa0576a514a17703f4fbb59b:891113423d1f445310b39fa38aefa28d:1422f1128d6daf77aa8550262d834a4e$</string>
<key>textureFileName</key>
<string>c1.png</string>
</dict>
</dict>
</plist>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

View File

@@ -2,7 +2,7 @@
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "459d724d-7610-4d02-bd68-031a7a628d12",
"uuid": "a30edf8a-0c58-410e-9f7f-529c82758cd0",
"files": [
".json",
".png"
@@ -10,8 +10,8 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "459d724d-7610-4d02-bd68-031a7a628d12@6c48a",
"displayName": "c1",
"uuid": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a",
"displayName": "h1m2",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -22,7 +22,7 @@
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "459d724d-7610-4d02-bd68-031a7a628d12",
"imageUuidOrDatabaseUri": "a30edf8a-0c58-410e-9f7f-529c82758cd0",
"visible": false
},
"ver": "1.0.22",
@@ -34,9 +34,9 @@
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "459d724d-7610-4d02-bd68-031a7a628d12@6c48a"
"redirect": "a30edf8a-0c58-410e-9f7f-529c82758cd0@6c48a"
}
}

View File

@@ -1 +1 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"09b935a9-598a-4ade-8b0a-774b92a0e862","files":[],"subMetas":{},"userData":{}}
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"4ffca4da-5962-4c6d-b366-f9c7cd8cd4bc","files":[],"subMetas":{},"userData":{}}

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"4f06c5f0-0b93-48fe-ae51-cf85a56c4816","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}}

View File

@@ -0,0 +1,173 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk0",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 30,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.6666666666666666,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.03333333333333333,
0.06666666666666667,
0.1,
0.13333333333333333,
0.16666666666666666,
0.2,
0.23333333333333334,
0.26666666666666666,
0.3,
0.3333333333333333,
0.36666666666666664,
0.4,
0.43333333333333335,
0.4666666666666667,
0.5,
0.5333333333333333,
0.5666666666666667,
0.6,
0.6333333333333333
],
"_values": [
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e9205",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@35cb3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@20d4b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0f1aa",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cbd6c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d6f67",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@993b3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f23a3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@85956",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e66fc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0b4f6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ec4aa",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@64b4c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@14bf2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@24319",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@64c77",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@faf01",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a02f7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@52c3b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c2676",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"0411c53b-84a4-4224-8fbc-e6c53dcf3113","files":[".cconb"],"subMetas":{},"userData":{"name":"atk0"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "tt",
"_name": "atk1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 2,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 1.1,
"_duration": 0.6666666666666666,
"_hash": 500763545,
"_tracks": [
{
@@ -62,60 +62,55 @@
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.1,
0.06666666666666667,
0.13333333333333333,
0.2,
0.3,
0.26666666666666666,
0.3333333333333333,
0.4,
0.5,
0.6,
0.7,
0.8,
0.9,
1
0.4666666666666667,
0.5333333333333333,
0.6
],
"_values": [
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@9d0f8",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@79d0c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@63128",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a6592",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@967c2",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@96f7b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@6d141",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@df8c7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@0bb65",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6fae3",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@77d6e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@fb666",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@e0f6a",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3f67c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@47f4b",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@efa5f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@a2da5",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ac910",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@2c207",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "093403fd-fec9-42ef-b952-5831234ff06e@9b6b4",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@61cee",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a4fdf2ea-9af6-443e-aba6-6d3c94187f84","files":[".cconb"],"subMetas":{},"userData":{"name":"atk1"}}

View File

@@ -0,0 +1,153 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk2",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 20,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.05,
0.1,
0.15,
0.2,
0.25,
0.3,
0.35,
0.4,
0.45,
0.5,
0.55,
0.6,
0.65,
0.7,
0.75
],
"_values": [
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e3af9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5cb03",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@78df0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7b3fb",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0741b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@27b3e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a84bd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b1f80",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e7fd0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ea280",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4bbc6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f6cab",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f1a00",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2f215",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a8e72",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f742c",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"cf5c013e-cdb0-4563-99c6-968ce93525c2","files":[".cconb"],"subMetas":{},"userData":{"name":"atk2"}}

View File

@@ -1,98 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atked",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.5,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.1,
0.2,
0.3,
0.4
],
"_values": [
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@5f236",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@b6619",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@a6c37",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@4c323",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@3c4eb",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"584c96f6-3fc2-493a-94b8-69bb173856f8","files":[".cconb"],"subMetas":{},"userData":{"name":"atked"}}

View File

@@ -7,11 +7,11 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.5,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
@@ -19,18 +19,7 @@
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.4,
"func": "",
"params": []
},
{
"frame": 0.4,
"func": "atk",
"params": []
}
],
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
@@ -73,30 +62,65 @@
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.1,
0.06666666666666667,
0.13333333333333333,
0.2,
0.3,
0.4
0.26666666666666666,
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333,
0.6,
0.6666666666666666,
0.7333333333333333
],
"_values": [
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@38123",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f66c0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@e8c3b",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e5e3d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@44942",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6b085",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@0ac7c",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@aabc5",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@1e98f",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1ee95",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d3938",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f783f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3a7fd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@c5e74",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e3ab1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b1807",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e1e6e",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"8dfd321c-e500-460e-8483-2adac64e4bb7","files":[".cconb"],"subMetas":{},"userData":{"name":"buff"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"cc9f4dc9-ee75-4a58-b571-74aa98aaf48b","files":[".cconb"],"subMetas":{},"userData":{"name":"buff"}}

View File

@@ -1,17 +1,17 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "boom1",
"_name": "dead",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 60,
"sample": 15,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.25,
"_duration": 1.0666666666666667,
"_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": "Node"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
@@ -62,87 +55,92 @@
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.016666666666666666,
0.03333333333333333,
0.05,
0.06666666666666667,
0.08333333333333333,
0.1,
0.11666666666666667,
0.13333333333333333,
0.15,
0.16666666666666666,
0.18333333333333332,
0.2,
0.21666666666666667,
0.23333333333333334
0.26666666666666666,
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333,
0.6,
0.6666666666666666,
0.7333333333333333,
0.8,
0.8666666666666667,
0.9333333333333333,
1
],
"_values": [
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@d0d9e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6ba2c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@a4482",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2df0b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@0a281",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@dbd03",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@5449d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@90c5e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@0f0c3",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9ae00",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@84275",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@57fc8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@eb951",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d8f71",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@7cc4a",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e6edc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@af9f6",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9da50",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@47dca",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@26abf",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@6d189",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0c141",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@57967",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5ab05",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@943ab",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@1a88f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@951e6",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@bf8c8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "56a24460-ef67-4aa0-a3f7-fad4007046dc@6c890",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@db614",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0291e",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"016660a8-bcfe-446d-8b80-ccd58f2418de","files":[".cconb"],"subMetas":{},"userData":{"name":"dead"}}

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"9bbfa8b0-bef7-4e6f-8226-5945a9b3f843","files":[".cconb"],"subMetas":{},"userData":{"name":"debuff"}}

View File

@@ -7,7 +7,7 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
@@ -62,45 +62,65 @@
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.1,
0.06666666666666667,
0.13333333333333333,
0.2,
0.3,
0.26666666666666666,
0.3333333333333333,
0.4,
0.5,
0.4666666666666667,
0.5333333333333333,
0.6,
0.7
0.6666666666666666,
0.7333333333333333
],
"_values": [
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@f355d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@85704",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@d03a7",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@35219",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@e91b1",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@d748d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@1e241",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@92027",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@8bafb",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4d3d4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@be50e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@18367",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@10a8e",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@295fd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@422c5",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7bb9f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5cd54",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6628e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f7922",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@73b30",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"e19acd9d-428a-4a50-ab60-3b2b38cfc8c7","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"e181a0cd-8e6c-4efd-9813-66a1d3ed1e9a","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}}

View File

@@ -1,124 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.7,
"func": "",
"params": []
},
{
"frame": 0.7,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.1,
0.2,
0.3,
0.4,
0.5,
0.6,
0.7
],
"_values": [
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@f84f2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@7673a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@99319",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@440a7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@0930c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@e1a7b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@76c24",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@9d26a",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"24c4c128-cccd-4a33-a133-22ee3d9360fa","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}}

View File

@@ -0,0 +1,153 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max0",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 20,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.05,
0.1,
0.15,
0.2,
0.25,
0.3,
0.35,
0.4,
0.45,
0.5,
0.55,
0.6,
0.65,
0.7,
0.75
],
"_values": [
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e3af9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@5cb03",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@78df0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7b3fb",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@0741b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@27b3e",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a84bd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@b1f80",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e7fd0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ea280",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4bbc6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f6cab",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f1a00",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2f215",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a8e72",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f742c",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"49017ed4-fa19-4bae-a226-407745f5f4b9","files":[".cconb"],"subMetas":{},"userData":{"name":"max0"}}

View File

@@ -0,0 +1,153 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "max1",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 1.0666666666666667,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.06666666666666667,
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333,
0.6,
0.6666666666666666,
0.7333333333333333,
0.8,
0.8666666666666667,
0.9333333333333333,
1
],
"_values": [
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@a2ae4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@4d9fe",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@93628",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6d64b",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@849c2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@98343",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@7dc3d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@761d4",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@05c47",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ecc1a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@adbb1",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ddcc8",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8dde2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@97161",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@10581",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9c742",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c4a54795-c97b-41ed-b232-138b71c2b1e8","files":[".cconb"],"subMetas":{},"userData":{"name":"max1"}}

View File

@@ -7,11 +7,11 @@
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"sample": 15,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.6,
"_duration": 0.5333333333333333,
"_hash": 500763545,
"_tracks": [
{
@@ -62,35 +62,45 @@
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.1,
0.06666666666666667,
0.13333333333333333,
0.2,
0.3,
0.26666666666666666,
0.3333333333333333,
0.4,
0.5
0.4666666666666667
],
"_values": [
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@5e6cc",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@86ff6",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@3f060",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ef970",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@27453",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@68ab0",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@85c8d",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@8d02d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@82688",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@cf58c",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "6da392a3-789c-4523-a2f1-8ac8c7bb0112@3f060",
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9a164",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@2fa19",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3b56d",
"__expectedType__": "cc.SpriteFrame"
}
]

View File

@@ -1 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"29475022-2131-4d81-a2f1-25d568695af9","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1b97ed18-45d7-468e-8c98-61d8fbfbc8ea","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}}

View File

@@ -0,0 +1,133 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "stun",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 15,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.8,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.06666666666666667,
0.13333333333333333,
0.2,
0.26666666666666666,
0.3333333333333333,
0.4,
0.4666666666666667,
0.5333333333333333,
0.6,
0.6666666666666666,
0.7333333333333333
],
"_values": [
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@3d414",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@9542f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e42ed",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6a714",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@f0932",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@ba869",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@15e95",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@73f8f",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@aa3f7",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@101e2",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@e1adc",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "97aa0f88-8138-4b35-94bc-4f691e3f6269@6d61a",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -0,0 +1 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"799d4071-1356-443f-b878-23bdf975e966","files":[".cconb"],"subMetas":{},"userData":{"name":"stun"}}

View File

@@ -1 +0,0 @@
{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"15033962-8180-4c6d-879b-7ee7bc9a0f36","files":[],"subMetas":{},"userData":{}}

View File

@@ -1,114 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atk",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.7,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.6,
"func": "",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.1,
0.2,
0.3,
0.4,
0.5,
0.6
],
"_values": [
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@ec394",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@be606",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@c15a9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@aa55a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@c7c64",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@fe94a",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@cce52",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"5d47f58a-24e2-4796-9860-77dff6843d71","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}}

View File

@@ -1,98 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "atked",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.5,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.1,
0.2,
0.3,
0.4
],
"_values": [
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@7c003",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@9d19d",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@a2b82",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@b6f14",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@f29b5",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"006b9bbf-6fef-4818-8cf4-d706fbf521d8","files":[".cconb"],"subMetas":{},"userData":{"name":"atked"}}

View File

@@ -1,109 +0,0 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "buff",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 10,
"speed": 1,
"wrapMode": 1,
"enableTrsBlending": false,
"_duration": 0.5,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [
{
"frame": 0.4,
"func": "",
"params": []
},
{
"frame": 0.4,
"func": "atk",
"params": []
}
],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 6
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ObjectTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channel": {
"__id__": 4
}
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
"spriteFrame"
]
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 5
}
},
{
"__type__": "cc.ObjectCurve",
"_times": [
0,
0.1,
0.2,
0.3,
0.4
],
"_values": [
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@d8a51",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@4f284",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@149cd",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@81db9",
"__expectedType__": "cc.SpriteFrame"
},
{
"__uuid__": "da566466-2412-4373-8251-6ce8c3c06b7a@19979",
"__expectedType__": "cc.SpriteFrame"
}
]
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@@ -1 +0,0 @@
{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1c9bbd6c-15e3-41f0-8e3a-aedb417ff9e5","files":[".cconb"],"subMetas":{},"userData":{"name":"debuff"}}

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