diff --git a/assets/resources/config/TS/herosList.ts b/assets/resources/config/TS/herosList.ts deleted file mode 100644 index 2ebc755a..00000000 --- a/assets/resources/config/TS/herosList.ts +++ /dev/null @@ -1,409 +0,0 @@ -import { resources } from "cc"; - -class herosList { - /** - * 静态对象 - * - * @public - * @static - * @type {herosList} - * @memberof herosList - */ - private static instance: herosList; - /** - * 列表 - * - * @public - * @type {Array} - * @memberof herosList - */ - public list: Array = []; - /** - * 配置单例 - * - * @static - * @returns {herosList} - * @memberof herosList - */ - public static getInstance(): herosList { - if (!herosList.instance) { - herosList.instance = new herosList(); - } - - return herosList.instance; - } - - /** - * 加载文件 - * - * @return {*} {Promise} - * @memberof LanguageList - */ - public async loadConfig(): Promise { - const data: any = await new Promise((resolve: any, reject: any): any => { - resources.load('config\game/heros', (error: any, texture: any): any => { - if (error) { - console.log('loadRes error', 'config\game/heros', JSON.stringify(error)); - resolve(null); - } else { - resolve(texture); - } - }); - }); - herosList.instance.list = data.json.list; - } - - /** - * 初始化 - * - * @memberof TableBigWheelConfigList - */ - public async init(): Promise { - if(herosList.instance.list.length === 0) { - await this.loadConfig(); - } - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public uuid(index: number): number { - return this.list[index].uuid; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public path(index: number): number { - return this.list[index].path; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public type(index: number): number { - return this.list[index].type; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public level(index: number): number { - return this.list[index].level; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {string} - * @memberof herosList - */ - public name(index: number): string { - return this.list[index].name; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public atk(index: number): number { - return this.list[index].atk; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public hp(index: number): number { - return this.list[index].hp; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public atk_cd(index: number): number { - return this.list[index].atk_cd; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public power(index: number): number { - return this.list[index].power; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public speed(index: number): number { - return this.list[index].speed; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {string} - * @memberof herosList - */ - public skill(index: number): string { - return this.list[index].skill; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {string} - * @memberof herosList - */ - public max_skill(index: number): string { - return this.list[index].max_skill; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public skill_uuid(index: number): number { - return this.list[index].skill_uuid; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {number} - * @memberof herosList - */ - public max_skill_uuid(index: number): number { - return this.list[index].max_skill_uuid; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {string} - * @memberof herosList - */ - public word(index: number): string { - return this.list[index].word; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {string} - * @memberof herosList - */ - public info(index: number): string { - return this.list[index].info; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {string} - * @memberof herosList - */ - public atktype(index: number): string { - return this.list[index].atktype; - } - - /** - * undefined - * - * @param {number} index - * @return {*} {string} - * @memberof herosList - */ - public mon(index: number): string { - return this.list[index].mon; - } - - - /** - * 数据长度 - * - * @return {*} {number} - * @memberof herosList - */ - public dataLength(): number { - return this.list.length; - } -} - -export default herosList.getInstance(); - - - -export interface IherosInfo { - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - uuid: number - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - path: number - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - type: number - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - level: number - /** - * undefined - * - * @type {string} - * @memberof IherosInfo - */ - name: string - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - atk: number - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - hp: number - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - atk_cd: number - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - power: number - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - speed: number - /** - * undefined - * - * @type {string} - * @memberof IherosInfo - */ - skill: string - /** - * undefined - * - * @type {string} - * @memberof IherosInfo - */ - max_skill: string - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - skill_uuid: number - /** - * undefined - * - * @type {number} - * @memberof IherosInfo - */ - max_skill_uuid: number - /** - * undefined - * - * @type {string} - * @memberof IherosInfo - */ - word: string - /** - * undefined - * - * @type {string} - * @memberof IherosInfo - */ - info: string - /** - * undefined - * - * @type {string} - * @memberof IherosInfo - */ - atktype: string - /** - * undefined - * - * @type {string} - * @memberof IherosInfo - */ - mon: string - -} \ No newline at end of file diff --git a/assets/resources/config/TS/herosList.ts.meta b/assets/resources/config/TS/herosList.ts.meta deleted file mode 100644 index 850e9933..00000000 --- a/assets/resources/config/TS/herosList.ts.meta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ver": "4.0.23", - "importer": "typescript", - "imported": true, - "uuid": "0474f376-56be-49e1-8350-420ba7eae103", - "files": [], - "subMetas": {}, - "userData": {} -} diff --git a/assets/resources/config/game/heros.json b/assets/resources/config/game/heros.json deleted file mode 100644 index 3bb92814..00000000 --- a/assets/resources/config/game/heros.json +++ /dev/null @@ -1,1071 +0,0 @@ -{ - "list": [ - { - "uuid": 1101, - "path": 1101, - "type": 1, - "level": 1, - "name": "守护犬", - "atk": 4, - "hp": 24, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "守护", - "info": "自身护盾", - "atktype": "攻击型", - "mon": "狗" - }, - { - "uuid": 1102, - "path": 1102, - "type": 1, - "level": 1, - "name": "狂暴犬", - "atk": 4, - "hp": 24, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "狂暴", - "info": "全体攻击", - "atktype": "攻击型", - "mon": "狗" - }, - { - "uuid": 1103, - "path": 1103, - "type": 1, - "level": 1, - "name": "火焰犬", - "atk": 4, - "hp": 24, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "火焰", - "info": "大火球", - "atktype": "攻击型", - "mon": "狗" - }, - { - "uuid": 1104, - "path": 1104, - "type": 1, - "level": 1, - "name": "机甲犬", - "atk": 4, - "hp": 24, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻击型", - "mon": "狗" - }, - { - "uuid": 1105, - "path": 1105, - "type": 1, - "level": 1, - "name": "战斗蚁", - "atk": 4, - "hp": 24, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻击型", - "mon": "蚂蚁" - }, - { - "uuid": 1106, - "path": 1106, - "type": 1, - "level": 1, - "name": "战斗蚁", - "atk": 4, - "hp": 24, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻击型", - "mon": "蚂蚁" - }, - { - "uuid": 2101, - "path": 2101, - "type": 1, - "level": 2, - "name": "金刚鹦鹉", - "atk": 6, - "hp": 36, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "金刚", - "info": "全体招架", - "atktype": "攻击型", - "mon": "鹦鹉" - }, - { - "uuid": 2102, - "path": 2102, - "type": 1, - "level": 2, - "name": "狂暴鹦鹉", - "atk": 6, - "hp": 36, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "狂暴", - "info": "全体攻击", - "atktype": "攻击型", - "mon": "鹦鹉" - }, - { - "uuid": 2103, - "path": 2103, - "type": 1, - "level": 2, - "name": "鹰", - "atk": 6, - "hp": 36, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻击型", - "mon": "鹰" - }, - { - "uuid": 2104, - "path": 2104, - "type": 1, - "level": 2, - "name": "鹰", - "atk": 6, - "hp": 36, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻击型", - "mon": "鹰" - }, - { - "uuid": 2105, - "path": 2105, - "type": 1, - "level": 2, - "name": "鹰", - "atk": 6, - "hp": 36, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻击型", - "mon": "鹰" - }, - { - "uuid": 3101, - "path": 3101, - "type": 1, - "level": 3, - "name": "火焰山羊", - "atk": 9, - "hp": 54, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "火焰", - "info": "大火球", - "atktype": "攻击型", - "mon": "山羊" - }, - { - "uuid": 3102, - "path": 3102, - "type": 1, - "level": 3, - "name": "坚韧山羊", - "atk": 9, - "hp": 54, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "守护", - "info": "全体护盾", - "atktype": "攻击型", - "mon": "山羊" - }, - { - "uuid": 3103, - "path": 3103, - "type": 1, - "level": 3, - "name": "山羊", - "atk": 9, - "hp": 54, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻击型", - "mon": "山羊" - }, - { - "uuid": 3104, - "path": 3104, - "type": 1, - "level": 3, - "name": "山羊", - "atk": 9, - "hp": 54, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻击型", - "mon": "山羊" - }, - { - "uuid": 4101, - "path": 4101, - "type": 1, - "level": 4, - "name": "炎爆麋鹿", - "atk": 13, - "hp": 81, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "炎爆", - "info": "炎爆", - "atktype": "攻击型", - "mon": "鹿" - }, - { - "uuid": 4102, - "path": 4102, - "type": 1, - "level": 4, - "name": "金刚麋鹿", - "atk": 13, - "hp": 81, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "金刚", - "info": "全体招架", - "atktype": "攻击型", - "mon": "鹿" - }, - { - "uuid": 4103, - "path": 4103, - "type": 1, - "level": 4, - "name": "鹿", - "atk": 13, - "hp": 81, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻击型", - "mon": "鹿" - }, - { - "uuid": 4104, - "path": 4104, - "type": 1, - "level": 4, - "name": "鹿", - "atk": 13, - "hp": 81, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻击型", - "mon": "鹿" - }, - { - "uuid": 1201, - "path": 1201, - "type": 2, - "level": 1, - "name": "守护绵羊", - "atk": 2, - "hp": 48, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "守护", - "info": "自身护盾", - "atktype": "血量型", - "mon": "绵羊" - }, - { - "uuid": 1202, - "path": 1202, - "type": 2, - "level": 1, - "name": "再生绵羊", - "atk": 2, - "hp": 48, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "再生", - "info": "全体回血", - "atktype": "血量型", - "mon": "绵羊" - }, - { - "uuid": 1203, - "path": 1203, - "type": 2, - "level": 1, - "name": "坚韧绵羊", - "atk": 2, - "hp": 48, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "info": "全体护盾", - "atktype": "血量型", - "mon": "绵羊" - }, - { - "uuid": 1204, - "path": 1204, - "type": 2, - "level": 1, - "name": "绵羊", - "atk": 2, - "hp": 48, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "血量型", - "mon": "绵羊" - }, - { - "uuid": 2201, - "path": 2201, - "type": 2, - "level": 2, - "name": "坚韧龟", - "atk": 3, - "hp": 72, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "坚韧", - "info": "全体护盾", - "atktype": "血量型", - "mon": "龟" - }, - { - "uuid": 2202, - "path": 2202, - "type": 2, - "level": 2, - "name": "狂暴龟", - "atk": 3, - "hp": 72, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "狂暴", - "info": "全体攻击", - "atktype": "血量型", - "mon": "龟" - }, - { - "uuid": 2203, - "path": 2203, - "type": 2, - "level": 2, - "name": "龟", - "atk": 3, - "hp": 72, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "血量型", - "mon": "龟" - }, - { - "uuid": 2204, - "path": 2204, - "type": 2, - "level": 2, - "name": "龟", - "atk": 3, - "hp": 72, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "血量型", - "mon": "龟" - }, - { - "uuid": 3201, - "path": 3201, - "type": 2, - "level": 3, - "name": "风刃野猪", - "atk": 5, - "hp": 108, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "风刃", - "info": "风刃", - "atktype": "血量型", - "mon": "野猪" - }, - { - "uuid": 3202, - "path": 3202, - "type": 2, - "level": 3, - "name": "急速野猪", - "atk": 5, - "hp": 108, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "急速", - "info": "全体闪避", - "atktype": "血量型", - "mon": "野猪" - }, - { - "uuid": 3203, - "path": 3203, - "type": 2, - "level": 3, - "name": "野猪", - "atk": 5, - "hp": 108, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "血量型", - "mon": "野猪" - }, - { - "uuid": 3204, - "path": 3204, - "type": 2, - "level": 3, - "name": "野猪", - "atk": 5, - "hp": 108, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "血量型", - "mon": "野猪" - }, - { - "uuid": 3205, - "path": 3205, - "type": 2, - "level": 3, - "name": "野猪", - "atk": 5, - "hp": 108, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "血量型", - "mon": "野猪" - }, - { - "uuid": 4201, - "path": 4201, - "type": 2, - "level": 4, - "name": "坚韧犀牛", - "atk": 7, - "hp": 162, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "坚韧", - "info": "全体护盾", - "atktype": "血量型", - "mon": "犀牛" - }, - { - "uuid": 4202, - "path": 4202, - "type": 2, - "level": 4, - "name": "雷暴犀牛", - "atk": 7, - "hp": 162, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "雷暴", - "info": "雷暴", - "atktype": "血量型", - "mon": "犀牛" - }, - { - "uuid": 4203, - "path": 4203, - "type": 2, - "level": 4, - "name": "犀牛", - "atk": 7, - "hp": 162, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "血量型", - "mon": "犀牛" - }, - { - "uuid": 4204, - "path": 4204, - "type": 2, - "level": 4, - "name": "犀牛", - "atk": 7, - "hp": 162, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "血量型", - "mon": "犀牛" - }, - { - "uuid": 1301, - "path": 1301, - "type": 3, - "level": 1, - "name": "守护喵", - "atk": 3, - "hp": 18, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "守护", - "info": "自身护盾", - "atktype": "攻速型", - "mon": "猫" - }, - { - "uuid": 1302, - "path": 1302, - "type": 3, - "level": 1, - "name": "急速喵", - "atk": 3, - "hp": 18, - "atk_cd": 2, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "急速", - "info": "全体闪避", - "atktype": "攻速型", - "mon": "猫" - }, - { - "uuid": 1303, - "path": 1303, - "type": 3, - "level": 1, - "name": "狂暴喵", - "atk": 3, - "hp": 18, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "狂暴", - "info": "全体攻击", - "atktype": "攻速型", - "mon": "松鼠" - }, - { - "uuid": 1304, - "path": 1304, - "type": 3, - "level": 1, - "atk": 3, - "hp": 18, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻速型", - "mon": "鼠" - }, - { - "uuid": 2301, - "path": 2301, - "type": 3, - "level": 2, - "name": "狂爆山猫", - "atk": 4, - "hp": 27, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "狂爆", - "info": "全体攻击", - "atktype": "攻速型", - "mon": "山猫" - }, - { - "uuid": 2302, - "path": 2302, - "type": 3, - "level": 2, - "name": "急速山猫", - "atk": 4, - "hp": 27, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "急速", - "info": "全体闪避", - "atktype": "攻速型", - "mon": "山猫" - }, - { - "uuid": 2303, - "path": 2303, - "type": 3, - "level": 2, - "atk": 4, - "hp": 27, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻速型", - "mon": "山猫" - }, - { - "uuid": 2304, - "path": 2304, - "type": 3, - "level": 2, - "atk": 4, - "hp": 27, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻速型", - "mon": "机械蜜蜂" - }, - { - "uuid": 2305, - "path": 2305, - "type": 3, - "level": 2, - "atk": 4, - "hp": 27, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻速型", - "mon": "机械山猫" - }, - { - "uuid": 3301, - "path": 3301, - "type": 3, - "level": 3, - "name": "坚韧狮", - "atk": 6, - "hp": 45, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "坚韧", - "info": "全体护盾", - "atktype": "攻速型", - "mon": "狮子" - }, - { - "uuid": 3302, - "path": 3302, - "type": 3, - "level": 3, - "name": "冰封狮", - "atk": 6, - "hp": 45, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "冰封", - "info": "冰封", - "atktype": "攻速型", - "mon": "狮子" - }, - { - "uuid": 3303, - "path": 3303, - "type": 3, - "level": 3, - "atk": 6, - "hp": 45, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻速型", - "mon": "狮子" - }, - { - "uuid": 3304, - "path": 3304, - "type": 3, - "level": 3, - "atk": 6, - "hp": 45, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻速型", - "mon": "狮子" - }, - { - "uuid": 4301, - "path": 4301, - "type": 3, - "level": 4, - "name": "急速独角兽", - "atk": 10, - "hp": 66, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "急速", - "info": "全体闪避", - "atktype": "攻速型", - "mon": "独角兽" - }, - { - "uuid": 4302, - "path": 4302, - "type": 3, - "level": 4, - "name": "潮汐独角兽", - "atk": 10, - "hp": 66, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "word": "潮汐", - "info": "潮汐", - "atktype": "攻速型", - "mon": "独角兽" - }, - { - "uuid": 4303, - "path": 4303, - "type": 3, - "level": 4, - "atk": 10, - "hp": 66, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻速型", - "mon": "独角兽" - }, - { - "uuid": 4304, - "path": 4304, - "type": 3, - "level": 4, - "atk": 10, - "hp": 66, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "攻速型", - "mon": "独角兽" - }, - { - "uuid": 5001, - "path": 5001, - "type": 6, - "level": 5, - "atk": 15, - "hp": 180, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "精英型", - "mon": "雷电犀牛" - }, - { - "uuid": 5002, - "path": 5002, - "type": 6, - "level": 5, - "atk": 15, - "hp": 180, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "精英型", - "mon": "闪电鼠" - }, - { - "uuid": 5003, - "path": 5003, - "type": 6, - "level": 5, - "atk": 15, - "hp": 180, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "精英型", - "mon": "龙" - }, - { - "uuid": 5004, - "path": 5004, - "type": 6, - "level": 5, - "atk": 15, - "hp": 180, - "atk_cd": 1, - "power": 50, - "speed": 80, - "skill": "base", - "max_skill": "base", - "skill_uuid": 9001, - "max_skill_uuid": 1001, - "atktype": "精英型", - "mon": "龙" - } - ] -} \ No newline at end of file diff --git a/assets/resources/config/game/heros.json.meta b/assets/resources/config/game/heros.json.meta deleted file mode 100644 index 770139de..00000000 --- a/assets/resources/config/game/heros.json.meta +++ /dev/null @@ -1,11 +0,0 @@ -{ - "ver": "2.0.1", - "importer": "json", - "imported": true, - "uuid": "0bae35c2-3a42-434b-a4ac-aaf692fed6df", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": {} -} diff --git a/assets/resources/config/game/skills.json b/assets/resources/config/game/skills.json deleted file mode 100644 index d307513d..00000000 --- a/assets/resources/config/game/skills.json +++ /dev/null @@ -1 +0,0 @@ -{"list":[]} \ No newline at end of file diff --git a/assets/resources/config/game/skills.json.meta b/assets/resources/config/game/skills.json.meta deleted file mode 100644 index 584951cb..00000000 --- a/assets/resources/config/game/skills.json.meta +++ /dev/null @@ -1,11 +0,0 @@ -{ - "ver": "2.0.1", - "importer": "json", - "imported": true, - "uuid": "26f73f18-c4b1-45cf-93f0-78c21b53e707", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": {} -} diff --git a/assets/resources/game/hero/animtor.meta b/assets/resources/game/hero/animtor.meta new file mode 100644 index 00000000..f43299e6 --- /dev/null +++ b/assets/resources/game/hero/animtor.meta @@ -0,0 +1 @@ +{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"48ee8ed9-b00f-4ffe-95b1-e9b91e273ba9","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/animtor/atk.anim b/assets/resources/game/hero/animtor/atk.anim new file mode 100644 index 00000000..fd6c4ae5 --- /dev/null +++ b/assets/resources/game/hero/animtor/atk.anim @@ -0,0 +1,71 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "atk", + "_objFlags": 0, + "__editorExtras__": { + "embeddedPlayerGroups": [] + }, + "_native": "", + "sample": 24, + "speed": 1, + "wrapMode": 1, + "enableTrsBlending": false, + "_duration": 0, + "_hash": 500763545, + "_tracks": [ + { + "__id__": 1 + } + ], + "_exoticAnimation": null, + "_events": [], + "_embeddedPlayers": [], + "_additiveSettings": { + "__id__": 6 + }, + "_auxiliaryCurveEntries": [] + }, + { + "__type__": "cc.animation.ObjectTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + }, + "proxy": null + }, + "_channel": { + "__id__": 4 + } + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 3 + }, + "spriteFrame" + ] + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.Sprite" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 5 + } + }, + { + "__type__": "cc.ObjectCurve", + "_times": [], + "_values": [] + }, + { + "__type__": "cc.AnimationClipAdditiveSettings", + "enabled": false, + "refClip": null + } +] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a1/atk.anim.meta b/assets/resources/game/hero/animtor/atk.anim.meta similarity index 61% rename from assets/resources/game/hero/archer/a1/atk.anim.meta rename to assets/resources/game/hero/animtor/atk.anim.meta index 9558b5ca..2d9bcc6a 100644 --- a/assets/resources/game/hero/archer/a1/atk.anim.meta +++ b/assets/resources/game/hero/animtor/atk.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"98f5ff8e-c1af-4937-974e-7154925b6513","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"679c2c1d-b22b-4836-aff5-006eae878253","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/animtor/idle.anim b/assets/resources/game/hero/animtor/idle.anim new file mode 100644 index 00000000..8def3cab --- /dev/null +++ b/assets/resources/game/hero/animtor/idle.anim @@ -0,0 +1,71 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "idle", + "_objFlags": 0, + "__editorExtras__": { + "embeddedPlayerGroups": [] + }, + "_native": "", + "sample": 24, + "speed": 1, + "wrapMode": 2, + "enableTrsBlending": false, + "_duration": 0, + "_hash": 500763545, + "_tracks": [ + { + "__id__": 1 + } + ], + "_exoticAnimation": null, + "_events": [], + "_embeddedPlayers": [], + "_additiveSettings": { + "__id__": 6 + }, + "_auxiliaryCurveEntries": [] + }, + { + "__type__": "cc.animation.ObjectTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + }, + "proxy": null + }, + "_channel": { + "__id__": 4 + } + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 3 + }, + "spriteFrame" + ] + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.Sprite" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 5 + } + }, + { + "__type__": "cc.ObjectCurve", + "_times": [], + "_values": [] + }, + { + "__type__": "cc.AnimationClipAdditiveSettings", + "enabled": false, + "refClip": null + } +] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a2/idle.anim.meta b/assets/resources/game/hero/animtor/idle.anim.meta similarity index 61% rename from assets/resources/game/hero/archer/a2/idle.anim.meta rename to assets/resources/game/hero/animtor/idle.anim.meta index 6b6ee738..4f0d0e4a 100644 --- a/assets/resources/game/hero/archer/a2/idle.anim.meta +++ b/assets/resources/game/hero/animtor/idle.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"7de1f2ab-54cb-4f47-83aa-911633abd96e","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"df0e2a46-c764-4dc8-88c5-14cffc8f3046","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/animtor/max.anim b/assets/resources/game/hero/animtor/max.anim new file mode 100644 index 00000000..8ae02482 --- /dev/null +++ b/assets/resources/game/hero/animtor/max.anim @@ -0,0 +1,71 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "max", + "_objFlags": 0, + "__editorExtras__": { + "embeddedPlayerGroups": [] + }, + "_native": "", + "sample": 24, + "speed": 1, + "wrapMode": 1, + "enableTrsBlending": false, + "_duration": 0, + "_hash": 500763545, + "_tracks": [ + { + "__id__": 1 + } + ], + "_exoticAnimation": null, + "_events": [], + "_embeddedPlayers": [], + "_additiveSettings": { + "__id__": 6 + }, + "_auxiliaryCurveEntries": [] + }, + { + "__type__": "cc.animation.ObjectTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + }, + "proxy": null + }, + "_channel": { + "__id__": 4 + } + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 3 + }, + "spriteFrame" + ] + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.Sprite" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 5 + } + }, + { + "__type__": "cc.ObjectCurve", + "_times": [], + "_values": [] + }, + { + "__type__": "cc.AnimationClipAdditiveSettings", + "enabled": false, + "refClip": null + } +] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a4/max.anim.meta b/assets/resources/game/hero/animtor/max.anim.meta similarity index 61% rename from assets/resources/game/hero/archer/a4/max.anim.meta rename to assets/resources/game/hero/animtor/max.anim.meta index 594b88ec..7beac75b 100644 --- a/assets/resources/game/hero/archer/a4/max.anim.meta +++ b/assets/resources/game/hero/animtor/max.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"7a82e623-c4cb-4924-9424-d86ba2ebd6dc","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"28ead812-8e25-461e-91e9-47b2f183b9ee","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/animtor/move.anim b/assets/resources/game/hero/animtor/move.anim new file mode 100644 index 00000000..67d4cf97 --- /dev/null +++ b/assets/resources/game/hero/animtor/move.anim @@ -0,0 +1,71 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "move", + "_objFlags": 0, + "__editorExtras__": { + "embeddedPlayerGroups": [] + }, + "_native": "", + "sample": 24, + "speed": 1, + "wrapMode": 2, + "enableTrsBlending": false, + "_duration": 0, + "_hash": 500763545, + "_tracks": [ + { + "__id__": 1 + } + ], + "_exoticAnimation": null, + "_events": [], + "_embeddedPlayers": [], + "_additiveSettings": { + "__id__": 6 + }, + "_auxiliaryCurveEntries": [] + }, + { + "__type__": "cc.animation.ObjectTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + }, + "proxy": null + }, + "_channel": { + "__id__": 4 + } + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 3 + }, + "spriteFrame" + ] + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.Sprite" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 5 + } + }, + { + "__type__": "cc.ObjectCurve", + "_times": [], + "_values": [] + }, + { + "__type__": "cc.AnimationClipAdditiveSettings", + "enabled": false, + "refClip": null + } +] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a2/move.anim.meta b/assets/resources/game/hero/animtor/move.anim.meta similarity index 61% rename from assets/resources/game/hero/archer/a2/move.anim.meta rename to assets/resources/game/hero/animtor/move.anim.meta index 72e61f2d..332d24f2 100644 --- a/assets/resources/game/hero/archer/a2/move.anim.meta +++ b/assets/resources/game/hero/animtor/move.anim.meta @@ -1 +1 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c107014a-0ccb-4931-b7c9-0b7b490ae496","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} +{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"5a362eb3-fb37-4af2-8c61-a0ebf620bea6","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/arc1.prefab b/assets/resources/game/hero/arc1.prefab index 9c02d3e3..42568280 100644 --- a/assets/resources/game/hero/arc1.prefab +++ b/assets/resources/game/hero/arc1.prefab @@ -368,12 +368,12 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@5d58e", + "__uuid__": "f45f8571-9328-4085-b3e8-946b13e74042@0b063", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -405,24 +405,24 @@ "playOnLoad": true, "_clips": [ { - "__uuid__": "ad21011b-11c1-43ba-9ee7-f07ef2ecb18c", + "__uuid__": "73d9b6a5-a78c-46d8-926a-ed0cf951546d", "__expectedType__": "cc.AnimationClip" }, { - "__uuid__": "98f5ff8e-c1af-4937-974e-7154925b6513", + "__uuid__": "cf0f6537-e4e4-4f9f-b549-1bd9ee66b30e", "__expectedType__": "cc.AnimationClip" }, { - "__uuid__": "8251b9e4-9ab0-4914-a0e1-21a5950f4a16", + "__uuid__": "eb78c6bd-0c6b-4f81-a509-7fd21701ffa8", "__expectedType__": "cc.AnimationClip" }, { - "__uuid__": "e7abf2f7-685d-4684-adb9-da909f7133fd", + "__uuid__": "2f70e36b-733e-4974-a1cf-7a6e0774a549", "__expectedType__": "cc.AnimationClip" } ], "_defaultClip": { - "__uuid__": "ad21011b-11c1-43ba-9ee7-f07ef2ecb18c", + "__uuid__": "73d9b6a5-a78c-46d8-926a-ed0cf951546d", "__expectedType__": "cc.AnimationClip" }, "_id": "" diff --git a/assets/resources/game/hero/arc2.prefab b/assets/resources/game/hero/arc2.prefab deleted file mode 100644 index f5fafe20..00000000 --- a/assets/resources/game/hero/arc2.prefab +++ /dev/null @@ -1,2670 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "arc2", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "arc2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 12 - }, - { - "__id__": 20 - }, - { - "__id__": 62 - } - ], - "_active": true, - "_components": [ - { - "__id__": 112 - }, - { - "__id__": 114 - }, - { - "__id__": 116 - }, - { - "__id__": 118 - }, - { - "__id__": 120 - } - ], - "_prefab": { - "__id__": 122 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "range_box", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - } - ], - "_prefab": { - "__id__": 11 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 50, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 20, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a7v65R9FlK35rDSodMKBaf" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "enabledContactListener": true, - "bullet": true, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 0, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1dGvLlJTxIyqWs7tv5eOjk" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "tag": 4, - "_group": 4, - "_density": 0, - "_sensor": false, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 250, - "y": 0 - }, - "_size": { - "__type__": "cc.Size", - "width": 500, - "height": 150 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c1dqgNlJdOJJzLITAnZIRf" - }, - { - "__type__": "4d46f6aanNOIZlLrgDp9iTQ", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "98yhYyvQhNNpWAR+ngR6YD" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "efBGnhxpVAs6aCGcg6inWm", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 13 - }, - { - "__id__": 15 - }, - { - "__id__": 17 - } - ], - "_prefab": { - "__id__": 19 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -3.171, - "y": 5.725, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 12 - }, - "_enabled": true, - "__prefab": { - "__id__": 14 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 64 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 12 - }, - "_enabled": true, - "__prefab": { - "__id__": 16 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@0b063", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b8HXPqPhZMN71qxUdeHMKv" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 12 - }, - "_enabled": true, - "__prefab": { - "__id__": 18 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "7de1f2ab-54cb-4f47-83aa-911633abd96e", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "6ab1a49d-198d-4aa9-b300-77e18a479716", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "87733e60-95c0-483d-8150-9b26369179bd", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "c107014a-0ccb-4931-b7c9-0b7b490ae496", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": { - "__uuid__": "7de1f2ab-54cb-4f47-83aa-911633abd96e", - "__expectedType__": "cc.AnimationClip" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cc+VbiPudF9b+0zbBwUuPW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "level", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 21 - }, - { - "__id__": 27 - }, - { - "__id__": 33 - }, - { - "__id__": 39 - }, - { - "__id__": 45 - }, - { - "__id__": 51 - } - ], - "_active": true, - "_components": [ - { - "__id__": 57 - }, - { - "__id__": 59 - } - ], - "_prefab": { - "__id__": 61 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -22.542, - "y": 74.394, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.6, - "y": 0.6, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 20 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 22 - }, - { - "__id__": 24 - } - ], - "_prefab": { - "__id__": 26 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 100.197, - "y": -77.265, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 21 - }, - "_enabled": true, - "__prefab": { - "__id__": 23 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cfZFaZgxNFo6RAbvR4Rmfc" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 21 - }, - "_enabled": true, - "__prefab": { - "__id__": 25 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e6uKIl33xHs5LfNDT0p+2p" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a7PGybi3lGW6rZ+VnLGFt6", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 20 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 28 - }, - { - "__id__": 30 - } - ], - "_prefab": { - "__id__": 32 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -61.16, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 27 - }, - "_enabled": true, - "__prefab": { - "__id__": 29 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d1lOxIXgdCJ6zpNNZGK8zg" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 27 - }, - "_enabled": true, - "__prefab": { - "__id__": 31 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e85QoknbNBfpqTQHj53qa7" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "besG/N2EFDa7lwWiyvx8Nl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 20 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "_prefab": { - "__id__": 38 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -43.555, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 33 - }, - "_enabled": true, - "__prefab": { - "__id__": 35 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "522G27EDRAqaOJNSy1XjqA" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 33 - }, - "_enabled": true, - "__prefab": { - "__id__": 37 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49HA7zbFRI77U6X4ltATKG" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "42gqlfWSRM46ibYgoOOPzt", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 20 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 40 - }, - { - "__id__": 42 - } - ], - "_prefab": { - "__id__": 44 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -27.047, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 39 - }, - "_enabled": true, - "__prefab": { - "__id__": 41 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "54B6UJW5NEdJ3RJ7tdZN/H" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 39 - }, - "_enabled": true, - "__prefab": { - "__id__": 43 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2adMQ5svRPv6C0hl03pcKW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "46MlNyXVlAd6iCQ2Xg1GOs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "5", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 20 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 46 - }, - { - "__id__": 48 - } - ], - "_prefab": { - "__id__": 50 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -8.965, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 45 - }, - "_enabled": true, - "__prefab": { - "__id__": 47 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7b9M+THNlDTaqQGsiLKEEh" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 45 - }, - "_enabled": true, - "__prefab": { - "__id__": 49 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4ahRCnXYNP+49Y0cMTeOKb" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "abhOklX+ZBXKyPrgHVNLJs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "6", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 20 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 52 - }, - { - "__id__": 54 - } - ], - "_prefab": { - "__id__": 56 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": 7.656, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 51 - }, - "_enabled": true, - "__prefab": { - "__id__": 53 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e2TJIwk4JNxaWqt8GCj63E" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 51 - }, - "_enabled": true, - "__prefab": { - "__id__": 55 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "878kYC1dxIX7g/Ed4U8sq0" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b7G1dbavBCbpliqnbRTYqP", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 20 - }, - "_enabled": true, - "__prefab": { - "__id__": 58 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 30, - "height": 30 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "156zvtWyZL7JeSq/l8Wq5O" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 20 - }, - "_enabled": true, - "__prefab": { - "__id__": 60 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": null, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bjPXp87JGu52dDySu74sO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2dGu24EexKI57EzgA2ECVa", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "top", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 63 - }, - { - "__id__": 77 - }, - { - "__id__": 91 - }, - { - "__id__": 105 - } - ], - "_active": true, - "_components": [ - { - "__id__": 109 - } - ], - "_prefab": { - "__id__": 111 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 66.342, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "shield", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 62 - }, - "_children": [ - { - "__id__": 64 - } - ], - "_active": true, - "_components": [ - { - "__id__": 70 - }, - { - "__id__": 72 - }, - { - "__id__": 74 - } - ], - "_prefab": { - "__id__": 76 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 11.501, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 63 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 65 - }, - { - "__id__": 67 - } - ], - "_prefab": { - "__id__": 69 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 64 - }, - "_enabled": true, - "__prefab": { - "__id__": 66 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "37VKkhAo1NW5I/hwNMZ2TD" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 64 - }, - "_enabled": true, - "__prefab": { - "__id__": 68 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@57d74", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1ecoWFh1ZNiJ8snvs3Dqpz" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b7vf/qGSRLs4EAYYY7xkgX", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 63 - }, - "_enabled": true, - "__prefab": { - "__id__": 71 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3dpLcxNYVIqblUaIEzyKBE" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 63 - }, - "_enabled": true, - "__prefab": { - "__id__": 73 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@91cea", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4do72mnLdN/LVB9EDJgWNG" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 63 - }, - "_enabled": true, - "__prefab": { - "__id__": 75 - }, - "_barSprite": { - "__id__": 67 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c88oLvSNtGZLTI2u88ynFO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "04QjAFwEtKUbHzDqfVvtB4", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "power", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 62 - }, - "_children": [ - { - "__id__": 78 - } - ], - "_active": true, - "_components": [ - { - "__id__": 84 - }, - { - "__id__": 86 - }, - { - "__id__": 88 - } - ], - "_prefab": { - "__id__": 90 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 4.35, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 77 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 79 - }, - { - "__id__": 81 - } - ], - "_prefab": { - "__id__": 83 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 78 - }, - "_enabled": true, - "__prefab": { - "__id__": 80 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ffO/EK+MVO/refP/i4H552" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 78 - }, - "_enabled": true, - "__prefab": { - "__id__": 82 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@44c8a", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3cN8OqI85OObuIERmloAxs" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c0a69QsZVIKI/smeEPDlRk", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 77 - }, - "_enabled": true, - "__prefab": { - "__id__": 85 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3eDJn+AGRIXZlLbC2wCbCP" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 77 - }, - "_enabled": true, - "__prefab": { - "__id__": 87 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@0e130", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "20zvyeQb1GPIT/fSROMfgY" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 77 - }, - "_enabled": true, - "__prefab": { - "__id__": 89 - }, - "_barSprite": { - "__id__": 81 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "29PVxg5VtCcYaz/SX/42EN" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "574/jjC09HJInQxO9ox6KF", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "hp", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 62 - }, - "_children": [ - { - "__id__": 92 - } - ], - "_active": true, - "_components": [ - { - "__id__": 98 - }, - { - "__id__": 100 - }, - { - "__id__": 102 - } - ], - "_prefab": { - "__id__": 104 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 8.374, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 91 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 93 - }, - { - "__id__": 95 - } - ], - "_prefab": { - "__id__": 97 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 92 - }, - "_enabled": true, - "__prefab": { - "__id__": 94 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "57fSk945tGr6gID+tCF1ou" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 92 - }, - "_enabled": true, - "__prefab": { - "__id__": 96 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@dfad9", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5eQCb+CkhGv6g7hlKvhBK/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "82+OeE9l9KopLL5y215mY9", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 91 - }, - "_enabled": true, - "__prefab": { - "__id__": 99 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8254OCTbFE6Yf41WtIj+Ju" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 91 - }, - "_enabled": true, - "__prefab": { - "__id__": 101 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@cf09c", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "08AKwHFwJJ8rCl9uer22Bs" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 91 - }, - "_enabled": true, - "__prefab": { - "__id__": 103 - }, - "_barSprite": { - "__id__": 95 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8e3fSjCTFJ67pn4k75Pf/J" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "caCX/MMLxKXIRfzO7Z5c+J", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "info", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 62 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 106 - } - ], - "_prefab": { - "__id__": 108 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -22.293000000000006, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1.0000000000000002, - "y": 1.0000000000000002, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 105 - }, - "_enabled": true, - "__prefab": { - "__id__": 107 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "19M76eOrFOkqQ/PlIDtR0U" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2ajm4daoxFyItsv+TzrcwT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 62 - }, - "_enabled": true, - "__prefab": { - "__id__": 110 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3fAMT0jZJCBazWyEUOA2MD" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "89GqguAyVPn5xaLKPHWBFV", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 113 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 80 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 115 - }, - "enabledContactListener": true, - "bullet": true, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d8rVs6intBQ7lRU8Dw4zXV" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 117 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": false, - "_friction": 1, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 31.7 - }, - "_size": { - "__type__": "cc.Size", - "width": 30.3, - "height": 50.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b2Dt9lJI9FyJCDezkDBPBl" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 119 - }, - "hitFlashMaterial": { - "__uuid__": "a8f34051-ccff-4050-b9d9-234f62977264", - "__expectedType__": "cc.Material" - }, - "BoxRang": { - "__id__": 2 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f16iR7ukNNp7M+8e3ngNkB" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 121 - }, - "animator": { - "__id__": 17 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c4piFUGdxNBZKfPPvDwWFV" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/arc2.prefab.meta b/assets/resources/game/hero/arc2.prefab.meta deleted file mode 100644 index 044de91d..00000000 --- a/assets/resources/game/hero/arc2.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "fbeb2080-b668-4c5a-9c16-432bfb908b26", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "arc2" - } -} diff --git a/assets/resources/game/hero/arc3.prefab b/assets/resources/game/hero/arc3.prefab deleted file mode 100644 index fa80d432..00000000 --- a/assets/resources/game/hero/arc3.prefab +++ /dev/null @@ -1,2758 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "arc3", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "arc3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 12 - }, - { - "__id__": 16 - }, - { - "__id__": 24 - }, - { - "__id__": 66 - } - ], - "_active": true, - "_components": [ - { - "__id__": 116 - }, - { - "__id__": 118 - }, - { - "__id__": 120 - }, - { - "__id__": 122 - }, - { - "__id__": 124 - } - ], - "_prefab": { - "__id__": 126 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "range_box", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - } - ], - "_prefab": { - "__id__": 11 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 50, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 20, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a7v65R9FlK35rDSodMKBaf" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "enabledContactListener": true, - "bullet": true, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 0, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1dGvLlJTxIyqWs7tv5eOjk" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "tag": 4, - "_group": 4, - "_density": 0, - "_sensor": false, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 250, - "y": 0 - }, - "_size": { - "__type__": "cc.Size", - "width": 500, - "height": 150 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c1dqgNlJdOJJzLITAnZIRf" - }, - { - "__type__": "4d46f6aanNOIZlLrgDp9iTQ", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "217WJhB4pODqCptCB1/x2M" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "efBGnhxpVAs6aCGcg6inWm", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "buff_icons", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 13 - } - ], - "_prefab": { - "__id__": 15 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 12 - }, - "_enabled": true, - "__prefab": { - "__id__": 14 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4Dy2iOhdGNIRklJZWrCG/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "63odueI6BBfZ9G4QIJALMy", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 21 - } - ], - "_prefab": { - "__id__": 23 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -3.936, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 18 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 64 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 20 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f45f8571-9328-4085-b3e8-946b13e74042@0b063", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 2, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b8HXPqPhZMN71qxUdeHMKv" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 22 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "73d9b6a5-a78c-46d8-926a-ed0cf951546d", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "cf0f6537-e4e4-4f9f-b549-1bd9ee66b30e", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "eb78c6bd-0c6b-4f81-a509-7fd21701ffa8", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "2f70e36b-733e-4974-a1cf-7a6e0774a549", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cc+VbiPudF9b+0zbBwUuPW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "level", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 25 - }, - { - "__id__": 31 - }, - { - "__id__": 37 - }, - { - "__id__": 43 - }, - { - "__id__": 49 - }, - { - "__id__": 55 - } - ], - "_active": true, - "_components": [ - { - "__id__": 61 - }, - { - "__id__": 63 - } - ], - "_prefab": { - "__id__": 65 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -22.542, - "y": 74.394, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.6, - "y": 0.6, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 26 - }, - { - "__id__": 28 - } - ], - "_prefab": { - "__id__": 30 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 100.197, - "y": -77.265, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 25 - }, - "_enabled": true, - "__prefab": { - "__id__": 27 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cfZFaZgxNFo6RAbvR4Rmfc" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 25 - }, - "_enabled": true, - "__prefab": { - "__id__": 29 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e6uKIl33xHs5LfNDT0p+2p" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a7PGybi3lGW6rZ+VnLGFt6", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 32 - }, - { - "__id__": 34 - } - ], - "_prefab": { - "__id__": 36 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -61.16, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 33 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d1lOxIXgdCJ6zpNNZGK8zg" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 35 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e85QoknbNBfpqTQHj53qa7" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "besG/N2EFDa7lwWiyvx8Nl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 38 - }, - { - "__id__": 40 - } - ], - "_prefab": { - "__id__": 42 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -43.555, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 37 - }, - "_enabled": true, - "__prefab": { - "__id__": 39 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "522G27EDRAqaOJNSy1XjqA" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 37 - }, - "_enabled": true, - "__prefab": { - "__id__": 41 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49HA7zbFRI77U6X4ltATKG" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "42gqlfWSRM46ibYgoOOPzt", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 44 - }, - { - "__id__": 46 - } - ], - "_prefab": { - "__id__": 48 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -27.047, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 43 - }, - "_enabled": true, - "__prefab": { - "__id__": 45 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "54B6UJW5NEdJ3RJ7tdZN/H" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 43 - }, - "_enabled": true, - "__prefab": { - "__id__": 47 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2adMQ5svRPv6C0hl03pcKW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "46MlNyXVlAd6iCQ2Xg1GOs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "5", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 50 - }, - { - "__id__": 52 - } - ], - "_prefab": { - "__id__": 54 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -8.965, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 49 - }, - "_enabled": true, - "__prefab": { - "__id__": 51 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7b9M+THNlDTaqQGsiLKEEh" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 49 - }, - "_enabled": true, - "__prefab": { - "__id__": 53 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4ahRCnXYNP+49Y0cMTeOKb" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "abhOklX+ZBXKyPrgHVNLJs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "6", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 56 - }, - { - "__id__": 58 - } - ], - "_prefab": { - "__id__": 60 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": 7.656, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 55 - }, - "_enabled": true, - "__prefab": { - "__id__": 57 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e2TJIwk4JNxaWqt8GCj63E" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 55 - }, - "_enabled": true, - "__prefab": { - "__id__": 59 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "878kYC1dxIX7g/Ed4U8sq0" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b7G1dbavBCbpliqnbRTYqP", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 62 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 30, - "height": 30 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "156zvtWyZL7JeSq/l8Wq5O" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 64 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": null, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bjPXp87JGu52dDySu74sO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2dGu24EexKI57EzgA2ECVa", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "top", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 67 - }, - { - "__id__": 81 - }, - { - "__id__": 95 - }, - { - "__id__": 109 - } - ], - "_active": true, - "_components": [ - { - "__id__": 113 - } - ], - "_prefab": { - "__id__": 115 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 62.403, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "shield", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 68 - } - ], - "_active": true, - "_components": [ - { - "__id__": 74 - }, - { - "__id__": 76 - }, - { - "__id__": 78 - } - ], - "_prefab": { - "__id__": 80 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 11.501, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 67 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 69 - }, - { - "__id__": 71 - } - ], - "_prefab": { - "__id__": 73 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -20, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 68 - }, - "_enabled": true, - "__prefab": { - "__id__": 70 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "45+deTVh5FD7+x4OzAAbwW" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 68 - }, - "_enabled": true, - "__prefab": { - "__id__": 72 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@57d74", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "65dcg9VZtO86usDDq7A020" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "814litD49EUrxOsZHd5jzM", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 75 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c3sYe84zRIO57FiyOAtLIS" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 77 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@91cea", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4eAV1g4CFJGo+ISzp1dKPf" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 79 - }, - "_barSprite": { - "__id__": 71 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "bdQtF3IpBN9ICATBHDfBcj" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c9yhVvzHhDJpoXFl81I2Ad", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "power", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 82 - } - ], - "_active": true, - "_components": [ - { - "__id__": 88 - }, - { - "__id__": 90 - }, - { - "__id__": 92 - } - ], - "_prefab": { - "__id__": 94 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 4.35, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 81 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 83 - }, - { - "__id__": 85 - } - ], - "_prefab": { - "__id__": 87 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 82 - }, - "_enabled": true, - "__prefab": { - "__id__": 84 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "46Ob78p0lF0Z0A5sakUN7K" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 82 - }, - "_enabled": true, - "__prefab": { - "__id__": 86 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@44c8a", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d8ogTQlV1Gb6cNqVyLFrt+" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "278BYqT/hP+IaGmHmfwm5n", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 89 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6bj387kOZEeLZz6k3R7D66" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 91 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@0e130", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "884LzGkO1EHYwoG8zlrbPy" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 93 - }, - "_barSprite": { - "__id__": 85 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c6lI3W0UJNd4RmH55lJtMs" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a1+6fG8uZOMp9msavCeoz7", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "hp", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 96 - } - ], - "_active": true, - "_components": [ - { - "__id__": 102 - }, - { - "__id__": 104 - }, - { - "__id__": 106 - } - ], - "_prefab": { - "__id__": 108 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 8.374, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 95 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 97 - }, - { - "__id__": 99 - } - ], - "_prefab": { - "__id__": 101 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 98 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "25dzFWD2lGUrFKj4TNjMo9" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 100 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@dfad9", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2aO4ypdmhLsIgPMYqWXVfI" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "92zMRYxYFIrqho0SqL5YaS", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 103 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "96LjIs5XpPypww05OlROF5" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 105 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@cf09c", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d6mHTL855J9bzLMv4q3kG7" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 107 - }, - "_barSprite": { - "__id__": 99 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2d/Nru2sRBnbgvmiMLtqAN" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "9e8nzdce9OzK2ddYjIU2xv", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "info", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 110 - } - ], - "_prefab": { - "__id__": 112 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -22.293000000000006, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1.0000000000000002, - "y": 1.0000000000000002, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 109 - }, - "_enabled": true, - "__prefab": { - "__id__": 111 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "28uyG9oO9Dab/R8abPq0J/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "54IV/75fVIFIQ2Kfx4abNM", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 66 - }, - "_enabled": true, - "__prefab": { - "__id__": 114 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4diScsTRVCPIHMW/NhBge/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fa0GO2GNVK2rzT0/qyUyu9", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 117 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 80 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 119 - }, - "enabledContactListener": true, - "bullet": true, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d8rVs6intBQ7lRU8Dw4zXV" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 121 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": false, - "_friction": 1, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 32.7 - }, - "_size": { - "__type__": "cc.Size", - "width": 33.3, - "height": 53.7 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b2Dt9lJI9FyJCDezkDBPBl" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 123 - }, - "animator": { - "__id__": 21 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "08EdsoHwtAiqB38UOv0gHl" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 125 - }, - "hitFlashMaterial": { - "__uuid__": "a8f34051-ccff-4050-b9d9-234f62977264", - "__expectedType__": "cc.Material" - }, - "BoxRang": { - "__id__": 2 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f9mbZRGhNAt4DrgIv+8zra" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/arc3.prefab.meta b/assets/resources/game/hero/arc3.prefab.meta deleted file mode 100644 index 16f2134d..00000000 --- a/assets/resources/game/hero/arc3.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "a401d4c8-5f8b-483f-b313-450b44d72dd7", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "arc3" - } -} diff --git a/assets/resources/game/hero/archer/a1.meta b/assets/resources/game/hero/archer/a1.meta deleted file mode 100644 index 14f95022..00000000 --- a/assets/resources/game/hero/archer/a1.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"f8357105-3883-4ac8-bc7b-c64f4e5975fe","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/archer/a1/a1.plist b/assets/resources/game/hero/archer/a1/a1.plist deleted file mode 100644 index a4be7df9..00000000 --- a/assets/resources/game/hero/archer/a1/a1.plist +++ /dev/null @@ -1,971 +0,0 @@ - - - - - frames - - Idle Blinking_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,0},{80,64}} - textureRotated - - - Idle Blinking_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,0},{80,64}} - textureRotated - - - Idle Blinking_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,64},{80,64}} - textureRotated - - - Idle Blinking_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,64},{80,64}} - textureRotated - - - Idle Blinking_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,128},{80,64}} - textureRotated - - - Idle Blinking_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,128},{80,64}} - textureRotated - - - Idle Blinking_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,192},{80,64}} - textureRotated - - - Idle Blinking_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,192},{80,64}} - textureRotated - - - Idle Blinking_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,256},{80,64}} - textureRotated - - - Idle Blinking_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,256},{80,64}} - textureRotated - - - Idle Blinking_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,320},{80,64}} - textureRotated - - - Idle Blinking_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,320},{80,64}} - textureRotated - - - Shooting_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,384},{80,64}} - textureRotated - - - Shooting_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,384},{80,64}} - textureRotated - - - Shooting_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,448},{80,64}} - textureRotated - - - Shooting_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,448},{80,64}} - textureRotated - - - Shooting_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,512},{80,64}} - textureRotated - - - Shooting_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,512},{80,64}} - textureRotated - - - Shooting_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,576},{80,64}} - textureRotated - - - Shooting_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,576},{80,64}} - textureRotated - - - Shooting_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,640},{80,64}} - textureRotated - - - Shooting_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,640},{80,64}} - textureRotated - - - Shooting_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,704},{80,64}} - textureRotated - - - Shooting_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,704},{80,64}} - textureRotated - - - Shooting_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,768},{80,64}} - textureRotated - - - Shooting_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,768},{80,64}} - textureRotated - - - Shooting_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,832},{80,64}} - textureRotated - - - Taunt_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,0},{80,64}} - textureRotated - - - Taunt_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,832},{80,64}} - textureRotated - - - Taunt_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,896},{80,64}} - textureRotated - - - Taunt_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,896},{80,64}} - textureRotated - - - Taunt_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,960},{80,64}} - textureRotated - - - Taunt_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,960},{80,64}} - textureRotated - - - Taunt_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1024},{80,64}} - textureRotated - - - Taunt_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1024},{80,64}} - textureRotated - - - Taunt_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1088},{80,64}} - textureRotated - - - Taunt_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1088},{80,64}} - textureRotated - - - Taunt_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1152},{80,64}} - textureRotated - - - Taunt_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1152},{80,64}} - textureRotated - - - Taunt_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1216},{80,64}} - textureRotated - - - Taunt_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1216},{80,64}} - textureRotated - - - Taunt_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1280},{80,64}} - textureRotated - - - Taunt_015.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1280},{80,64}} - textureRotated - - - Taunt_016.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1344},{80,64}} - textureRotated - - - Taunt_017.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1344},{80,64}} - textureRotated - - - Walking_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1408},{80,64}} - textureRotated - - - Walking_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1408},{80,64}} - textureRotated - - - Walking_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1472},{80,64}} - textureRotated - - - Walking_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1472},{80,64}} - textureRotated - - - Walking_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1536},{80,64}} - textureRotated - - - Walking_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1536},{80,64}} - textureRotated - - - Walking_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1600},{80,64}} - textureRotated - - - Walking_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1600},{80,64}} - textureRotated - - - Walking_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1664},{80,64}} - textureRotated - - - Walking_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1664},{80,64}} - textureRotated - - - Walking_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1728},{80,64}} - textureRotated - - - Walking_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1728},{80,64}} - textureRotated - - - Walking_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1792},{80,64}} - textureRotated - - - Walking_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1792},{80,64}} - textureRotated - - - Walking_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1856},{80,64}} - textureRotated - - - Walking_015.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1856},{80,64}} - textureRotated - - - Walking_016.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1920},{80,64}} - textureRotated - - - Walking_017.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1920},{80,64}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - a1.png - size - {160,1984} - smartupdate - $TexturePacker:SmartUpdate:c4d55f46f9ff5761358886fbb8c554a4:31e66b180b6ef3a9afe1b33d9d4679fe:8f441eea617a1901ef1a8c6f9792dad3$ - textureFileName - a1.png - - - diff --git a/assets/resources/game/hero/archer/a1/a1.plist.meta b/assets/resources/game/hero/archer/a1/a1.plist.meta deleted file mode 100644 index a2486fea..00000000 --- a/assets/resources/game/hero/archer/a1/a1.plist.meta +++ /dev/null @@ -1,2915 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7", - "files": [ - ".json" - ], - "subMetas": { - "26428": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@26428", - "displayName": "", - "id": "26428", - "name": "Taunt_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 832, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "43232": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@43232", - "displayName": "", - "id": "43232", - "name": "Shooting_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 704, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50949": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@50949", - "displayName": "", - "id": "50949", - "name": "Taunt_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1088, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "55628": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@55628", - "displayName": "", - "id": "55628", - "name": "Idle Blinking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 0, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60134": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@60134", - "displayName": "", - "id": "60134", - "name": "Walking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1664, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60799": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@60799", - "displayName": "", - "id": "60799", - "name": "Taunt_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "61856": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@61856", - "displayName": "", - "id": "61856", - "name": "Shooting_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 448, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d58e": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@5d58e", - "displayName": "", - "id": "5d58e", - "name": "Idle Blinking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ffb7f": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@ffb7f", - "displayName": "", - "id": "ffb7f", - "name": "Idle Blinking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 64, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4b666": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@4b666", - "displayName": "", - "id": "4b666", - "name": "Idle Blinking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 64, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4dcb3": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@4dcb3", - "displayName": "", - "id": "4dcb3", - "name": "Idle Blinking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 128, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51cbc": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@51cbc", - "displayName": "", - "id": "51cbc", - "name": "Idle Blinking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 128, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "11bc6": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@11bc6", - "displayName": "", - "id": "11bc6", - "name": "Idle Blinking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 192, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b2558": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@b2558", - "displayName": "", - "id": "b2558", - "name": "Idle Blinking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 192, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6d4a": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@d6d4a", - "displayName": "", - "id": "d6d4a", - "name": "Idle Blinking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 256, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1b51c": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@1b51c", - "displayName": "", - "id": "1b51c", - "name": "Idle Blinking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 256, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d437a": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@d437a", - "displayName": "", - "id": "d437a", - "name": "Idle Blinking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 320, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd5d5": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@cd5d5", - "displayName": "", - "id": "cd5d5", - "name": "Idle Blinking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 320, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "63dea": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@63dea", - "displayName": "", - "id": "63dea", - "name": "Shooting_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 384, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "30e08": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@30e08", - "displayName": "", - "id": "30e08", - "name": "Shooting_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 384, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fd087": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@fd087", - "displayName": "", - "id": "fd087", - "name": "Shooting_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 448, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "46ba2": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@46ba2", - "displayName": "", - "id": "46ba2", - "name": "Shooting_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 512, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a2ace": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@a2ace", - "displayName": "", - "id": "a2ace", - "name": "Shooting_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 512, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2ba33": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@2ba33", - "displayName": "", - "id": "2ba33", - "name": "Shooting_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 576, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b4fb4": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@b4fb4", - "displayName": "", - "id": "b4fb4", - "name": "Shooting_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 576, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "265e4": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@265e4", - "displayName": "", - "id": "265e4", - "name": "Shooting_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 640, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "424af": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@424af", - "displayName": "", - "id": "424af", - "name": "Shooting_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 640, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4068": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@c4068", - "displayName": "", - "id": "c4068", - "name": "Shooting_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 704, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3c056": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@3c056", - "displayName": "", - "id": "3c056", - "name": "Shooting_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 768, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fc0d1": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@fc0d1", - "displayName": "", - "id": "fc0d1", - "name": "Shooting_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 768, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "462a6": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@462a6", - "displayName": "", - "id": "462a6", - "name": "Shooting_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 832, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "daa98": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@daa98", - "displayName": "", - "id": "daa98", - "name": "Taunt_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 896, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0779a": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@0779a", - "displayName": "", - "id": "0779a", - "name": "Taunt_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 896, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5eb28": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@5eb28", - "displayName": "", - "id": "5eb28", - "name": "Taunt_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 960, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a538": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@1a538", - "displayName": "", - "id": "1a538", - "name": "Taunt_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 960, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe61e": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@fe61e", - "displayName": "", - "id": "fe61e", - "name": "Taunt_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1024, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1415": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@d1415", - "displayName": "", - "id": "d1415", - "name": "Taunt_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1024, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6823d": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@6823d", - "displayName": "", - "id": "6823d", - "name": "Taunt_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1088, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e496c": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@e496c", - "displayName": "", - "id": "e496c", - "name": "Taunt_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1152, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "648f3": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@648f3", - "displayName": "", - "id": "648f3", - "name": "Taunt_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1152, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e4e1": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@9e4e1", - "displayName": "", - "id": "9e4e1", - "name": "Taunt_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1216, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f27c8": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@f27c8", - "displayName": "", - "id": "f27c8", - "name": "Taunt_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1216, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fce75": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@fce75", - "displayName": "", - "id": "fce75", - "name": "Taunt_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1280, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a12c4": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@a12c4", - "displayName": "", - "id": "a12c4", - "name": "Taunt_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1280, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "956e1": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@956e1", - "displayName": "", - "id": "956e1", - "name": "Taunt_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1344, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d0912": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@d0912", - "displayName": "", - "id": "d0912", - "name": "Taunt_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1344, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02dd6": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@02dd6", - "displayName": "", - "id": "02dd6", - "name": "Walking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1408, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d9c8": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@6d9c8", - "displayName": "", - "id": "6d9c8", - "name": "Walking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1408, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "418cb": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@418cb", - "displayName": "", - "id": "418cb", - "name": "Walking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1472, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f6da": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@4f6da", - "displayName": "", - "id": "4f6da", - "name": "Walking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1472, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dabad": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@dabad", - "displayName": "", - "id": "dabad", - "name": "Walking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1536, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69e31": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@69e31", - "displayName": "", - "id": "69e31", - "name": "Walking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1536, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7990": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@b7990", - "displayName": "", - "id": "b7990", - "name": "Walking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1600, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f6bf0": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@f6bf0", - "displayName": "", - "id": "f6bf0", - "name": "Walking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1600, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6698a": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@6698a", - "displayName": "", - "id": "6698a", - "name": "Walking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1664, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8564d": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@8564d", - "displayName": "", - "id": "8564d", - "name": "Walking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1728, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "272a0": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@272a0", - "displayName": "", - "id": "272a0", - "name": "Walking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1728, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba3ee": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@ba3ee", - "displayName": "", - "id": "ba3ee", - "name": "Walking_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1792, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff098": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@ff098", - "displayName": "", - "id": "ff098", - "name": "Walking_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1792, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07703": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@07703", - "displayName": "", - "id": "07703", - "name": "Walking_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1856, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14ae6": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@14ae6", - "displayName": "", - "id": "14ae6", - "name": "Walking_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1856, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79ab7": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@79ab7", - "displayName": "", - "id": "79ab7", - "name": "Walking_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1920, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d708": { - "importer": "sprite-frame", - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7@5d708", - "displayName": "", - "id": "5d708", - "name": "Walking_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1920, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "atlasUuid": "336e2629-6282-4bbe-9913-d5f984acb3d7" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "a1.png", - "format": 3, - "uuid": "336e2629-6282-4bbe-9913-d5f984acb3d7", - "textureUuid": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a" - } -} diff --git a/assets/resources/game/hero/archer/a1/a1.png b/assets/resources/game/hero/archer/a1/a1.png deleted file mode 100644 index acc2c9a1..00000000 Binary files a/assets/resources/game/hero/archer/a1/a1.png and /dev/null differ diff --git a/assets/resources/game/hero/archer/a1/a1.png.meta b/assets/resources/game/hero/archer/a1/a1.png.meta deleted file mode 100644 index 4f6a1fc0..00000000 --- a/assets/resources/game/hero/archer/a1/a1.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "478b530f-2351-4802-b573-cfc9bd5dc147", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a", - "displayName": "a1", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "478b530f-2351-4802-b573-cfc9bd5dc147", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "478b530f-2351-4802-b573-cfc9bd5dc147@6c48a" - } -} diff --git a/assets/resources/game/hero/archer/a1/atk.anim b/assets/resources/game/hero/archer/a1/atk.anim deleted file mode 100644 index bb5a3734..00000000 --- a/assets/resources/game/hero/archer/a1/atk.anim +++ /dev/null @@ -1,148 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.625, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333, - 0.5, - 0.5416666666666666, - 0.5833333333333334 - ], - "_values": [ - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@63dea", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@30e08", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@fd087", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@61856", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@46ba2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@a2ace", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@2ba33", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@b4fb4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@265e4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@424af", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@c4068", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@43232", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@3c056", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@fc0d1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@462a6", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a1/idle.anim b/assets/resources/game/hero/archer/a1/idle.anim deleted file mode 100644 index a249c435..00000000 --- a/assets/resources/game/hero/archer/a1/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 2, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@5d58e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@55628", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@ffb7f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@4b666", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@4dcb3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@51cbc", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@11bc6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@b2558", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@d6d4a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@1b51c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@d437a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@cd5d5", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a1/idle.anim.meta b/assets/resources/game/hero/archer/a1/idle.anim.meta deleted file mode 100644 index 8732b73b..00000000 --- a/assets/resources/game/hero/archer/a1/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"ad21011b-11c1-43ba-9ee7-f07ef2ecb18c","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/archer/a1/max.anim b/assets/resources/game/hero/archer/a1/max.anim deleted file mode 100644 index 7f63af19..00000000 --- a/assets/resources/game/hero/archer/a1/max.anim +++ /dev/null @@ -1,163 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.75, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333, - 0.5, - 0.5416666666666666, - 0.5833333333333334, - 0.625, - 0.6666666666666666, - 0.7083333333333334 - ], - "_values": [ - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@60799", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@26428", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@daa98", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@0779a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@5eb28", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@1a538", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@fe61e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@d1415", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@6823d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@50949", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@e496c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@648f3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@9e4e1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@f27c8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@fce75", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@a12c4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@956e1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@d0912", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a1/max.anim.meta b/assets/resources/game/hero/archer/a1/max.anim.meta deleted file mode 100644 index e0693206..00000000 --- a/assets/resources/game/hero/archer/a1/max.anim.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "2.0.3", - "importer": "animation-clip", - "imported": true, - "uuid": "8251b9e4-9ab0-4914-a0e1-21a5950f4a16", - "files": [ - ".cconb" - ], - "subMetas": {}, - "userData": { - "name": "max" - } -} diff --git a/assets/resources/game/hero/archer/a1/move.anim b/assets/resources/game/hero/archer/a1/move.anim deleted file mode 100644 index e380759b..00000000 --- a/assets/resources/game/hero/archer/a1/move.anim +++ /dev/null @@ -1,163 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.75, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333, - 0.5, - 0.5416666666666666, - 0.5833333333333334, - 0.625, - 0.6666666666666666, - 0.7083333333333334 - ], - "_values": [ - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@02dd6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@6d9c8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@418cb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@4f6da", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@dabad", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@69e31", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@b7990", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@f6bf0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@6698a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@60134", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@8564d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@272a0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@ba3ee", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@ff098", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@07703", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@14ae6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@79ab7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "336e2629-6282-4bbe-9913-d5f984acb3d7@5d708", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a1/move.anim.meta b/assets/resources/game/hero/archer/a1/move.anim.meta deleted file mode 100644 index 3612dc71..00000000 --- a/assets/resources/game/hero/archer/a1/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"e7abf2f7-685d-4684-adb9-da909f7133fd","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/archer/a2.meta b/assets/resources/game/hero/archer/a2.meta deleted file mode 100644 index 4a98820e..00000000 --- a/assets/resources/game/hero/archer/a2.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"ee52080f-6423-408f-bacb-2fb536c04d06","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/archer/a2/a2.plist b/assets/resources/game/hero/archer/a2/a2.plist deleted file mode 100644 index 8a7c7f23..00000000 --- a/assets/resources/game/hero/archer/a2/a2.plist +++ /dev/null @@ -1,971 +0,0 @@ - - - - - frames - - Idle_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,0},{80,64}} - textureRotated - - - Idle_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,0},{80,64}} - textureRotated - - - Idle_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,64},{80,64}} - textureRotated - - - Idle_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,64},{80,64}} - textureRotated - - - Idle_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,128},{80,64}} - textureRotated - - - Idle_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,128},{80,64}} - textureRotated - - - Idle_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,192},{80,64}} - textureRotated - - - Idle_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,192},{80,64}} - textureRotated - - - Idle_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,256},{80,64}} - textureRotated - - - Idle_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,256},{80,64}} - textureRotated - - - Idle_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,320},{80,64}} - textureRotated - - - Idle_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,320},{80,64}} - textureRotated - - - Shooting_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,384},{80,64}} - textureRotated - - - Shooting_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,384},{80,64}} - textureRotated - - - Shooting_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,448},{80,64}} - textureRotated - - - Shooting_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,448},{80,64}} - textureRotated - - - Shooting_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,512},{80,64}} - textureRotated - - - Shooting_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,512},{80,64}} - textureRotated - - - Shooting_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,576},{80,64}} - textureRotated - - - Shooting_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,576},{80,64}} - textureRotated - - - Shooting_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,640},{80,64}} - textureRotated - - - Shooting_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,640},{80,64}} - textureRotated - - - Shooting_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,704},{80,64}} - textureRotated - - - Shooting_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,704},{80,64}} - textureRotated - - - Shooting_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,768},{80,64}} - textureRotated - - - Shooting_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,768},{80,64}} - textureRotated - - - Shooting_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,832},{80,64}} - textureRotated - - - Taunt_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,0},{80,64}} - textureRotated - - - Taunt_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,832},{80,64}} - textureRotated - - - Taunt_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,896},{80,64}} - textureRotated - - - Taunt_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,896},{80,64}} - textureRotated - - - Taunt_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,960},{80,64}} - textureRotated - - - Taunt_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,960},{80,64}} - textureRotated - - - Taunt_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1024},{80,64}} - textureRotated - - - Taunt_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1024},{80,64}} - textureRotated - - - Taunt_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1088},{80,64}} - textureRotated - - - Taunt_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1088},{80,64}} - textureRotated - - - Taunt_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1152},{80,64}} - textureRotated - - - Taunt_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1152},{80,64}} - textureRotated - - - Taunt_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1216},{80,64}} - textureRotated - - - Taunt_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1216},{80,64}} - textureRotated - - - Taunt_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1280},{80,64}} - textureRotated - - - Taunt_015.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1280},{80,64}} - textureRotated - - - Taunt_016.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1344},{80,64}} - textureRotated - - - Taunt_017.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1344},{80,64}} - textureRotated - - - Walking_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1408},{80,64}} - textureRotated - - - Walking_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1408},{80,64}} - textureRotated - - - Walking_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1472},{80,64}} - textureRotated - - - Walking_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1472},{80,64}} - textureRotated - - - Walking_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1536},{80,64}} - textureRotated - - - Walking_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1536},{80,64}} - textureRotated - - - Walking_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1600},{80,64}} - textureRotated - - - Walking_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1600},{80,64}} - textureRotated - - - Walking_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1664},{80,64}} - textureRotated - - - Walking_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1664},{80,64}} - textureRotated - - - Walking_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1728},{80,64}} - textureRotated - - - Walking_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1728},{80,64}} - textureRotated - - - Walking_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1792},{80,64}} - textureRotated - - - Walking_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1792},{80,64}} - textureRotated - - - Walking_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1856},{80,64}} - textureRotated - - - Walking_015.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1856},{80,64}} - textureRotated - - - Walking_016.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{0,1920},{80,64}} - textureRotated - - - Walking_017.png - - aliases - - spriteOffset - {0,0} - spriteSize - {80,64} - spriteSourceSize - {80,64} - textureRect - {{80,1920},{80,64}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - a2.png - size - {160,1984} - smartupdate - $TexturePacker:SmartUpdate:53921b3b150977e946e6bbcb75af2b59:d530609ddcbdcb05baa087bee89be3dc:ad3455d2962931411bc6674078684934$ - textureFileName - a2.png - - - diff --git a/assets/resources/game/hero/archer/a2/a2.plist.meta b/assets/resources/game/hero/archer/a2/a2.plist.meta deleted file mode 100644 index ce912e3e..00000000 --- a/assets/resources/game/hero/archer/a2/a2.plist.meta +++ /dev/null @@ -1,2915 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193", - "files": [ - ".json" - ], - "subMetas": { - "26428": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@26428", - "displayName": "", - "id": "26428", - "name": "Taunt_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 832, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "43232": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@43232", - "displayName": "", - "id": "43232", - "name": "Shooting_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 704, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50949": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@50949", - "displayName": "", - "id": "50949", - "name": "Taunt_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1088, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60134": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@60134", - "displayName": "", - "id": "60134", - "name": "Walking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1664, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60799": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@60799", - "displayName": "", - "id": "60799", - "name": "Taunt_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "61856": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@61856", - "displayName": "", - "id": "61856", - "name": "Shooting_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 448, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0b063": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@0b063", - "displayName": "", - "id": "0b063", - "name": "Idle_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f98b1": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@f98b1", - "displayName": "", - "id": "f98b1", - "name": "Idle_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 0, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4ece0": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@4ece0", - "displayName": "", - "id": "4ece0", - "name": "Idle_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 64, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e3f09": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@e3f09", - "displayName": "", - "id": "e3f09", - "name": "Idle_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 64, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7085": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@b7085", - "displayName": "", - "id": "b7085", - "name": "Idle_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 128, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a0cbd": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@a0cbd", - "displayName": "", - "id": "a0cbd", - "name": "Idle_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 128, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4925e": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@4925e", - "displayName": "", - "id": "4925e", - "name": "Idle_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 192, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe16c": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@fe16c", - "displayName": "", - "id": "fe16c", - "name": "Idle_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 192, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "968f5": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@968f5", - "displayName": "", - "id": "968f5", - "name": "Idle_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 256, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eba27": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@eba27", - "displayName": "", - "id": "eba27", - "name": "Idle_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 256, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0ec63": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@0ec63", - "displayName": "", - "id": "0ec63", - "name": "Idle_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 320, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ec089": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@ec089", - "displayName": "", - "id": "ec089", - "name": "Idle_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 320, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "63dea": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@63dea", - "displayName": "", - "id": "63dea", - "name": "Shooting_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 384, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "30e08": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@30e08", - "displayName": "", - "id": "30e08", - "name": "Shooting_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 384, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fd087": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@fd087", - "displayName": "", - "id": "fd087", - "name": "Shooting_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 448, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "46ba2": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@46ba2", - "displayName": "", - "id": "46ba2", - "name": "Shooting_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 512, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a2ace": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@a2ace", - "displayName": "", - "id": "a2ace", - "name": "Shooting_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 512, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2ba33": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@2ba33", - "displayName": "", - "id": "2ba33", - "name": "Shooting_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 576, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b4fb4": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@b4fb4", - "displayName": "", - "id": "b4fb4", - "name": "Shooting_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 576, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "265e4": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@265e4", - "displayName": "", - "id": "265e4", - "name": "Shooting_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 640, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "424af": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@424af", - "displayName": "", - "id": "424af", - "name": "Shooting_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 640, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4068": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@c4068", - "displayName": "", - "id": "c4068", - "name": "Shooting_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 704, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3c056": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@3c056", - "displayName": "", - "id": "3c056", - "name": "Shooting_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 768, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fc0d1": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@fc0d1", - "displayName": "", - "id": "fc0d1", - "name": "Shooting_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 768, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "462a6": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@462a6", - "displayName": "", - "id": "462a6", - "name": "Shooting_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 832, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "daa98": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@daa98", - "displayName": "", - "id": "daa98", - "name": "Taunt_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 896, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0779a": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@0779a", - "displayName": "", - "id": "0779a", - "name": "Taunt_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 896, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5eb28": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@5eb28", - "displayName": "", - "id": "5eb28", - "name": "Taunt_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 960, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a538": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@1a538", - "displayName": "", - "id": "1a538", - "name": "Taunt_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 960, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe61e": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@fe61e", - "displayName": "", - "id": "fe61e", - "name": "Taunt_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1024, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1415": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@d1415", - "displayName": "", - "id": "d1415", - "name": "Taunt_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1024, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6823d": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@6823d", - "displayName": "", - "id": "6823d", - "name": "Taunt_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1088, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e496c": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@e496c", - "displayName": "", - "id": "e496c", - "name": "Taunt_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1152, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "648f3": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@648f3", - "displayName": "", - "id": "648f3", - "name": "Taunt_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1152, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e4e1": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@9e4e1", - "displayName": "", - "id": "9e4e1", - "name": "Taunt_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1216, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f27c8": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@f27c8", - "displayName": "", - "id": "f27c8", - "name": "Taunt_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1216, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fce75": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@fce75", - "displayName": "", - "id": "fce75", - "name": "Taunt_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1280, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a12c4": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@a12c4", - "displayName": "", - "id": "a12c4", - "name": "Taunt_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1280, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "956e1": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@956e1", - "displayName": "", - "id": "956e1", - "name": "Taunt_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1344, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d0912": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@d0912", - "displayName": "", - "id": "d0912", - "name": "Taunt_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1344, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02dd6": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@02dd6", - "displayName": "", - "id": "02dd6", - "name": "Walking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1408, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d9c8": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@6d9c8", - "displayName": "", - "id": "6d9c8", - "name": "Walking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1408, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "418cb": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@418cb", - "displayName": "", - "id": "418cb", - "name": "Walking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1472, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f6da": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@4f6da", - "displayName": "", - "id": "4f6da", - "name": "Walking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1472, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dabad": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@dabad", - "displayName": "", - "id": "dabad", - "name": "Walking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1536, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69e31": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@69e31", - "displayName": "", - "id": "69e31", - "name": "Walking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1536, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7990": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@b7990", - "displayName": "", - "id": "b7990", - "name": "Walking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1600, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f6bf0": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@f6bf0", - "displayName": "", - "id": "f6bf0", - "name": "Walking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1600, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6698a": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@6698a", - "displayName": "", - "id": "6698a", - "name": "Walking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1664, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8564d": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@8564d", - "displayName": "", - "id": "8564d", - "name": "Walking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1728, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "272a0": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@272a0", - "displayName": "", - "id": "272a0", - "name": "Walking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1728, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba3ee": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@ba3ee", - "displayName": "", - "id": "ba3ee", - "name": "Walking_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1792, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff098": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@ff098", - "displayName": "", - "id": "ff098", - "name": "Walking_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1792, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07703": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@07703", - "displayName": "", - "id": "07703", - "name": "Walking_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1856, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14ae6": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@14ae6", - "displayName": "", - "id": "14ae6", - "name": "Walking_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1856, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79ab7": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@79ab7", - "displayName": "", - "id": "79ab7", - "name": "Walking_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1920, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d708": { - "importer": "sprite-frame", - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@5d708", - "displayName": "", - "id": "5d708", - "name": "Walking_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 80, - "trimY": 1920, - "width": 80, - "height": 64, - "rawWidth": 80, - "rawHeight": 64, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "atlasUuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "a2.png", - "format": 3, - "uuid": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193", - "textureUuid": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a" - } -} diff --git a/assets/resources/game/hero/archer/a2/a2.png b/assets/resources/game/hero/archer/a2/a2.png deleted file mode 100644 index 51bc1b66..00000000 Binary files a/assets/resources/game/hero/archer/a2/a2.png and /dev/null differ diff --git a/assets/resources/game/hero/archer/a2/a2.png.meta b/assets/resources/game/hero/archer/a2/a2.png.meta deleted file mode 100644 index c54dc33f..00000000 --- a/assets/resources/game/hero/archer/a2/a2.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "5b75a8fc-836c-4a01-9498-7f09f4475aa7", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a", - "displayName": "a2", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "5b75a8fc-836c-4a01-9498-7f09f4475aa7", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "5b75a8fc-836c-4a01-9498-7f09f4475aa7@6c48a" - } -} diff --git a/assets/resources/game/hero/archer/a2/atk.anim b/assets/resources/game/hero/archer/a2/atk.anim deleted file mode 100644 index 40b67168..00000000 --- a/assets/resources/game/hero/archer/a2/atk.anim +++ /dev/null @@ -1,148 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.625, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333, - 0.5, - 0.5416666666666666, - 0.5833333333333334 - ], - "_values": [ - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@63dea", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@30e08", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@fd087", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@61856", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@46ba2", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@a2ace", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@2ba33", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@b4fb4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@265e4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@424af", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@c4068", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@43232", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@3c056", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@fc0d1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@462a6", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a2/atk.anim.meta b/assets/resources/game/hero/archer/a2/atk.anim.meta deleted file mode 100644 index 019977ef..00000000 --- a/assets/resources/game/hero/archer/a2/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"6ab1a49d-198d-4aa9-b300-77e18a479716","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/archer/a2/idle.anim b/assets/resources/game/hero/archer/a2/idle.anim deleted file mode 100644 index a57ab994..00000000 --- a/assets/resources/game/hero/archer/a2/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 2, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@0b063", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@f98b1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@4ece0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@e3f09", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@b7085", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@a0cbd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@4925e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@fe16c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@968f5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@eba27", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@0ec63", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@ec089", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a2/max.anim b/assets/resources/game/hero/archer/a2/max.anim deleted file mode 100644 index 715f058a..00000000 --- a/assets/resources/game/hero/archer/a2/max.anim +++ /dev/null @@ -1,163 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.75, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333, - 0.5, - 0.5416666666666666, - 0.5833333333333334, - 0.625, - 0.6666666666666666, - 0.7083333333333334 - ], - "_values": [ - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@60799", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@26428", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@daa98", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@0779a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@5eb28", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@1a538", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@fe61e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@d1415", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@6823d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@50949", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@e496c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@648f3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@9e4e1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@f27c8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@fce75", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@a12c4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@956e1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@d0912", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a2/max.anim.meta b/assets/resources/game/hero/archer/a2/max.anim.meta deleted file mode 100644 index 0342e950..00000000 --- a/assets/resources/game/hero/archer/a2/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"87733e60-95c0-483d-8150-9b26369179bd","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/archer/a2/move.anim b/assets/resources/game/hero/archer/a2/move.anim deleted file mode 100644 index cfc8b745..00000000 --- a/assets/resources/game/hero/archer/a2/move.anim +++ /dev/null @@ -1,163 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.75, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333, - 0.5, - 0.5416666666666666, - 0.5833333333333334, - 0.625, - 0.6666666666666666, - 0.7083333333333334 - ], - "_values": [ - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@02dd6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@6d9c8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@418cb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@4f6da", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@dabad", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@69e31", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@b7990", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@f6bf0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@6698a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@60134", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@8564d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@272a0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@ba3ee", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@ff098", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@07703", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@14ae6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@79ab7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "f4eeed12-f2f3-42f8-bf03-4f00f22cd193@5d708", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/archer/a4.meta b/assets/resources/game/hero/archer/a4.meta deleted file mode 100644 index 6ab2091e..00000000 --- a/assets/resources/game/hero/archer/a4.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"5d7d5a1d-858b-4ec5-a10c-c90121bb204a","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/archer/a4/a4.plist b/assets/resources/game/hero/archer/a4/a4.plist deleted file mode 100644 index fbd27e39..00000000 --- a/assets/resources/game/hero/archer/a4/a4.plist +++ /dev/null @@ -1,971 +0,0 @@ - - - - - frames - - Elf_01_Idle Blinking_000.png - - aliases - - spriteOffset - {-1,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1107,55},{44,52}} - textureRotated - - - Elf_01_Idle Blinking_001.png - - aliases - - spriteOffset - {-1,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1151,1},{44,52}} - textureRotated - - - Elf_01_Idle Blinking_002.png - - aliases - - spriteOffset - {-1,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1153,55},{44,52}} - textureRotated - - - Elf_01_Idle Blinking_003.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1197,1},{44,52}} - textureRotated - - - Elf_01_Idle Blinking_004.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1199,55},{44,52}} - textureRotated - - - Elf_01_Idle Blinking_005.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{389,1},{44,54}} - textureRotated - - - Elf_01_Idle Blinking_006.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{389,57},{44,54}} - textureRotated - - - Elf_01_Idle Blinking_007.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{435,1},{44,54}} - textureRotated - - - Elf_01_Idle Blinking_008.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{101,1},{46,54}} - textureRotated - - - Elf_01_Idle Blinking_009.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{435,57},{44,54}} - textureRotated - - - Elf_01_Idle Blinking_010.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1243,1},{44,52}} - textureRotated - - - Elf_01_Idle Blinking_011.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1245,55},{44,52}} - textureRotated - - - Elf_01_Shooting_000.png - - aliases - - spriteOffset - {-5,2} - spriteSize - {52,52} - spriteSourceSize - {104,84} - textureRect - {{895,57},{52,52}} - textureRotated - - - Elf_01_Shooting_001.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1289,1},{44,52}} - textureRotated - - - Elf_01_Shooting_002.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1291,55},{44,52}} - textureRotated - - - Elf_01_Shooting_003.png - - aliases - - spriteOffset - {1,2} - spriteSize - {52,52} - spriteSourceSize - {104,84} - textureRect - {{941,1},{52,52}} - textureRotated - - - Elf_01_Shooting_004.png - - aliases - - spriteOffset - {1,2} - spriteSize - {52,52} - spriteSourceSize - {104,84} - textureRect - {{949,55},{52,52}} - textureRotated - - - Elf_01_Shooting_005.png - - aliases - - spriteOffset - {1,2} - spriteSize - {50,52} - spriteSourceSize - {104,84} - textureRect - {{995,1},{50,52}} - textureRotated - - - Elf_01_Shooting_006.png - - aliases - - spriteOffset - {1,2} - spriteSize - {50,52} - spriteSourceSize - {104,84} - textureRect - {{1003,55},{50,52}} - textureRotated - - - Elf_01_Shooting_007.png - - aliases - - spriteOffset - {0,2} - spriteSize - {50,52} - spriteSourceSize - {104,84} - textureRect - {{1047,1},{50,52}} - textureRotated - - - Elf_01_Shooting_008.png - - aliases - - spriteOffset - {0,2} - spriteSize - {50,52} - spriteSourceSize - {104,84} - textureRect - {{1055,55},{50,52}} - textureRotated - - - Elf_01_Shooting_009.png - - aliases - - spriteOffset - {0,2} - spriteSize - {50,52} - spriteSourceSize - {104,84} - textureRect - {{1099,1},{50,52}} - textureRotated - - - Elf_01_Shooting_010.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1335,1},{44,52}} - textureRotated - - - Elf_01_Shooting_011.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1337,55},{44,52}} - textureRotated - - - Elf_01_Shooting_012.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1381,1},{44,52}} - textureRotated - - - Elf_01_Shooting_013.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1383,55},{44,52}} - textureRotated - - - Elf_01_Shooting_014.png - - aliases - - spriteOffset - {-2,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1427,1},{44,52}} - textureRotated - - - Elf_01_Taunt_000.png - - aliases - - spriteOffset - {-1,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1107,55},{44,52}} - textureRotated - - - Elf_01_Taunt_001.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{481,1},{44,54}} - textureRotated - - - Elf_01_Taunt_002.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{481,57},{44,54}} - textureRotated - - - Elf_01_Taunt_003.png - - aliases - - spriteOffset - {-5,3} - spriteSize - {48,54} - spriteSourceSize - {104,84} - textureRect - {{1,1},{48,54}} - textureRotated - - - Elf_01_Taunt_004.png - - aliases - - spriteOffset - {-5,3} - spriteSize - {48,54} - spriteSourceSize - {104,84} - textureRect - {{1,57},{48,54}} - textureRotated - - - Elf_01_Taunt_005.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{101,57},{46,54}} - textureRotated - - - Elf_01_Taunt_006.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{149,1},{46,54}} - textureRotated - - - Elf_01_Taunt_007.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{149,57},{46,54}} - textureRotated - - - Elf_01_Taunt_008.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{197,1},{46,54}} - textureRotated - - - Elf_01_Taunt_009.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{197,57},{46,54}} - textureRotated - - - Elf_01_Taunt_010.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{245,1},{46,54}} - textureRotated - - - Elf_01_Taunt_011.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{245,57},{46,54}} - textureRotated - - - Elf_01_Taunt_012.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{293,1},{46,54}} - textureRotated - - - Elf_01_Taunt_013.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{293,57},{46,54}} - textureRotated - - - Elf_01_Taunt_014.png - - aliases - - spriteOffset - {-5,3} - spriteSize - {48,54} - spriteSourceSize - {104,84} - textureRect - {{51,1},{48,54}} - textureRotated - - - Elf_01_Taunt_015.png - - aliases - - spriteOffset - {-5,3} - spriteSize - {48,54} - spriteSourceSize - {104,84} - textureRect - {{51,57},{48,54}} - textureRotated - - - Elf_01_Taunt_016.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{527,1},{44,54}} - textureRotated - - - Elf_01_Taunt_017.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{527,57},{44,54}} - textureRotated - - - Elf_01_Walking_000.png - - aliases - - spriteOffset - {0,2} - spriteSize - {44,52} - spriteSourceSize - {104,84} - textureRect - {{1429,55},{44,52}} - textureRotated - - - Elf_01_Walking_001.png - - aliases - - spriteOffset - {0,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{573,1},{44,54}} - textureRotated - - - Elf_01_Walking_002.png - - aliases - - spriteOffset - {0,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{573,57},{44,54}} - textureRotated - - - Elf_01_Walking_003.png - - aliases - - spriteOffset - {-1,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{619,1},{44,54}} - textureRotated - - - Elf_01_Walking_004.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{619,57},{44,54}} - textureRotated - - - Elf_01_Walking_005.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{665,1},{44,54}} - textureRotated - - - Elf_01_Walking_006.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{341,1},{46,54}} - textureRotated - - - Elf_01_Walking_007.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{665,57},{44,54}} - textureRotated - - - Elf_01_Walking_008.png - - aliases - - spriteOffset - {-1,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{711,1},{44,54}} - textureRotated - - - Elf_01_Walking_009.png - - aliases - - spriteOffset - {1,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{711,57},{44,54}} - textureRotated - - - Elf_01_Walking_010.png - - aliases - - spriteOffset - {1,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{757,1},{44,54}} - textureRotated - - - Elf_01_Walking_011.png - - aliases - - spriteOffset - {0,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{757,57},{44,54}} - textureRotated - - - Elf_01_Walking_012.png - - aliases - - spriteOffset - {-1,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{803,1},{44,54}} - textureRotated - - - Elf_01_Walking_013.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{803,57},{44,54}} - textureRotated - - - Elf_01_Walking_014.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{849,1},{44,54}} - textureRotated - - - Elf_01_Walking_015.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{341,57},{46,54}} - textureRotated - - - Elf_01_Walking_016.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{849,57},{44,54}} - textureRotated - - - Elf_01_Walking_017.png - - aliases - - spriteOffset - {-1,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{895,1},{44,54}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - a4.png - size - {1474,112} - smartupdate - $TexturePacker:SmartUpdate:d4a11d0b4128ebe2287ad3d5f592746a:392a88c6deddf04a371666dee9cefef4:116b68cad132247dc7108c685ee39046$ - textureFileName - a4.png - - - diff --git a/assets/resources/game/hero/archer/a4/a4.plist.meta b/assets/resources/game/hero/archer/a4/a4.plist.meta deleted file mode 100644 index a0c0478e..00000000 --- a/assets/resources/game/hero/archer/a4/a4.plist.meta +++ /dev/null @@ -1,2915 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5", - "files": [ - ".json" - ], - "subMetas": { - "23981": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@23981", - "displayName": "", - "id": "23981", - "name": "Elf_01_Idle Blinking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1243, - "trimY": 1, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "77284": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@77284", - "displayName": "", - "id": "77284", - "name": "Elf_01_Shooting_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 2, - "trimX": 949, - "trimY": 55, - "width": 52, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e0fdb": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@e0fdb", - "displayName": "", - "id": "e0fdb", - "name": "Elf_01_Idle Blinking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 2, - "trimX": 1107, - "trimY": 55, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f79a9": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@f79a9", - "displayName": "", - "id": "f79a9", - "name": "Elf_01_Idle Blinking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 2, - "trimX": 1151, - "trimY": 1, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f7b27": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@f7b27", - "displayName": "", - "id": "f7b27", - "name": "Elf_01_Idle Blinking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 2, - "trimX": 1153, - "trimY": 55, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a4de0": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@a4de0", - "displayName": "", - "id": "a4de0", - "name": "Elf_01_Idle Blinking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1197, - "trimY": 1, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79de1": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@79de1", - "displayName": "", - "id": "79de1", - "name": "Elf_01_Idle Blinking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1199, - "trimY": 55, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "44a15": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@44a15", - "displayName": "", - "id": "44a15", - "name": "Elf_01_Idle Blinking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 389, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7522b": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@7522b", - "displayName": "", - "id": "7522b", - "name": "Elf_01_Idle Blinking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 389, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "df9ac": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@df9ac", - "displayName": "", - "id": "df9ac", - "name": "Elf_01_Idle Blinking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 435, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8bd0e": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@8bd0e", - "displayName": "", - "id": "8bd0e", - "name": "Elf_01_Idle Blinking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 101, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f0dc5": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@f0dc5", - "displayName": "", - "id": "f0dc5", - "name": "Elf_01_Idle Blinking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 435, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6c5e3": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@6c5e3", - "displayName": "", - "id": "6c5e3", - "name": "Elf_01_Idle Blinking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1245, - "trimY": 55, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8509f": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@8509f", - "displayName": "", - "id": "8509f", - "name": "Elf_01_Shooting_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -5, - "offsetY": 2, - "trimX": 895, - "trimY": 57, - "width": 52, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07820": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@07820", - "displayName": "", - "id": "07820", - "name": "Elf_01_Shooting_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1289, - "trimY": 1, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ea835": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@ea835", - "displayName": "", - "id": "ea835", - "name": "Elf_01_Shooting_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1291, - "trimY": 55, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ebbc4": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@ebbc4", - "displayName": "", - "id": "ebbc4", - "name": "Elf_01_Shooting_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 2, - "trimX": 941, - "trimY": 1, - "width": 52, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "26af3": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@26af3", - "displayName": "", - "id": "26af3", - "name": "Elf_01_Shooting_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 2, - "trimX": 995, - "trimY": 1, - "width": 50, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0109a": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@0109a", - "displayName": "", - "id": "0109a", - "name": "Elf_01_Shooting_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 2, - "trimX": 1003, - "trimY": 55, - "width": 50, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "060a8": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@060a8", - "displayName": "", - "id": "060a8", - "name": "Elf_01_Shooting_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 2, - "trimX": 1047, - "trimY": 1, - "width": 50, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "aefb8": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@aefb8", - "displayName": "", - "id": "aefb8", - "name": "Elf_01_Shooting_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 2, - "trimX": 1055, - "trimY": 55, - "width": 50, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "80c05": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@80c05", - "displayName": "", - "id": "80c05", - "name": "Elf_01_Shooting_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 2, - "trimX": 1099, - "trimY": 1, - "width": 50, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "efc21": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@efc21", - "displayName": "", - "id": "efc21", - "name": "Elf_01_Shooting_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1335, - "trimY": 1, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2e841": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@2e841", - "displayName": "", - "id": "2e841", - "name": "Elf_01_Shooting_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1337, - "trimY": 55, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e28a2": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@e28a2", - "displayName": "", - "id": "e28a2", - "name": "Elf_01_Shooting_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1381, - "trimY": 1, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d30ce": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@d30ce", - "displayName": "", - "id": "d30ce", - "name": "Elf_01_Shooting_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1383, - "trimY": 55, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6dbe8": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@6dbe8", - "displayName": "", - "id": "6dbe8", - "name": "Elf_01_Shooting_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 2, - "trimX": 1427, - "trimY": 1, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cf246": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@cf246", - "displayName": "", - "id": "cf246", - "name": "Elf_01_Taunt_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 2, - "trimX": 1107, - "trimY": 55, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "af2c9": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@af2c9", - "displayName": "", - "id": "af2c9", - "name": "Elf_01_Taunt_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 481, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d9f15": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@d9f15", - "displayName": "", - "id": "d9f15", - "name": "Elf_01_Taunt_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 481, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d82d4": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@d82d4", - "displayName": "", - "id": "d82d4", - "name": "Elf_01_Taunt_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -5, - "offsetY": 3, - "trimX": 1, - "trimY": 1, - "width": 48, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e9a4f": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@e9a4f", - "displayName": "", - "id": "e9a4f", - "name": "Elf_01_Taunt_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -5, - "offsetY": 3, - "trimX": 1, - "trimY": 57, - "width": 48, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e6b1d": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@e6b1d", - "displayName": "", - "id": "e6b1d", - "name": "Elf_01_Taunt_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 101, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3cddf": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@3cddf", - "displayName": "", - "id": "3cddf", - "name": "Elf_01_Taunt_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 149, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1b81": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@d1b81", - "displayName": "", - "id": "d1b81", - "name": "Elf_01_Taunt_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 149, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5ee9f": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@5ee9f", - "displayName": "", - "id": "5ee9f", - "name": "Elf_01_Taunt_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 197, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1e9eb": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@1e9eb", - "displayName": "", - "id": "1e9eb", - "name": "Elf_01_Taunt_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 197, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4076e": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@4076e", - "displayName": "", - "id": "4076e", - "name": "Elf_01_Taunt_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 245, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e17d7": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@e17d7", - "displayName": "", - "id": "e17d7", - "name": "Elf_01_Taunt_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 245, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "48ee3": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@48ee3", - "displayName": "", - "id": "48ee3", - "name": "Elf_01_Taunt_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 293, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2b366": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@2b366", - "displayName": "", - "id": "2b366", - "name": "Elf_01_Taunt_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 293, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "223f2": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@223f2", - "displayName": "", - "id": "223f2", - "name": "Elf_01_Taunt_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -5, - "offsetY": 3, - "trimX": 51, - "trimY": 1, - "width": 48, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "66ac2": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@66ac2", - "displayName": "", - "id": "66ac2", - "name": "Elf_01_Taunt_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -5, - "offsetY": 3, - "trimX": 51, - "trimY": 57, - "width": 48, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1bbad": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@1bbad", - "displayName": "", - "id": "1bbad", - "name": "Elf_01_Taunt_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 527, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2809e": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@2809e", - "displayName": "", - "id": "2809e", - "name": "Elf_01_Taunt_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 527, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d4f9c": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@d4f9c", - "displayName": "", - "id": "d4f9c", - "name": "Elf_01_Walking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 2, - "trimX": 1429, - "trimY": 55, - "width": 44, - "height": 52, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cf434": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@cf434", - "displayName": "", - "id": "cf434", - "name": "Elf_01_Walking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 573, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9d5f7": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@9d5f7", - "displayName": "", - "id": "9d5f7", - "name": "Elf_01_Walking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 573, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2792e": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@2792e", - "displayName": "", - "id": "2792e", - "name": "Elf_01_Walking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 3, - "trimX": 619, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "77d42": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@77d42", - "displayName": "", - "id": "77d42", - "name": "Elf_01_Walking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 619, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "428ff": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@428ff", - "displayName": "", - "id": "428ff", - "name": "Elf_01_Walking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 665, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0455f": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@0455f", - "displayName": "", - "id": "0455f", - "name": "Elf_01_Walking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 341, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c9378": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@c9378", - "displayName": "", - "id": "c9378", - "name": "Elf_01_Walking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 665, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "210d8": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@210d8", - "displayName": "", - "id": "210d8", - "name": "Elf_01_Walking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 3, - "trimX": 711, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b955a": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@b955a", - "displayName": "", - "id": "b955a", - "name": "Elf_01_Walking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 711, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7add8": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@7add8", - "displayName": "", - "id": "7add8", - "name": "Elf_01_Walking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 757, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bf348": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@bf348", - "displayName": "", - "id": "bf348", - "name": "Elf_01_Walking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 757, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0f159": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@0f159", - "displayName": "", - "id": "0f159", - "name": "Elf_01_Walking_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 3, - "trimX": 803, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5a390": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@5a390", - "displayName": "", - "id": "5a390", - "name": "Elf_01_Walking_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 803, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a2676": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@a2676", - "displayName": "", - "id": "a2676", - "name": "Elf_01_Walking_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 849, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "57e3e": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@57e3e", - "displayName": "", - "id": "57e3e", - "name": "Elf_01_Walking_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 341, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ddc39": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@ddc39", - "displayName": "", - "id": "ddc39", - "name": "Elf_01_Walking_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 849, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4aaed": { - "importer": "sprite-frame", - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5@4aaed", - "displayName": "", - "id": "4aaed", - "name": "Elf_01_Walking_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 3, - "trimX": 895, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "atlasUuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "a4.png", - "format": 3, - "uuid": "034cce1f-e5e5-46b6-9df5-80d3ece4e3a5", - "textureUuid": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a" - } -} diff --git a/assets/resources/game/hero/archer/a4/a4.png b/assets/resources/game/hero/archer/a4/a4.png deleted file mode 100644 index 615c537c..00000000 Binary files a/assets/resources/game/hero/archer/a4/a4.png and /dev/null differ diff --git a/assets/resources/game/hero/archer/a4/a4.png.meta b/assets/resources/game/hero/archer/a4/a4.png.meta deleted file mode 100644 index 1c6c767f..00000000 --- a/assets/resources/game/hero/archer/a4/a4.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a", - "displayName": "a4", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "ba067a3f-8fe3-495c-9fe6-39e1e8ee2363@6c48a" - } -} diff --git a/assets/resources/game/hero/archer/a4/atk.anim b/assets/resources/game/hero/archer/a4/atk.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/archer/a4/atk.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/archer/a4/atk.anim.meta b/assets/resources/game/hero/archer/a4/atk.anim.meta deleted file mode 100644 index fb6c6bd6..00000000 --- a/assets/resources/game/hero/archer/a4/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c0983165-ad5d-48ff-bc9b-be2abb82bd72","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/archer/a4/idle.anim b/assets/resources/game/hero/archer/a4/idle.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/archer/a4/idle.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/archer/a4/idle.anim.meta b/assets/resources/game/hero/archer/a4/idle.anim.meta deleted file mode 100644 index 9b98c447..00000000 --- a/assets/resources/game/hero/archer/a4/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"7a28ca19-23cc-48dc-a167-e87da13a2afe","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/archer/a4/max.anim b/assets/resources/game/hero/archer/a4/max.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/archer/a4/max.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/archer/a4/move.anim b/assets/resources/game/hero/archer/a4/move.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/archer/a4/move.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/archer/a4/move.anim.meta b/assets/resources/game/hero/archer/a4/move.anim.meta deleted file mode 100644 index 86ab65a5..00000000 --- a/assets/resources/game/hero/archer/a4/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"d2b99ae6-b843-43c3-ab12-a55b9b437997","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/archer/a5.meta b/assets/resources/game/hero/archer/a5.meta deleted file mode 100644 index 6f1ed70e..00000000 --- a/assets/resources/game/hero/archer/a5.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"5d210b0e-0dd2-471e-9dcc-c5902334cd6a","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/archer/a5/a5.plist b/assets/resources/game/hero/archer/a5/a5.plist deleted file mode 100644 index 314f3c36..00000000 --- a/assets/resources/game/hero/archer/a5/a5.plist +++ /dev/null @@ -1,971 +0,0 @@ - - - - - frames - - Elf_02_Idle Blinking_000.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{789,1},{44,54}} - textureRotated - - - Elf_02_Idle Blinking_001.png - - aliases - - spriteOffset - {-1,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{789,57},{44,54}} - textureRotated - - - Elf_02_Idle Blinking_002.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{835,1},{44,54}} - textureRotated - - - Elf_02_Idle Blinking_003.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{835,57},{44,54}} - textureRotated - - - Elf_02_Idle Blinking_004.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{881,1},{44,54}} - textureRotated - - - Elf_02_Idle Blinking_005.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{501,1},{46,54}} - textureRotated - - - Elf_02_Idle Blinking_006.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{881,57},{44,54}} - textureRotated - - - Elf_02_Idle Blinking_007.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{927,1},{44,54}} - textureRotated - - - Elf_02_Idle Blinking_008.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{501,57},{46,54}} - textureRotated - - - Elf_02_Idle Blinking_009.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{549,1},{46,54}} - textureRotated - - - Elf_02_Idle Blinking_010.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{927,57},{44,54}} - textureRotated - - - Elf_02_Idle Blinking_011.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{973,1},{44,54}} - textureRotated - - - Elf_02_Shooting_000.png - - aliases - - spriteOffset - {-6,3} - spriteSize - {52,54} - spriteSourceSize - {104,84} - textureRect - {{287,59},{52,54}} - textureRotated - - - Elf_02_Shooting_001.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{973,57},{44,54}} - textureRotated - - - Elf_02_Shooting_002.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1019,1},{44,54}} - textureRotated - - - Elf_02_Shooting_003.png - - aliases - - spriteOffset - {1,3} - spriteSize - {52,54} - spriteSourceSize - {104,84} - textureRect - {{289,1},{52,54}} - textureRotated - - - Elf_02_Shooting_004.png - - aliases - - spriteOffset - {1,3} - spriteSize - {52,54} - spriteSourceSize - {104,84} - textureRect - {{341,57},{52,54}} - textureRotated - - - Elf_02_Shooting_005.png - - aliases - - spriteOffset - {0,3} - spriteSize - {52,54} - spriteSourceSize - {104,84} - textureRect - {{343,1},{52,54}} - textureRotated - - - Elf_02_Shooting_006.png - - aliases - - spriteOffset - {0,3} - spriteSize - {52,54} - spriteSourceSize - {104,84} - textureRect - {{395,57},{52,54}} - textureRotated - - - Elf_02_Shooting_007.png - - aliases - - spriteOffset - {0,3} - spriteSize - {50,54} - spriteSourceSize - {104,84} - textureRect - {{397,1},{50,54}} - textureRotated - - - Elf_02_Shooting_008.png - - aliases - - spriteOffset - {0,3} - spriteSize - {50,54} - spriteSourceSize - {104,84} - textureRect - {{449,1},{50,54}} - textureRotated - - - Elf_02_Shooting_009.png - - aliases - - spriteOffset - {0,3} - spriteSize - {50,54} - spriteSourceSize - {104,84} - textureRect - {{449,57},{50,54}} - textureRotated - - - Elf_02_Shooting_010.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1019,57},{44,54}} - textureRotated - - - Elf_02_Shooting_011.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1065,1},{44,54}} - textureRotated - - - Elf_02_Shooting_012.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1065,57},{44,54}} - textureRotated - - - Elf_02_Shooting_013.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1111,1},{44,54}} - textureRotated - - - Elf_02_Shooting_014.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1111,57},{44,54}} - textureRotated - - - Elf_02_Taunt_000.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{789,1},{44,54}} - textureRotated - - - Elf_02_Taunt_001.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1157,1},{44,54}} - textureRotated - - - Elf_02_Taunt_002.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1157,57},{44,54}} - textureRotated - - - Elf_02_Taunt_003.png - - aliases - - spriteOffset - {-4,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{1,1},{46,56}} - textureRotated - - - Elf_02_Taunt_004.png - - aliases - - spriteOffset - {-4,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{1,59},{46,56}} - textureRotated - - - Elf_02_Taunt_005.png - - aliases - - spriteOffset - {-4,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{49,1},{46,56}} - textureRotated - - - Elf_02_Taunt_006.png - - aliases - - spriteOffset - {-4,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{49,59},{46,56}} - textureRotated - - - Elf_02_Taunt_007.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{549,57},{46,54}} - textureRotated - - - Elf_02_Taunt_008.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{597,1},{46,54}} - textureRotated - - - Elf_02_Taunt_009.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{597,57},{46,54}} - textureRotated - - - Elf_02_Taunt_010.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{645,1},{46,54}} - textureRotated - - - Elf_02_Taunt_011.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{645,57},{46,54}} - textureRotated - - - Elf_02_Taunt_012.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{693,1},{46,54}} - textureRotated - - - Elf_02_Taunt_013.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{693,57},{46,54}} - textureRotated - - - Elf_02_Taunt_014.png - - aliases - - spriteOffset - {-4,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{97,1},{46,56}} - textureRotated - - - Elf_02_Taunt_015.png - - aliases - - spriteOffset - {-4,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{97,59},{46,56}} - textureRotated - - - Elf_02_Taunt_016.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1203,1},{44,54}} - textureRotated - - - Elf_02_Taunt_017.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1203,57},{44,54}} - textureRotated - - - Elf_02_Walking_000.png - - aliases - - spriteOffset - {0,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1249,1},{44,54}} - textureRotated - - - Elf_02_Walking_001.png - - aliases - - spriteOffset - {0,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1249,57},{44,54}} - textureRotated - - - Elf_02_Walking_002.png - - aliases - - spriteOffset - {-1,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{741,1},{46,54}} - textureRotated - - - Elf_02_Walking_003.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1295,1},{44,54}} - textureRotated - - - Elf_02_Walking_004.png - - aliases - - spriteOffset - {-3,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{145,1},{46,56}} - textureRotated - - - Elf_02_Walking_005.png - - aliases - - spriteOffset - {-4,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{145,59},{46,56}} - textureRotated - - - Elf_02_Walking_006.png - - aliases - - spriteOffset - {-3,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{193,1},{46,56}} - textureRotated - - - Elf_02_Walking_007.png - - aliases - - spriteOffset - {-2,4} - spriteSize - {44,56} - spriteSourceSize - {104,84} - textureRect - {{241,59},{44,56}} - textureRotated - - - Elf_02_Walking_008.png - - aliases - - spriteOffset - {-1,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1295,57},{44,54}} - textureRotated - - - Elf_02_Walking_009.png - - aliases - - spriteOffset - {0,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1341,1},{44,54}} - textureRotated - - - Elf_02_Walking_010.png - - aliases - - spriteOffset - {0,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1341,57},{44,54}} - textureRotated - - - Elf_02_Walking_011.png - - aliases - - spriteOffset - {0,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1387,1},{44,54}} - textureRotated - - - Elf_02_Walking_012.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1387,57},{44,54}} - textureRotated - - - Elf_02_Walking_013.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {46,54} - spriteSourceSize - {104,84} - textureRect - {{741,57},{46,54}} - textureRotated - - - Elf_02_Walking_014.png - - aliases - - spriteOffset - {-3,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{193,59},{46,56}} - textureRotated - - - Elf_02_Walking_015.png - - aliases - - spriteOffset - {-3,4} - spriteSize - {46,56} - spriteSourceSize - {104,84} - textureRect - {{241,1},{46,56}} - textureRotated - - - Elf_02_Walking_016.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1433,1},{44,54}} - textureRotated - - - Elf_02_Walking_017.png - - aliases - - spriteOffset - {-1,3} - spriteSize - {44,54} - spriteSourceSize - {104,84} - textureRect - {{1433,57},{44,54}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - a5.png - size - {1478,116} - smartupdate - $TexturePacker:SmartUpdate:1e7dfc93eb577a53bd3ae539fe3e6f37:3cb0a8b8a33609746c1e8098fc144ec7:1e0ce407e849ed90e4fdba5704110d58$ - textureFileName - a5.png - - - diff --git a/assets/resources/game/hero/archer/a5/a5.plist.meta b/assets/resources/game/hero/archer/a5/a5.plist.meta deleted file mode 100644 index 9903a26d..00000000 --- a/assets/resources/game/hero/archer/a5/a5.plist.meta +++ /dev/null @@ -1,2915 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440", - "files": [ - ".json" - ], - "subMetas": { - "59908": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@59908", - "displayName": "", - "id": "59908", - "name": "Elf_02_Shooting_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 1065, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "65131": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@65131", - "displayName": "", - "id": "65131", - "name": "Elf_02_Walking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 1341, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "85307": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@85307", - "displayName": "", - "id": "85307", - "name": "Elf_02_Idle Blinking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 835, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "87635": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@87635", - "displayName": "", - "id": "87635", - "name": "Elf_02_Idle Blinking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 549, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "96993": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@96993", - "displayName": "", - "id": "96993", - "name": "Elf_02_Shooting_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 341, - "trimY": 57, - "width": 52, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "71be6": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@71be6", - "displayName": "", - "id": "71be6", - "name": "Elf_02_Idle Blinking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 789, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e5195": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@e5195", - "displayName": "", - "id": "e5195", - "name": "Elf_02_Idle Blinking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 3, - "trimX": 789, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f3d76": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@f3d76", - "displayName": "", - "id": "f3d76", - "name": "Elf_02_Idle Blinking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 835, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e5853": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@e5853", - "displayName": "", - "id": "e5853", - "name": "Elf_02_Idle Blinking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 881, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "aa053": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@aa053", - "displayName": "", - "id": "aa053", - "name": "Elf_02_Idle Blinking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 501, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7e31c": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@7e31c", - "displayName": "", - "id": "7e31c", - "name": "Elf_02_Idle Blinking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 881, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5f858": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@5f858", - "displayName": "", - "id": "5f858", - "name": "Elf_02_Idle Blinking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 927, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bc7a8": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@bc7a8", - "displayName": "", - "id": "bc7a8", - "name": "Elf_02_Idle Blinking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 501, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fa278": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@fa278", - "displayName": "", - "id": "fa278", - "name": "Elf_02_Idle Blinking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 927, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f3079": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@f3079", - "displayName": "", - "id": "f3079", - "name": "Elf_02_Idle Blinking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 973, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "01fe1": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@01fe1", - "displayName": "", - "id": "01fe1", - "name": "Elf_02_Shooting_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -6, - "offsetY": 3, - "trimX": 287, - "trimY": 59, - "width": 52, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8f5fb": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@8f5fb", - "displayName": "", - "id": "8f5fb", - "name": "Elf_02_Shooting_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 973, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c9e23": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@c9e23", - "displayName": "", - "id": "c9e23", - "name": "Elf_02_Shooting_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 1019, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8a74c": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@8a74c", - "displayName": "", - "id": "8a74c", - "name": "Elf_02_Shooting_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 289, - "trimY": 1, - "width": 52, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cb47c": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@cb47c", - "displayName": "", - "id": "cb47c", - "name": "Elf_02_Shooting_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 343, - "trimY": 1, - "width": 52, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7d43": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@b7d43", - "displayName": "", - "id": "b7d43", - "name": "Elf_02_Shooting_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 395, - "trimY": 57, - "width": 52, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2aae4": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@2aae4", - "displayName": "", - "id": "2aae4", - "name": "Elf_02_Shooting_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 397, - "trimY": 1, - "width": 50, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4d9e3": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@4d9e3", - "displayName": "", - "id": "4d9e3", - "name": "Elf_02_Shooting_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 449, - "trimY": 1, - "width": 50, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2b340": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@2b340", - "displayName": "", - "id": "2b340", - "name": "Elf_02_Shooting_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 449, - "trimY": 57, - "width": 50, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ebc44": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@ebc44", - "displayName": "", - "id": "ebc44", - "name": "Elf_02_Shooting_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 1019, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2aae0": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@2aae0", - "displayName": "", - "id": "2aae0", - "name": "Elf_02_Shooting_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 1065, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "097da": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@097da", - "displayName": "", - "id": "097da", - "name": "Elf_02_Shooting_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 1111, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3e41c": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@3e41c", - "displayName": "", - "id": "3e41c", - "name": "Elf_02_Shooting_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 1111, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "129af": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@129af", - "displayName": "", - "id": "129af", - "name": "Elf_02_Taunt_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 789, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b5140": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@b5140", - "displayName": "", - "id": "b5140", - "name": "Elf_02_Taunt_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 1157, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5db0e": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@5db0e", - "displayName": "", - "id": "5db0e", - "name": "Elf_02_Taunt_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 1157, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b2542": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@b2542", - "displayName": "", - "id": "b2542", - "name": "Elf_02_Taunt_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 4, - "trimX": 1, - "trimY": 1, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e8bd8": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@e8bd8", - "displayName": "", - "id": "e8bd8", - "name": "Elf_02_Taunt_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 4, - "trimX": 1, - "trimY": 59, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "691f7": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@691f7", - "displayName": "", - "id": "691f7", - "name": "Elf_02_Taunt_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 4, - "trimX": 49, - "trimY": 1, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b6efb": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@b6efb", - "displayName": "", - "id": "b6efb", - "name": "Elf_02_Taunt_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 4, - "trimX": 49, - "trimY": 59, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "64f38": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@64f38", - "displayName": "", - "id": "64f38", - "name": "Elf_02_Taunt_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 549, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "08b3f": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@08b3f", - "displayName": "", - "id": "08b3f", - "name": "Elf_02_Taunt_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 597, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8e72a": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@8e72a", - "displayName": "", - "id": "8e72a", - "name": "Elf_02_Taunt_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 597, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fccce": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@fccce", - "displayName": "", - "id": "fccce", - "name": "Elf_02_Taunt_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 645, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4030d": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@4030d", - "displayName": "", - "id": "4030d", - "name": "Elf_02_Taunt_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 645, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "facbb": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@facbb", - "displayName": "", - "id": "facbb", - "name": "Elf_02_Taunt_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 693, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c7627": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@c7627", - "displayName": "", - "id": "c7627", - "name": "Elf_02_Taunt_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 693, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6489b": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@6489b", - "displayName": "", - "id": "6489b", - "name": "Elf_02_Taunt_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 4, - "trimX": 97, - "trimY": 1, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4360": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@c4360", - "displayName": "", - "id": "c4360", - "name": "Elf_02_Taunt_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 4, - "trimX": 97, - "trimY": 59, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e982f": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@e982f", - "displayName": "", - "id": "e982f", - "name": "Elf_02_Taunt_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 1203, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7e275": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@7e275", - "displayName": "", - "id": "7e275", - "name": "Elf_02_Taunt_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 1203, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ca190": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@ca190", - "displayName": "", - "id": "ca190", - "name": "Elf_02_Walking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 1249, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9c1f4": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@9c1f4", - "displayName": "", - "id": "9c1f4", - "name": "Elf_02_Walking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 1249, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1e9be": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@1e9be", - "displayName": "", - "id": "1e9be", - "name": "Elf_02_Walking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 3, - "trimX": 741, - "trimY": 1, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14f5a": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@14f5a", - "displayName": "", - "id": "14f5a", - "name": "Elf_02_Walking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 1295, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50c43": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@50c43", - "displayName": "", - "id": "50c43", - "name": "Elf_02_Walking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 4, - "trimX": 145, - "trimY": 1, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "125eb": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@125eb", - "displayName": "", - "id": "125eb", - "name": "Elf_02_Walking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 4, - "trimX": 145, - "trimY": 59, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ed7c7": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@ed7c7", - "displayName": "", - "id": "ed7c7", - "name": "Elf_02_Walking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 4, - "trimX": 193, - "trimY": 1, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "394a3": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@394a3", - "displayName": "", - "id": "394a3", - "name": "Elf_02_Walking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 4, - "trimX": 241, - "trimY": 59, - "width": 44, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8037e": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@8037e", - "displayName": "", - "id": "8037e", - "name": "Elf_02_Walking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 3, - "trimX": 1295, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7d59b": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@7d59b", - "displayName": "", - "id": "7d59b", - "name": "Elf_02_Walking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 1341, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eac31": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@eac31", - "displayName": "", - "id": "eac31", - "name": "Elf_02_Walking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 1387, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "04f01": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@04f01", - "displayName": "", - "id": "04f01", - "name": "Elf_02_Walking_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 1387, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2a6f6": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@2a6f6", - "displayName": "", - "id": "2a6f6", - "name": "Elf_02_Walking_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 741, - "trimY": 57, - "width": 46, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "718f9": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@718f9", - "displayName": "", - "id": "718f9", - "name": "Elf_02_Walking_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 4, - "trimX": 193, - "trimY": 59, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0b20d": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@0b20d", - "displayName": "", - "id": "0b20d", - "name": "Elf_02_Walking_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 4, - "trimX": 241, - "trimY": 1, - "width": 46, - "height": 56, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e3b6f": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@e3b6f", - "displayName": "", - "id": "e3b6f", - "name": "Elf_02_Walking_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 1433, - "trimY": 1, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e0a02": { - "importer": "sprite-frame", - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440@e0a02", - "displayName": "", - "id": "e0a02", - "name": "Elf_02_Walking_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 3, - "trimX": 1433, - "trimY": 57, - "width": 44, - "height": 54, - "rawWidth": 104, - "rawHeight": 84, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "atlasUuid": "405f5cbb-2460-4584-a5f0-acecbd88c440" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "a5.png", - "format": 3, - "uuid": "405f5cbb-2460-4584-a5f0-acecbd88c440", - "textureUuid": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a" - } -} diff --git a/assets/resources/game/hero/archer/a5/a5.png b/assets/resources/game/hero/archer/a5/a5.png deleted file mode 100644 index 78d8ea2e..00000000 Binary files a/assets/resources/game/hero/archer/a5/a5.png and /dev/null differ diff --git a/assets/resources/game/hero/archer/a5/a5.png.meta b/assets/resources/game/hero/archer/a5/a5.png.meta deleted file mode 100644 index e36f4064..00000000 --- a/assets/resources/game/hero/archer/a5/a5.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "a1cae607-763a-4d27-8780-2271b6dd2258", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a", - "displayName": "a5", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "a1cae607-763a-4d27-8780-2271b6dd2258", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "a1cae607-763a-4d27-8780-2271b6dd2258@6c48a" - } -} diff --git a/assets/resources/game/hero/archer/a5/atk.anim b/assets/resources/game/hero/archer/a5/atk.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/archer/a5/atk.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/archer/a5/atk.anim.meta b/assets/resources/game/hero/archer/a5/atk.anim.meta deleted file mode 100644 index 273a8339..00000000 --- a/assets/resources/game/hero/archer/a5/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"22d29ea3-2fc4-4aa2-972e-61e485f4ed06","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/archer/a5/idle.anim b/assets/resources/game/hero/archer/a5/idle.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/archer/a5/idle.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/archer/a5/idle.anim.meta b/assets/resources/game/hero/archer/a5/idle.anim.meta deleted file mode 100644 index e66db97d..00000000 --- a/assets/resources/game/hero/archer/a5/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"5263ca71-2089-4dde-944c-26431a7638ee","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/archer/a5/max.anim b/assets/resources/game/hero/archer/a5/max.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/archer/a5/max.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/archer/a5/max.anim.meta b/assets/resources/game/hero/archer/a5/max.anim.meta deleted file mode 100644 index bb0c3802..00000000 --- a/assets/resources/game/hero/archer/a5/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a8556b16-3659-41d6-af1a-88b82d72d344","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/archer/a5/move.anim b/assets/resources/game/hero/archer/a5/move.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/archer/a5/move.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/archer/a5/move.anim.meta b/assets/resources/game/hero/archer/a5/move.anim.meta deleted file mode 100644 index 3942c2a2..00000000 --- a/assets/resources/game/hero/archer/a5/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"117d22de-cca4-469b-b040-df21b2c15386","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/k1.prefab b/assets/resources/game/hero/k1.prefab deleted file mode 100644 index c7789cdf..00000000 --- a/assets/resources/game/hero/k1.prefab +++ /dev/null @@ -1,2761 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "k1", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "k1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 12 - }, - { - "__id__": 16 - }, - { - "__id__": 24 - }, - { - "__id__": 66 - } - ], - "_active": true, - "_components": [ - { - "__id__": 116 - }, - { - "__id__": 118 - }, - { - "__id__": 120 - }, - { - "__id__": 122 - }, - { - "__id__": 124 - } - ], - "_prefab": { - "__id__": 126 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "range_box", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - } - ], - "_prefab": { - "__id__": 11 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 50, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 20, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a7v65R9FlK35rDSodMKBaf" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "enabledContactListener": true, - "bullet": true, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 0, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1dGvLlJTxIyqWs7tv5eOjk" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "tag": 4, - "_group": 4, - "_density": 0, - "_sensor": false, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_size": { - "__type__": "cc.Size", - "width": 200, - "height": 150 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c1dqgNlJdOJJzLITAnZIRf" - }, - { - "__type__": "4d46f6aanNOIZlLrgDp9iTQ", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7eyE/f3tpA/ZdDQK2QJu9y" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "efBGnhxpVAs6aCGcg6inWm", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "buff_icons", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 13 - } - ], - "_prefab": { - "__id__": 15 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 12 - }, - "_enabled": true, - "__prefab": { - "__id__": 14 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4Dy2iOhdGNIRklJZWrCG/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "63odueI6BBfZ9G4QIJALMy", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 21 - } - ], - "_prefab": { - "__id__": 23 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 5.725, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 18 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 104, - "height": 76 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 20 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@9a470", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b8HXPqPhZMN71qxUdeHMKv" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 22 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "02a1a021-ade6-4768-abcf-a2915f4baac7", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "e9a7693a-b745-41ea-a3e5-6be2b9106d55", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "fdaaf598-0dfb-4704-8d6c-f96ee98efda6", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "d452be2c-ac8f-4ee6-9353-034c951b71f4", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": { - "__uuid__": "02a1a021-ade6-4768-abcf-a2915f4baac7", - "__expectedType__": "cc.AnimationClip" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cc+VbiPudF9b+0zbBwUuPW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "level", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 25 - }, - { - "__id__": 31 - }, - { - "__id__": 37 - }, - { - "__id__": 43 - }, - { - "__id__": 49 - }, - { - "__id__": 55 - } - ], - "_active": true, - "_components": [ - { - "__id__": 61 - }, - { - "__id__": 63 - } - ], - "_prefab": { - "__id__": 65 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -22.542, - "y": 74.394, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.6, - "y": 0.6, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 26 - }, - { - "__id__": 28 - } - ], - "_prefab": { - "__id__": 30 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 100.197, - "y": -77.265, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 25 - }, - "_enabled": true, - "__prefab": { - "__id__": 27 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cfZFaZgxNFo6RAbvR4Rmfc" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 25 - }, - "_enabled": true, - "__prefab": { - "__id__": 29 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e6uKIl33xHs5LfNDT0p+2p" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a7PGybi3lGW6rZ+VnLGFt6", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 32 - }, - { - "__id__": 34 - } - ], - "_prefab": { - "__id__": 36 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -61.16, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 33 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d1lOxIXgdCJ6zpNNZGK8zg" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 35 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e85QoknbNBfpqTQHj53qa7" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "besG/N2EFDa7lwWiyvx8Nl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 38 - }, - { - "__id__": 40 - } - ], - "_prefab": { - "__id__": 42 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -43.555, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 37 - }, - "_enabled": true, - "__prefab": { - "__id__": 39 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "522G27EDRAqaOJNSy1XjqA" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 37 - }, - "_enabled": true, - "__prefab": { - "__id__": 41 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49HA7zbFRI77U6X4ltATKG" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "42gqlfWSRM46ibYgoOOPzt", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 44 - }, - { - "__id__": 46 - } - ], - "_prefab": { - "__id__": 48 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -27.047, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 43 - }, - "_enabled": true, - "__prefab": { - "__id__": 45 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "54B6UJW5NEdJ3RJ7tdZN/H" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 43 - }, - "_enabled": true, - "__prefab": { - "__id__": 47 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2adMQ5svRPv6C0hl03pcKW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "46MlNyXVlAd6iCQ2Xg1GOs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "5", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 50 - }, - { - "__id__": 52 - } - ], - "_prefab": { - "__id__": 54 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -8.965, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 49 - }, - "_enabled": true, - "__prefab": { - "__id__": 51 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7b9M+THNlDTaqQGsiLKEEh" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 49 - }, - "_enabled": true, - "__prefab": { - "__id__": 53 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4ahRCnXYNP+49Y0cMTeOKb" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "abhOklX+ZBXKyPrgHVNLJs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "6", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 56 - }, - { - "__id__": 58 - } - ], - "_prefab": { - "__id__": 60 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": 7.656, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 55 - }, - "_enabled": true, - "__prefab": { - "__id__": 57 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e2TJIwk4JNxaWqt8GCj63E" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 55 - }, - "_enabled": true, - "__prefab": { - "__id__": 59 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "878kYC1dxIX7g/Ed4U8sq0" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b7G1dbavBCbpliqnbRTYqP", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 62 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 30, - "height": 30 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "156zvtWyZL7JeSq/l8Wq5O" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 64 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": null, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bjPXp87JGu52dDySu74sO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2dGu24EexKI57EzgA2ECVa", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "top", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 67 - }, - { - "__id__": 81 - }, - { - "__id__": 95 - }, - { - "__id__": 109 - } - ], - "_active": true, - "_components": [ - { - "__id__": 113 - } - ], - "_prefab": { - "__id__": 115 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 66.342, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "shield", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 68 - } - ], - "_active": true, - "_components": [ - { - "__id__": 74 - }, - { - "__id__": 76 - }, - { - "__id__": 78 - } - ], - "_prefab": { - "__id__": 80 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 11.501, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 67 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 69 - }, - { - "__id__": 71 - } - ], - "_prefab": { - "__id__": 73 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 68 - }, - "_enabled": true, - "__prefab": { - "__id__": 70 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "43IpgaTEtE5aOBmktOX57C" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 68 - }, - "_enabled": true, - "__prefab": { - "__id__": 72 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@57d74", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "acRL6vak5OSJLeij/Fhsud" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3e8uoxoQpD44VAIpuw0ntP", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 75 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7dB2jbtPpL76qPPr9zUe+F" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 77 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@91cea", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d7WAoOrG5FO64/FxpJORmd" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 79 - }, - "_barSprite": { - "__id__": 71 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "29ZCnBp9lGkqj4hrXUwD31" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "01j95/0Q1KuK83LiBzzT5p", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "power", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 82 - } - ], - "_active": true, - "_components": [ - { - "__id__": 88 - }, - { - "__id__": 90 - }, - { - "__id__": 92 - } - ], - "_prefab": { - "__id__": 94 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 4.35, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 81 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 83 - }, - { - "__id__": 85 - } - ], - "_prefab": { - "__id__": 87 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 82 - }, - "_enabled": true, - "__prefab": { - "__id__": 84 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e0oz8rXztLoKSg4FFNCWEO" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 82 - }, - "_enabled": true, - "__prefab": { - "__id__": 86 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@44c8a", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a797zAysFESbaU959mc4hO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "32rwuCT9pJYJekqAqG6UxW", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 89 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "68W5yQZDVJva74i80cdqmB" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 91 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@0e130", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f78uriYwRK5roS0XJxJsMk" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 93 - }, - "_barSprite": { - "__id__": 85 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "61lGg1JcBNDIYZDmYXQ1za" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "81s8eSFixFXqqA7FcioDCI", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "hp", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 96 - } - ], - "_active": true, - "_components": [ - { - "__id__": 102 - }, - { - "__id__": 104 - }, - { - "__id__": 106 - } - ], - "_prefab": { - "__id__": 108 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 8.374, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 95 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 97 - }, - { - "__id__": 99 - } - ], - "_prefab": { - "__id__": 101 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 98 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8exLqThehAK4kIGmgclB1U" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 100 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@dfad9", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "97JqzkkzZCvrrMhK3H+BB7" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2eOWeyt4FAWLzCmlpjw+Nm", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 103 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8d/p8bjmBJ+quwxF1ZNQY1" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 105 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@cf09c", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "camTFl2EVJ8aEG8FNLUUkp" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 107 - }, - "_barSprite": { - "__id__": 99 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "acAygYAdhF0r5mqWyF7mJM" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "53whgwtq9CxJ2i1jCwJGYQ", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "info", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 110 - } - ], - "_prefab": { - "__id__": 112 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -22.293000000000006, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1.0000000000000002, - "y": 1.0000000000000002, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 109 - }, - "_enabled": true, - "__prefab": { - "__id__": 111 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4bX90yFclPrIzd8axRDB8w" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b9nBOfDu1C065g9gI+HSUq", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 66 - }, - "_enabled": true, - "__prefab": { - "__id__": 114 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "120nHw9h1DvaKtU87zkN1H" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ceROHGz29KNrMUJoRznzF4", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 117 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 80 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 119 - }, - "enabledContactListener": true, - "bullet": true, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d8rVs6intBQ7lRU8Dw4zXV" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 121 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": false, - "_friction": 1, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 3.2, - "y": 34.8 - }, - "_size": { - "__type__": "cc.Size", - "width": 33.3, - "height": 55.8 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b2Dt9lJI9FyJCDezkDBPBl" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 123 - }, - "hitFlashMaterial": { - "__uuid__": "a8f34051-ccff-4050-b9d9-234f62977264", - "__expectedType__": "cc.Material" - }, - "BoxRang": { - "__id__": 2 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8blIkzAh1Ckafvclw1JRh2" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 125 - }, - "animator": { - "__id__": 21 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4/72thBVCT5iFRp762mjf" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/k1.prefab.meta b/assets/resources/game/hero/k1.prefab.meta deleted file mode 100644 index 67c783ef..00000000 --- a/assets/resources/game/hero/k1.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "8e36ad69-8f2d-4e6d-a93a-c7c340cac228", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "k1" - } -} diff --git a/assets/resources/game/hero/k2.prefab b/assets/resources/game/hero/k2.prefab deleted file mode 100644 index a0d55985..00000000 --- a/assets/resources/game/hero/k2.prefab +++ /dev/null @@ -1,2761 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "k2", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "k2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 12 - }, - { - "__id__": 16 - }, - { - "__id__": 24 - }, - { - "__id__": 66 - } - ], - "_active": true, - "_components": [ - { - "__id__": 116 - }, - { - "__id__": 118 - }, - { - "__id__": 120 - }, - { - "__id__": 122 - }, - { - "__id__": 124 - } - ], - "_prefab": { - "__id__": 126 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "range_box", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - } - ], - "_prefab": { - "__id__": 11 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 50, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 20, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a7v65R9FlK35rDSodMKBaf" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "enabledContactListener": true, - "bullet": true, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 0, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1dGvLlJTxIyqWs7tv5eOjk" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "tag": 4, - "_group": 4, - "_density": 0, - "_sensor": false, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_size": { - "__type__": "cc.Size", - "width": 200, - "height": 150 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c1dqgNlJdOJJzLITAnZIRf" - }, - { - "__type__": "4d46f6aanNOIZlLrgDp9iTQ", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "48hRSncHRPi5p1Qpik/Hc/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "efBGnhxpVAs6aCGcg6inWm", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "buff_icons", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 13 - } - ], - "_prefab": { - "__id__": 15 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 12 - }, - "_enabled": true, - "__prefab": { - "__id__": 14 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4Dy2iOhdGNIRklJZWrCG/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "63odueI6BBfZ9G4QIJALMy", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 21 - } - ], - "_prefab": { - "__id__": 23 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 5.725, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 18 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 104, - "height": 76 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 20 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@9a470", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b8HXPqPhZMN71qxUdeHMKv" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 22 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "583f1d7a-7745-4655-9103-737e79431448", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "c6ee136d-3b00-4e43-9e4a-139b36a59579", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "0751b212-b8a2-450f-849d-b11c2103008e", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "1d09221a-a327-41b8-98bd-0fd5777e73fb", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": { - "__uuid__": "583f1d7a-7745-4655-9103-737e79431448", - "__expectedType__": "cc.AnimationClip" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cc+VbiPudF9b+0zbBwUuPW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "level", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 25 - }, - { - "__id__": 31 - }, - { - "__id__": 37 - }, - { - "__id__": 43 - }, - { - "__id__": 49 - }, - { - "__id__": 55 - } - ], - "_active": true, - "_components": [ - { - "__id__": 61 - }, - { - "__id__": 63 - } - ], - "_prefab": { - "__id__": 65 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -22.542, - "y": 74.394, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.6, - "y": 0.6, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 26 - }, - { - "__id__": 28 - } - ], - "_prefab": { - "__id__": 30 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 100.197, - "y": -77.265, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 25 - }, - "_enabled": true, - "__prefab": { - "__id__": 27 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cfZFaZgxNFo6RAbvR4Rmfc" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 25 - }, - "_enabled": true, - "__prefab": { - "__id__": 29 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e6uKIl33xHs5LfNDT0p+2p" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a7PGybi3lGW6rZ+VnLGFt6", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 32 - }, - { - "__id__": 34 - } - ], - "_prefab": { - "__id__": 36 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -61.16, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 33 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d1lOxIXgdCJ6zpNNZGK8zg" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 35 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e85QoknbNBfpqTQHj53qa7" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "besG/N2EFDa7lwWiyvx8Nl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 38 - }, - { - "__id__": 40 - } - ], - "_prefab": { - "__id__": 42 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -43.555, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 37 - }, - "_enabled": true, - "__prefab": { - "__id__": 39 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "522G27EDRAqaOJNSy1XjqA" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 37 - }, - "_enabled": true, - "__prefab": { - "__id__": 41 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49HA7zbFRI77U6X4ltATKG" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "42gqlfWSRM46ibYgoOOPzt", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 44 - }, - { - "__id__": 46 - } - ], - "_prefab": { - "__id__": 48 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -27.047, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 43 - }, - "_enabled": true, - "__prefab": { - "__id__": 45 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "54B6UJW5NEdJ3RJ7tdZN/H" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 43 - }, - "_enabled": true, - "__prefab": { - "__id__": 47 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2adMQ5svRPv6C0hl03pcKW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "46MlNyXVlAd6iCQ2Xg1GOs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "5", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 50 - }, - { - "__id__": 52 - } - ], - "_prefab": { - "__id__": 54 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -8.965, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 49 - }, - "_enabled": true, - "__prefab": { - "__id__": 51 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7b9M+THNlDTaqQGsiLKEEh" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 49 - }, - "_enabled": true, - "__prefab": { - "__id__": 53 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4ahRCnXYNP+49Y0cMTeOKb" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "abhOklX+ZBXKyPrgHVNLJs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "6", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 56 - }, - { - "__id__": 58 - } - ], - "_prefab": { - "__id__": 60 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": 7.656, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 55 - }, - "_enabled": true, - "__prefab": { - "__id__": 57 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e2TJIwk4JNxaWqt8GCj63E" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 55 - }, - "_enabled": true, - "__prefab": { - "__id__": 59 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "878kYC1dxIX7g/Ed4U8sq0" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b7G1dbavBCbpliqnbRTYqP", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 62 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 30, - "height": 30 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "156zvtWyZL7JeSq/l8Wq5O" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 64 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": null, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bjPXp87JGu52dDySu74sO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2dGu24EexKI57EzgA2ECVa", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "top", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 67 - }, - { - "__id__": 81 - }, - { - "__id__": 95 - }, - { - "__id__": 109 - } - ], - "_active": true, - "_components": [ - { - "__id__": 113 - } - ], - "_prefab": { - "__id__": 115 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 66.342, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "shield", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 68 - } - ], - "_active": true, - "_components": [ - { - "__id__": 74 - }, - { - "__id__": 76 - }, - { - "__id__": 78 - } - ], - "_prefab": { - "__id__": 80 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 11.501, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 67 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 69 - }, - { - "__id__": 71 - } - ], - "_prefab": { - "__id__": 73 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 68 - }, - "_enabled": true, - "__prefab": { - "__id__": 70 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "27oTqu9DpKyZTDEjeIpTic" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 68 - }, - "_enabled": true, - "__prefab": { - "__id__": 72 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@57d74", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "42eAENi0lA9abiqexu4QZp" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "6bbctH+DFMNqaL9I1zaCz2", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 75 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a6drg5nyhCXa6Msjd4VlbS" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 77 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@91cea", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9biuznL/1MTYsRktD6U7dm" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 79 - }, - "_barSprite": { - "__id__": 71 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2bn/FXXtFJFrIGSr70IEKr" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3byp9KQYtJwbSne6rm9Ehd", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "power", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 82 - } - ], - "_active": true, - "_components": [ - { - "__id__": 88 - }, - { - "__id__": 90 - }, - { - "__id__": 92 - } - ], - "_prefab": { - "__id__": 94 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 4.35, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 81 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 83 - }, - { - "__id__": 85 - } - ], - "_prefab": { - "__id__": 87 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 82 - }, - "_enabled": true, - "__prefab": { - "__id__": 84 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "089LwDeAJI9YBFXZ+rj55/" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 82 - }, - "_enabled": true, - "__prefab": { - "__id__": 86 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@44c8a", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c8ko9fLFxLLZvNXaqMAYmt" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "12UbKqfbdK+I4Ztc2AEKBb", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 89 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f7aJwKMtFBMaiNhVxliUjK" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 91 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@0e130", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bqfaWtu5Pc59TltUPU0Qz" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 93 - }, - "_barSprite": { - "__id__": 85 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "944EHFFCVKXZhjfrX/U6d6" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "f0V2e4iQVGLpPQ5JBKrHS2", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "hp", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 96 - } - ], - "_active": true, - "_components": [ - { - "__id__": 102 - }, - { - "__id__": 104 - }, - { - "__id__": 106 - } - ], - "_prefab": { - "__id__": 108 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 8.374, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 95 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 97 - }, - { - "__id__": 99 - } - ], - "_prefab": { - "__id__": 101 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 98 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9axa4gMy5Kbad6stqZ+SAG" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 100 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@dfad9", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1cLzIHVZRO+Ii8ttq59M+T" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a0wEhcNLhD+IDHf2Qw1evR", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 103 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5aYoZ5//FHY6gt2oYd2VMi" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 105 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@cf09c", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3cRRRdgb5Hu5ukrZsnkzDT" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 107 - }, - "_barSprite": { - "__id__": 99 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a8uvMK8YZEOZSQLEDUdLSV" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "77Bjz/hNxHpLcin77Qbom+", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "info", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 110 - } - ], - "_prefab": { - "__id__": 112 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -22.293000000000006, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1.0000000000000002, - "y": 1.0000000000000002, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 109 - }, - "_enabled": true, - "__prefab": { - "__id__": 111 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1ewoZWMGBI/bik0PxxYqwZ" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "13tCM5xGJNy60bet2r3YWs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 66 - }, - "_enabled": true, - "__prefab": { - "__id__": 114 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2568IukZtAMZFpE7hnPF85" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "835YAd7qZMcbtbfUhGK1YY", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 117 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 80 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 119 - }, - "enabledContactListener": true, - "bullet": true, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d8rVs6intBQ7lRU8Dw4zXV" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 121 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": false, - "_friction": 1, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 8.6, - "y": 25 - }, - "_size": { - "__type__": "cc.Size", - "width": 25.9, - "height": 28.7 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b2Dt9lJI9FyJCDezkDBPBl" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 123 - }, - "animator": { - "__id__": 21 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "46FJLmpgVLCa/mYD0s7szo" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 125 - }, - "hitFlashMaterial": { - "__uuid__": "a8f34051-ccff-4050-b9d9-234f62977264", - "__expectedType__": "cc.Material" - }, - "BoxRang": { - "__id__": 2 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cbRsdp1gxNzKvEPJaHAcQG" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/k2.prefab.meta b/assets/resources/game/hero/k2.prefab.meta deleted file mode 100644 index 58ef9131..00000000 --- a/assets/resources/game/hero/k2.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "a8760bab-f809-4133-b186-cbb767841074", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "k2" - } -} diff --git a/assets/resources/game/hero/knight/k1.meta b/assets/resources/game/hero/knight/k1.meta deleted file mode 100644 index aad00df3..00000000 --- a/assets/resources/game/hero/knight/k1.meta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ver": "1.2.0", - "importer": "directory", - "imported": true, - "uuid": "d3ad0b28-cf92-4217-8823-3b1f52605d7a", - "files": [], - "subMetas": {}, - "userData": {} -} diff --git a/assets/resources/game/hero/knight/k1/atk.anim b/assets/resources/game/hero/knight/k1/atk.anim deleted file mode 100644 index 781b47f2..00000000 --- a/assets/resources/game/hero/knight/k1/atk.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@9a470", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@c4ce3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@eb99c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@548da", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@8401f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@cc0e6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d3762", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@ebb52", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@78440", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@c8b49", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d4d3e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@310ee", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/knight/k1/atk.anim.meta b/assets/resources/game/hero/knight/k1/atk.anim.meta deleted file mode 100644 index 9189ec0c..00000000 --- a/assets/resources/game/hero/knight/k1/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"e9a7693a-b745-41ea-a3e5-6be2b9106d55","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/knight/k1/idle.anim b/assets/resources/game/hero/knight/k1/idle.anim deleted file mode 100644 index b2c17d69..00000000 --- a/assets/resources/game/hero/knight/k1/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 2, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@ce6cb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@2d977", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@731b5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d4e2e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@76883", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@7a6f3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@1f897", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@bd0c9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@99866", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@dc5bd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d91dd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@1e0b9", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/knight/k1/idle.anim.meta b/assets/resources/game/hero/knight/k1/idle.anim.meta deleted file mode 100644 index 1e13631e..00000000 --- a/assets/resources/game/hero/knight/k1/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"02a1a021-ade6-4768-abcf-a2915f4baac7","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/knight/k1/k1.plist b/assets/resources/game/hero/knight/k1/k1.plist deleted file mode 100644 index 4ccb9508..00000000 --- a/assets/resources/game/hero/knight/k1/k1.plist +++ /dev/null @@ -1,926 +0,0 @@ - - - - - frames - - Attacking_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,0},{104,76}} - textureRotated - - - Attacking_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,0},{104,76}} - textureRotated - - - Attacking_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,0},{104,76}} - textureRotated - - - Attacking_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,0},{104,76}} - textureRotated - - - Attacking_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,76},{104,76}} - textureRotated - - - Attacking_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,76},{104,76}} - textureRotated - - - Attacking_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,76},{104,76}} - textureRotated - - - Attacking_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,76},{104,76}} - textureRotated - - - Attacking_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,152},{104,76}} - textureRotated - - - Attacking_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,152},{104,76}} - textureRotated - - - Attacking_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,152},{104,76}} - textureRotated - - - Attacking_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,152},{104,76}} - textureRotated - - - Idle Blink_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,0},{104,76}} - textureRotated - - - Idle Blink_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,228},{104,76}} - textureRotated - - - Idle Blink_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,228},{104,76}} - textureRotated - - - Idle Blink_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,228},{104,76}} - textureRotated - - - Idle Blink_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,228},{104,76}} - textureRotated - - - Idle Blink_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,304},{104,76}} - textureRotated - - - Idle Blink_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,304},{104,76}} - textureRotated - - - Idle Blink_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,304},{104,76}} - textureRotated - - - Idle Blink_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,304},{104,76}} - textureRotated - - - Idle Blink_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,380},{104,76}} - textureRotated - - - Idle Blink_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,380},{104,76}} - textureRotated - - - Idle Blink_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,380},{104,76}} - textureRotated - - - Taunt_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,0},{104,76}} - textureRotated - - - Taunt_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,380},{104,76}} - textureRotated - - - Taunt_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,456},{104,76}} - textureRotated - - - Taunt_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,456},{104,76}} - textureRotated - - - Taunt_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,456},{104,76}} - textureRotated - - - Taunt_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,456},{104,76}} - textureRotated - - - Taunt_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,532},{104,76}} - textureRotated - - - Taunt_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,532},{104,76}} - textureRotated - - - Taunt_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,532},{104,76}} - textureRotated - - - Taunt_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,532},{104,76}} - textureRotated - - - Taunt_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,608},{104,76}} - textureRotated - - - Taunt_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,608},{104,76}} - textureRotated - - - Taunt_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,608},{104,76}} - textureRotated - - - Taunt_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,608},{104,76}} - textureRotated - - - Taunt_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,684},{104,76}} - textureRotated - - - Taunt_015.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,684},{104,76}} - textureRotated - - - Taunt_016.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,684},{104,76}} - textureRotated - - - Taunt_017.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,684},{104,76}} - textureRotated - - - Walking_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,760},{104,76}} - textureRotated - - - Walking_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,760},{104,76}} - textureRotated - - - Walking_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,760},{104,76}} - textureRotated - - - Walking_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,760},{104,76}} - textureRotated - - - Walking_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,836},{104,76}} - textureRotated - - - Walking_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,836},{104,76}} - textureRotated - - - Walking_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,836},{104,76}} - textureRotated - - - Walking_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,836},{104,76}} - textureRotated - - - Walking_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,912},{104,76}} - textureRotated - - - Walking_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,912},{104,76}} - textureRotated - - - Walking_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,912},{104,76}} - textureRotated - - - Walking_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,912},{104,76}} - textureRotated - - - Walking_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,988},{104,76}} - textureRotated - - - Walking_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,988},{104,76}} - textureRotated - - - Walking_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,988},{104,76}} - textureRotated - - - Walking_015.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,988},{104,76}} - textureRotated - - - Walking_016.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,1064},{104,76}} - textureRotated - - - Walking_017.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,1064},{104,76}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - k1.png - size - {416,1140} - smartupdate - $TexturePacker:SmartUpdate:914a97049b261fea61f7f0265853a220:2d199b94c37b9a51f8d1a5e89997bfe0:1aa4bbf31d486f7541845cc4a9a42532$ - textureFileName - k1.png - - - diff --git a/assets/resources/game/hero/knight/k1/k1.plist.meta b/assets/resources/game/hero/knight/k1/k1.plist.meta deleted file mode 100644 index e362183a..00000000 --- a/assets/resources/game/hero/knight/k1/k1.plist.meta +++ /dev/null @@ -1,2777 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9", - "files": [ - ".json" - ], - "subMetas": { - "26428": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@26428", - "displayName": "", - "id": "26428", - "name": "Taunt_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 380, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50949": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@50949", - "displayName": "", - "id": "50949", - "name": "Taunt_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 532, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60134": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@60134", - "displayName": "", - "id": "60134", - "name": "Walking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 912, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60799": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@60799", - "displayName": "", - "id": "60799", - "name": "Taunt_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "76883": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@76883", - "displayName": "", - "id": "76883", - "name": "Idle Blink_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 228, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "78440": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@78440", - "displayName": "", - "id": "78440", - "name": "Attacking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 152, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "99866": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@99866", - "displayName": "", - "id": "99866", - "name": "Idle Blink_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 304, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9a470": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@9a470", - "displayName": "", - "id": "9a470", - "name": "Attacking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4ce3": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@c4ce3", - "displayName": "", - "id": "c4ce3", - "name": "Attacking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb99c": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@eb99c", - "displayName": "", - "id": "eb99c", - "name": "Attacking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "548da": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@548da", - "displayName": "", - "id": "548da", - "name": "Attacking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8401f": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@8401f", - "displayName": "", - "id": "8401f", - "name": "Attacking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 76, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cc0e6": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@cc0e6", - "displayName": "", - "id": "cc0e6", - "name": "Attacking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 76, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d3762": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d3762", - "displayName": "", - "id": "d3762", - "name": "Attacking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 76, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ebb52": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@ebb52", - "displayName": "", - "id": "ebb52", - "name": "Attacking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 76, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c8b49": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@c8b49", - "displayName": "", - "id": "c8b49", - "name": "Attacking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 152, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d4d3e": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d4d3e", - "displayName": "", - "id": "d4d3e", - "name": "Attacking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 152, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "310ee": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@310ee", - "displayName": "", - "id": "310ee", - "name": "Attacking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 152, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ce6cb": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@ce6cb", - "displayName": "", - "id": "ce6cb", - "name": "Idle Blink_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2d977": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@2d977", - "displayName": "", - "id": "2d977", - "name": "Idle Blink_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 228, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "731b5": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@731b5", - "displayName": "", - "id": "731b5", - "name": "Idle Blink_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 228, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d4e2e": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d4e2e", - "displayName": "", - "id": "d4e2e", - "name": "Idle Blink_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 228, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7a6f3": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@7a6f3", - "displayName": "", - "id": "7a6f3", - "name": "Idle Blink_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 304, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1f897": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@1f897", - "displayName": "", - "id": "1f897", - "name": "Idle Blink_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 304, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bd0c9": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@bd0c9", - "displayName": "", - "id": "bd0c9", - "name": "Idle Blink_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 304, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dc5bd": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@dc5bd", - "displayName": "", - "id": "dc5bd", - "name": "Idle Blink_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 380, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d91dd": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d91dd", - "displayName": "", - "id": "d91dd", - "name": "Idle Blink_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 380, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1e0b9": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@1e0b9", - "displayName": "", - "id": "1e0b9", - "name": "Idle Blink_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 380, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "daa98": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@daa98", - "displayName": "", - "id": "daa98", - "name": "Taunt_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 456, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0779a": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@0779a", - "displayName": "", - "id": "0779a", - "name": "Taunt_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 456, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5eb28": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@5eb28", - "displayName": "", - "id": "5eb28", - "name": "Taunt_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 456, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a538": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@1a538", - "displayName": "", - "id": "1a538", - "name": "Taunt_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 456, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe61e": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@fe61e", - "displayName": "", - "id": "fe61e", - "name": "Taunt_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 532, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1415": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d1415", - "displayName": "", - "id": "d1415", - "name": "Taunt_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 532, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6823d": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@6823d", - "displayName": "", - "id": "6823d", - "name": "Taunt_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 532, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e496c": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@e496c", - "displayName": "", - "id": "e496c", - "name": "Taunt_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 608, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "648f3": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@648f3", - "displayName": "", - "id": "648f3", - "name": "Taunt_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 608, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e4e1": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@9e4e1", - "displayName": "", - "id": "9e4e1", - "name": "Taunt_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 608, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f27c8": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@f27c8", - "displayName": "", - "id": "f27c8", - "name": "Taunt_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 608, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fce75": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@fce75", - "displayName": "", - "id": "fce75", - "name": "Taunt_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 684, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a12c4": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@a12c4", - "displayName": "", - "id": "a12c4", - "name": "Taunt_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 684, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "956e1": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@956e1", - "displayName": "", - "id": "956e1", - "name": "Taunt_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 684, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d0912": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d0912", - "displayName": "", - "id": "d0912", - "name": "Taunt_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 684, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02dd6": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@02dd6", - "displayName": "", - "id": "02dd6", - "name": "Walking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 760, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d9c8": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@6d9c8", - "displayName": "", - "id": "6d9c8", - "name": "Walking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 760, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "418cb": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@418cb", - "displayName": "", - "id": "418cb", - "name": "Walking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 760, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f6da": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@4f6da", - "displayName": "", - "id": "4f6da", - "name": "Walking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 760, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dabad": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@dabad", - "displayName": "", - "id": "dabad", - "name": "Walking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 836, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69e31": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@69e31", - "displayName": "", - "id": "69e31", - "name": "Walking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 836, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7990": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@b7990", - "displayName": "", - "id": "b7990", - "name": "Walking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 836, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f6bf0": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@f6bf0", - "displayName": "", - "id": "f6bf0", - "name": "Walking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 836, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6698a": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@6698a", - "displayName": "", - "id": "6698a", - "name": "Walking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 912, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8564d": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@8564d", - "displayName": "", - "id": "8564d", - "name": "Walking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 912, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "272a0": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@272a0", - "displayName": "", - "id": "272a0", - "name": "Walking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 912, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba3ee": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@ba3ee", - "displayName": "", - "id": "ba3ee", - "name": "Walking_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 988, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff098": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@ff098", - "displayName": "", - "id": "ff098", - "name": "Walking_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 988, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07703": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@07703", - "displayName": "", - "id": "07703", - "name": "Walking_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 988, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14ae6": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@14ae6", - "displayName": "", - "id": "14ae6", - "name": "Walking_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 988, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79ab7": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@79ab7", - "displayName": "", - "id": "79ab7", - "name": "Walking_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1064, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d708": { - "importer": "sprite-frame", - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@5d708", - "displayName": "", - "id": "5d708", - "name": "Walking_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 1064, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "atlasUuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "k1.png", - "format": 3, - "uuid": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9", - "textureUuid": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a" - } -} diff --git a/assets/resources/game/hero/knight/k1/k1.png b/assets/resources/game/hero/knight/k1/k1.png deleted file mode 100644 index cbbd1cfd..00000000 Binary files a/assets/resources/game/hero/knight/k1/k1.png and /dev/null differ diff --git a/assets/resources/game/hero/knight/k1/k1.png.meta b/assets/resources/game/hero/knight/k1/k1.png.meta deleted file mode 100644 index 2d3e50a8..00000000 --- a/assets/resources/game/hero/knight/k1/k1.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "c527ecf0-3956-4e52-9f28-946bd3289845", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a", - "displayName": "k1", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "c527ecf0-3956-4e52-9f28-946bd3289845", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "c527ecf0-3956-4e52-9f28-946bd3289845@6c48a" - } -} diff --git a/assets/resources/game/hero/knight/k1/max.anim b/assets/resources/game/hero/knight/k1/max.anim deleted file mode 100644 index a180c3ff..00000000 --- a/assets/resources/game/hero/knight/k1/max.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@9a470", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@c4ce3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@eb99c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@548da", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@8401f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@cc0e6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d3762", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@ebb52", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@78440", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@c8b49", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@d4d3e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@310ee", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/knight/k1/max.anim.meta b/assets/resources/game/hero/knight/k1/max.anim.meta deleted file mode 100644 index d6d129db..00000000 --- a/assets/resources/game/hero/knight/k1/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"fdaaf598-0dfb-4704-8d6c-f96ee98efda6","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/knight/k1/move.anim b/assets/resources/game/hero/knight/k1/move.anim deleted file mode 100644 index 845c4825..00000000 --- a/assets/resources/game/hero/knight/k1/move.anim +++ /dev/null @@ -1,163 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.75, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333, - 0.5, - 0.5416666666666666, - 0.5833333333333334, - 0.625, - 0.6666666666666666, - 0.7083333333333334 - ], - "_values": [ - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@02dd6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@6d9c8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@418cb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@4f6da", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@dabad", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@69e31", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@b7990", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@f6bf0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@6698a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@60134", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@8564d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@272a0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@ba3ee", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@ff098", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@07703", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@14ae6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@79ab7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "b3f76ae2-2f7f-403e-9952-a60d57b1e6e9@5d708", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/knight/k1/move.anim.meta b/assets/resources/game/hero/knight/k1/move.anim.meta deleted file mode 100644 index 1ae877dd..00000000 --- a/assets/resources/game/hero/knight/k1/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"d452be2c-ac8f-4ee6-9353-034c951b71f4","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/knight/k2.meta b/assets/resources/game/hero/knight/k2.meta deleted file mode 100644 index d76b0b54..00000000 --- a/assets/resources/game/hero/knight/k2.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"0999ed8a-9a6f-4a65-bd20-c1503521f427","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/knight/k2/atk.anim b/assets/resources/game/hero/knight/k2/atk.anim deleted file mode 100644 index ea9cd4e2..00000000 --- a/assets/resources/game/hero/knight/k2/atk.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@9a470", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@c4ce3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@eb99c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@548da", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@8401f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@cc0e6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d3762", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@ebb52", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@78440", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@c8b49", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d4d3e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@310ee", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/knight/k2/atk.anim.meta b/assets/resources/game/hero/knight/k2/atk.anim.meta deleted file mode 100644 index e9a4265b..00000000 --- a/assets/resources/game/hero/knight/k2/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c6ee136d-3b00-4e43-9e4a-139b36a59579","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/knight/k2/idle.anim b/assets/resources/game/hero/knight/k2/idle.anim deleted file mode 100644 index cdd0c03b..00000000 --- a/assets/resources/game/hero/knight/k2/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 2, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@ce6cb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@2d977", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@731b5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d4e2e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@76883", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@7a6f3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@1f897", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@bd0c9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@99866", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@dc5bd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d91dd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@1e0b9", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/knight/k2/idle.anim.meta b/assets/resources/game/hero/knight/k2/idle.anim.meta deleted file mode 100644 index 78036d78..00000000 --- a/assets/resources/game/hero/knight/k2/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"583f1d7a-7745-4655-9103-737e79431448","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/knight/k2/k2.plist b/assets/resources/game/hero/knight/k2/k2.plist deleted file mode 100644 index b667b851..00000000 --- a/assets/resources/game/hero/knight/k2/k2.plist +++ /dev/null @@ -1,926 +0,0 @@ - - - - - frames - - Attacking_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,0},{104,76}} - textureRotated - - - Attacking_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,0},{104,76}} - textureRotated - - - Attacking_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,0},{104,76}} - textureRotated - - - Attacking_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,0},{104,76}} - textureRotated - - - Attacking_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,76},{104,76}} - textureRotated - - - Attacking_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,76},{104,76}} - textureRotated - - - Attacking_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,76},{104,76}} - textureRotated - - - Attacking_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,76},{104,76}} - textureRotated - - - Attacking_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,152},{104,76}} - textureRotated - - - Attacking_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,152},{104,76}} - textureRotated - - - Attacking_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,152},{104,76}} - textureRotated - - - Attacking_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,152},{104,76}} - textureRotated - - - Idle Blink_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,0},{104,76}} - textureRotated - - - Idle Blink_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,228},{104,76}} - textureRotated - - - Idle Blink_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,228},{104,76}} - textureRotated - - - Idle Blink_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,228},{104,76}} - textureRotated - - - Idle Blink_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,228},{104,76}} - textureRotated - - - Idle Blink_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,304},{104,76}} - textureRotated - - - Idle Blink_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,304},{104,76}} - textureRotated - - - Idle Blink_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,304},{104,76}} - textureRotated - - - Idle Blink_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,304},{104,76}} - textureRotated - - - Idle Blink_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,380},{104,76}} - textureRotated - - - Idle Blink_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,380},{104,76}} - textureRotated - - - Idle Blink_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,380},{104,76}} - textureRotated - - - Taunt_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,0},{104,76}} - textureRotated - - - Taunt_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,380},{104,76}} - textureRotated - - - Taunt_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,456},{104,76}} - textureRotated - - - Taunt_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,456},{104,76}} - textureRotated - - - Taunt_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,456},{104,76}} - textureRotated - - - Taunt_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,456},{104,76}} - textureRotated - - - Taunt_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,532},{104,76}} - textureRotated - - - Taunt_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,532},{104,76}} - textureRotated - - - Taunt_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,532},{104,76}} - textureRotated - - - Taunt_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,532},{104,76}} - textureRotated - - - Taunt_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,608},{104,76}} - textureRotated - - - Taunt_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,608},{104,76}} - textureRotated - - - Taunt_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,608},{104,76}} - textureRotated - - - Taunt_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,608},{104,76}} - textureRotated - - - Taunt_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,684},{104,76}} - textureRotated - - - Taunt_015.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,684},{104,76}} - textureRotated - - - Taunt_016.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,684},{104,76}} - textureRotated - - - Taunt_017.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,684},{104,76}} - textureRotated - - - Walking_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,760},{104,76}} - textureRotated - - - Walking_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,760},{104,76}} - textureRotated - - - Walking_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,760},{104,76}} - textureRotated - - - Walking_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,760},{104,76}} - textureRotated - - - Walking_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,836},{104,76}} - textureRotated - - - Walking_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,836},{104,76}} - textureRotated - - - Walking_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,836},{104,76}} - textureRotated - - - Walking_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,836},{104,76}} - textureRotated - - - Walking_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,912},{104,76}} - textureRotated - - - Walking_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,912},{104,76}} - textureRotated - - - Walking_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,912},{104,76}} - textureRotated - - - Walking_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,912},{104,76}} - textureRotated - - - Walking_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,988},{104,76}} - textureRotated - - - Walking_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,988},{104,76}} - textureRotated - - - Walking_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{208,988},{104,76}} - textureRotated - - - Walking_015.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{312,988},{104,76}} - textureRotated - - - Walking_016.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{0,1064},{104,76}} - textureRotated - - - Walking_017.png - - aliases - - spriteOffset - {0,0} - spriteSize - {104,76} - spriteSourceSize - {104,76} - textureRect - {{104,1064},{104,76}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - k2.png - size - {416,1140} - smartupdate - $TexturePacker:SmartUpdate:bf58050d81fd273f7ea5d838bd6487e8:f311fafe266a4e3403bbede9e40dd37b:c38fdad857a9ddc3aea6743219a4fe08$ - textureFileName - k2.png - - - diff --git a/assets/resources/game/hero/knight/k2/k2.plist.meta b/assets/resources/game/hero/knight/k2/k2.plist.meta deleted file mode 100644 index 83d16306..00000000 --- a/assets/resources/game/hero/knight/k2/k2.plist.meta +++ /dev/null @@ -1,2777 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa", - "files": [ - ".json" - ], - "subMetas": { - "26428": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@26428", - "displayName": "", - "id": "26428", - "name": "Taunt_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 380, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50949": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@50949", - "displayName": "", - "id": "50949", - "name": "Taunt_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 532, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60134": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@60134", - "displayName": "", - "id": "60134", - "name": "Walking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 912, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60799": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@60799", - "displayName": "", - "id": "60799", - "name": "Taunt_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "76883": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@76883", - "displayName": "", - "id": "76883", - "name": "Idle Blink_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 228, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "78440": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@78440", - "displayName": "", - "id": "78440", - "name": "Attacking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 152, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "99866": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@99866", - "displayName": "", - "id": "99866", - "name": "Idle Blink_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 304, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9a470": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@9a470", - "displayName": "", - "id": "9a470", - "name": "Attacking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4ce3": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@c4ce3", - "displayName": "", - "id": "c4ce3", - "name": "Attacking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb99c": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@eb99c", - "displayName": "", - "id": "eb99c", - "name": "Attacking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "548da": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@548da", - "displayName": "", - "id": "548da", - "name": "Attacking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8401f": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@8401f", - "displayName": "", - "id": "8401f", - "name": "Attacking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 76, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cc0e6": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@cc0e6", - "displayName": "", - "id": "cc0e6", - "name": "Attacking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 76, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d3762": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d3762", - "displayName": "", - "id": "d3762", - "name": "Attacking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 76, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ebb52": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@ebb52", - "displayName": "", - "id": "ebb52", - "name": "Attacking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 76, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c8b49": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@c8b49", - "displayName": "", - "id": "c8b49", - "name": "Attacking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 152, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d4d3e": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d4d3e", - "displayName": "", - "id": "d4d3e", - "name": "Attacking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 152, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "310ee": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@310ee", - "displayName": "", - "id": "310ee", - "name": "Attacking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 152, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ce6cb": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@ce6cb", - "displayName": "", - "id": "ce6cb", - "name": "Idle Blink_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2d977": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@2d977", - "displayName": "", - "id": "2d977", - "name": "Idle Blink_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 228, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "731b5": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@731b5", - "displayName": "", - "id": "731b5", - "name": "Idle Blink_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 228, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d4e2e": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d4e2e", - "displayName": "", - "id": "d4e2e", - "name": "Idle Blink_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 228, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7a6f3": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@7a6f3", - "displayName": "", - "id": "7a6f3", - "name": "Idle Blink_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 304, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1f897": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@1f897", - "displayName": "", - "id": "1f897", - "name": "Idle Blink_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 304, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bd0c9": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@bd0c9", - "displayName": "", - "id": "bd0c9", - "name": "Idle Blink_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 304, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dc5bd": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@dc5bd", - "displayName": "", - "id": "dc5bd", - "name": "Idle Blink_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 380, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d91dd": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d91dd", - "displayName": "", - "id": "d91dd", - "name": "Idle Blink_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 380, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1e0b9": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@1e0b9", - "displayName": "", - "id": "1e0b9", - "name": "Idle Blink_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 380, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "daa98": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@daa98", - "displayName": "", - "id": "daa98", - "name": "Taunt_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 456, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0779a": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@0779a", - "displayName": "", - "id": "0779a", - "name": "Taunt_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 456, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5eb28": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@5eb28", - "displayName": "", - "id": "5eb28", - "name": "Taunt_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 456, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a538": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@1a538", - "displayName": "", - "id": "1a538", - "name": "Taunt_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 456, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe61e": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@fe61e", - "displayName": "", - "id": "fe61e", - "name": "Taunt_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 532, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1415": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d1415", - "displayName": "", - "id": "d1415", - "name": "Taunt_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 532, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6823d": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@6823d", - "displayName": "", - "id": "6823d", - "name": "Taunt_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 532, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e496c": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@e496c", - "displayName": "", - "id": "e496c", - "name": "Taunt_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 608, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "648f3": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@648f3", - "displayName": "", - "id": "648f3", - "name": "Taunt_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 608, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e4e1": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@9e4e1", - "displayName": "", - "id": "9e4e1", - "name": "Taunt_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 608, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f27c8": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@f27c8", - "displayName": "", - "id": "f27c8", - "name": "Taunt_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 608, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fce75": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@fce75", - "displayName": "", - "id": "fce75", - "name": "Taunt_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 684, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a12c4": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@a12c4", - "displayName": "", - "id": "a12c4", - "name": "Taunt_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 684, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "956e1": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@956e1", - "displayName": "", - "id": "956e1", - "name": "Taunt_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 684, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d0912": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d0912", - "displayName": "", - "id": "d0912", - "name": "Taunt_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 684, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02dd6": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@02dd6", - "displayName": "", - "id": "02dd6", - "name": "Walking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 760, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d9c8": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@6d9c8", - "displayName": "", - "id": "6d9c8", - "name": "Walking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 760, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "418cb": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@418cb", - "displayName": "", - "id": "418cb", - "name": "Walking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 760, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f6da": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@4f6da", - "displayName": "", - "id": "4f6da", - "name": "Walking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 760, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dabad": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@dabad", - "displayName": "", - "id": "dabad", - "name": "Walking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 836, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69e31": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@69e31", - "displayName": "", - "id": "69e31", - "name": "Walking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 836, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7990": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@b7990", - "displayName": "", - "id": "b7990", - "name": "Walking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 836, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f6bf0": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@f6bf0", - "displayName": "", - "id": "f6bf0", - "name": "Walking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 836, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6698a": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@6698a", - "displayName": "", - "id": "6698a", - "name": "Walking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 912, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8564d": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@8564d", - "displayName": "", - "id": "8564d", - "name": "Walking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 912, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "272a0": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@272a0", - "displayName": "", - "id": "272a0", - "name": "Walking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 912, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba3ee": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@ba3ee", - "displayName": "", - "id": "ba3ee", - "name": "Walking_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 988, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff098": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@ff098", - "displayName": "", - "id": "ff098", - "name": "Walking_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 988, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07703": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@07703", - "displayName": "", - "id": "07703", - "name": "Walking_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 208, - "trimY": 988, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14ae6": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@14ae6", - "displayName": "", - "id": "14ae6", - "name": "Walking_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 312, - "trimY": 988, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79ab7": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@79ab7", - "displayName": "", - "id": "79ab7", - "name": "Walking_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1064, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d708": { - "importer": "sprite-frame", - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@5d708", - "displayName": "", - "id": "5d708", - "name": "Walking_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 104, - "trimY": 1064, - "width": 104, - "height": 76, - "rawWidth": 104, - "rawHeight": 76, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "atlasUuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "k2.png", - "format": 3, - "uuid": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa", - "textureUuid": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a" - } -} diff --git a/assets/resources/game/hero/knight/k2/k2.png b/assets/resources/game/hero/knight/k2/k2.png deleted file mode 100644 index f79ff283..00000000 Binary files a/assets/resources/game/hero/knight/k2/k2.png and /dev/null differ diff --git a/assets/resources/game/hero/knight/k2/k2.png.meta b/assets/resources/game/hero/knight/k2/k2.png.meta deleted file mode 100644 index ab32cf85..00000000 --- a/assets/resources/game/hero/knight/k2/k2.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "37006cc5-4676-47f2-8eae-513cfc3bd48f", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a", - "displayName": "k2", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "37006cc5-4676-47f2-8eae-513cfc3bd48f", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "37006cc5-4676-47f2-8eae-513cfc3bd48f@6c48a" - } -} diff --git a/assets/resources/game/hero/knight/k2/max.anim b/assets/resources/game/hero/knight/k2/max.anim deleted file mode 100644 index 3c39f87a..00000000 --- a/assets/resources/game/hero/knight/k2/max.anim +++ /dev/null @@ -1,163 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 1, - "enableTrsBlending": false, - "_duration": 0.75, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333, - 0.5, - 0.5416666666666666, - 0.5833333333333334, - 0.625, - 0.6666666666666666, - 0.7083333333333334 - ], - "_values": [ - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@60799", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@26428", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@daa98", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@0779a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@5eb28", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@1a538", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@fe61e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d1415", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@6823d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@50949", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@e496c", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@648f3", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@9e4e1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@f27c8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@fce75", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@a12c4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@956e1", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@d0912", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/knight/k2/max.anim.meta b/assets/resources/game/hero/knight/k2/max.anim.meta deleted file mode 100644 index 39bb81a5..00000000 --- a/assets/resources/game/hero/knight/k2/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"0751b212-b8a2-450f-849d-b11c2103008e","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/knight/k2/move.anim b/assets/resources/game/hero/knight/k2/move.anim deleted file mode 100644 index 24577ca2..00000000 --- a/assets/resources/game/hero/knight/k2/move.anim +++ /dev/null @@ -1,163 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 2, - "enableTrsBlending": false, - "_duration": 0.75, - "_hash": 500763545, - "_tracks": [ - { - "__id__": 1 - } - ], - "_exoticAnimation": null, - "_events": [], - "_embeddedPlayers": [], - "_additiveSettings": { - "__id__": 6 - }, - "_auxiliaryCurveEntries": [] - }, - { - "__type__": "cc.animation.ObjectTrack", - "_binding": { - "__type__": "cc.animation.TrackBinding", - "path": { - "__id__": 2 - }, - "proxy": null - }, - "_channel": { - "__id__": 4 - } - }, - { - "__type__": "cc.animation.TrackPath", - "_paths": [ - { - "__id__": 3 - }, - "spriteFrame" - ] - }, - { - "__type__": "cc.animation.ComponentPath", - "component": "cc.Sprite" - }, - { - "__type__": "cc.animation.Channel", - "_curve": { - "__id__": 5 - } - }, - { - "__type__": "cc.ObjectCurve", - "_times": [ - 0, - 0.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333, - 0.5, - 0.5416666666666666, - 0.5833333333333334, - 0.625, - 0.6666666666666666, - 0.7083333333333334 - ], - "_values": [ - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@02dd6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@6d9c8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@418cb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@4f6da", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@dabad", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@69e31", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@b7990", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@f6bf0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@6698a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@60134", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@8564d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@272a0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@ba3ee", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@ff098", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@07703", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@14ae6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@79ab7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "668cb87e-e7d4-4d94-ae45-0e5e2335ddaa@5d708", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/knight/k2/move.anim.meta b/assets/resources/game/hero/knight/k2/move.anim.meta deleted file mode 100644 index 4eb86b29..00000000 --- a/assets/resources/game/hero/knight/k2/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1d09221a-a327-41b8-98bd-0fd5777e73fb","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/knight/k4.meta b/assets/resources/game/hero/knight/k4.meta deleted file mode 100644 index f5e319ad..00000000 --- a/assets/resources/game/hero/knight/k4.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"6bda2a74-10da-47e9-b73c-867d5b4df08a","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/knight/k4/atk.anim b/assets/resources/game/hero/knight/k4/atk.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k4/atk.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k4/atk.anim.meta b/assets/resources/game/hero/knight/k4/atk.anim.meta deleted file mode 100644 index 84c09796..00000000 --- a/assets/resources/game/hero/knight/k4/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"4ae6b4e8-c8d5-41d8-be4e-500b97173dfc","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/knight/k4/idle.anim b/assets/resources/game/hero/knight/k4/idle.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k4/idle.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k4/idle.anim.meta b/assets/resources/game/hero/knight/k4/idle.anim.meta deleted file mode 100644 index d6f8a685..00000000 --- a/assets/resources/game/hero/knight/k4/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"4738d0a8-5894-4f1e-98db-bff9423f821c","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/knight/k4/k4.plist b/assets/resources/game/hero/knight/k4/k4.plist deleted file mode 100644 index b0246cd8..00000000 --- a/assets/resources/game/hero/knight/k4/k4.plist +++ /dev/null @@ -1,926 +0,0 @@ - - - - - frames - - Attacking_000.png - - aliases - - spriteOffset - {4,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1167,1},{56,56}} - textureRotated - - - Attacking_001.png - - aliases - - spriteOffset - {-3,1} - spriteSize - {42,56} - spriteSourceSize - {96,68} - textureRect - {{1665,1},{42,56}} - textureRotated - - - Attacking_002.png - - aliases - - spriteOffset - {-5,2} - spriteSize - {42,58} - spriteSourceSize - {96,68} - textureRect - {{1143,61},{42,58}} - textureRotated - - - Attacking_003.png - - aliases - - spriteOffset - {-7,2} - spriteSize - {44,56} - spriteSourceSize - {96,68} - textureRect - {{1635,59},{44,56}} - textureRotated - - - Attacking_004.png - - aliases - - spriteOffset - {-9,2} - spriteSize - {46,56} - spriteSourceSize - {96,68} - textureRect - {{1617,1},{46,56}} - textureRotated - - - Attacking_005.png - - aliases - - spriteOffset - {-11,2} - spriteSize - {48,56} - spriteSourceSize - {96,68} - textureRect - {{1567,1},{48,56}} - textureRotated - - - Attacking_006.png - - aliases - - spriteOffset - {-12,2} - spriteSize - {48,56} - spriteSourceSize - {96,68} - textureRect - {{1585,59},{48,56}} - textureRotated - - - Attacking_007.png - - aliases - - spriteOffset - {-3,4} - spriteSize - {40,60} - spriteSourceSize - {96,68} - textureRect - {{1067,1},{40,60}} - textureRotated - - - Attacking_008.png - - aliases - - spriteOffset - {13,3} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{61,1},{66,58}} - textureRotated - - - Attacking_009.png - - aliases - - spriteOffset - {14,3} - spriteSize - {68,58} - spriteSourceSize - {96,68} - textureRect - {{1,1},{68,58}} - textureRotated - - - Attacking_010.png - - aliases - - spriteOffset - {13,3} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{121,1},{66,58}} - textureRotated - - - Attacking_011.png - - aliases - - spriteOffset - {10,2} - spriteSize - {62,58} - spriteSourceSize - {96,68} - textureRect - {{581,67},{62,58}} - textureRotated - - - Idle Blinking_000.png - - aliases - - spriteOffset - {4,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1167,1},{56,56}} - textureRotated - - - Idle Blinking_001.png - - aliases - - spriteOffset - {4,2} - spriteSize - {54,56} - spriteSourceSize - {96,68} - textureRect - {{1,71},{54,56}} - textureRotated - - - Idle Blinking_002.png - - aliases - - spriteOffset - {4,2} - spriteSize - {54,56} - spriteSourceSize - {96,68} - textureRect - {{59,71},{54,56}} - textureRotated - - - Idle Blinking_003.png - - aliases - - spriteOffset - {3,2} - spriteSize - {54,56} - spriteSourceSize - {96,68} - textureRect - {{1457,1},{54,56}} - textureRotated - - - Idle Blinking_004.png - - aliases - - spriteOffset - {2,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1187,59},{56,56}} - textureRotated - - - Idle Blinking_005.png - - aliases - - spriteOffset - {1,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1225,1},{56,56}} - textureRotated - - - Idle Blinking_006.png - - aliases - - spriteOffset - {1,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1245,59},{56,56}} - textureRotated - - - Idle Blinking_007.png - - aliases - - spriteOffset - {1,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1283,1},{56,56}} - textureRotated - - - Idle Blinking_008.png - - aliases - - spriteOffset - {2,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1303,59},{56,56}} - textureRotated - - - Idle Blinking_009.png - - aliases - - spriteOffset - {2,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1341,1},{56,56}} - textureRotated - - - Idle Blinking_010.png - - aliases - - spriteOffset - {3,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1361,59},{56,56}} - textureRotated - - - Idle Blinking_011.png - - aliases - - spriteOffset - {3,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1399,1},{56,56}} - textureRotated - - - Taunt_000.png - - aliases - - spriteOffset - {4,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1167,1},{56,56}} - textureRotated - - - Taunt_001.png - - aliases - - spriteOffset - {4,1} - spriteSize - {60,56} - spriteSourceSize - {96,68} - textureRect - {{1009,1},{60,56}} - textureRotated - - - Taunt_002.png - - aliases - - spriteOffset - {4,2} - spriteSize - {62,58} - spriteSourceSize - {96,68} - textureRect - {{645,67},{62,58}} - textureRotated - - - Taunt_003.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{181,1},{64,58}} - textureRotated - - - Taunt_004.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{185,67},{64,58}} - textureRotated - - - Taunt_005.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{241,1},{64,58}} - textureRotated - - - Taunt_006.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{251,67},{64,58}} - textureRotated - - - Taunt_007.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{301,1},{64,58}} - textureRotated - - - Taunt_008.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{317,67},{64,58}} - textureRotated - - - Taunt_009.png - - aliases - - spriteOffset - {5,2} - spriteSize - {62,58} - spriteSourceSize - {96,68} - textureRect - {{709,67},{62,58}} - textureRotated - - - Taunt_010.png - - aliases - - spriteOffset - {5,2} - spriteSize - {62,58} - spriteSourceSize - {96,68} - textureRect - {{773,67},{62,58}} - textureRotated - - - Taunt_011.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{361,1},{64,58}} - textureRotated - - - Taunt_012.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{383,67},{64,58}} - textureRotated - - - Taunt_013.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{421,1},{64,58}} - textureRotated - - - Taunt_014.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{449,67},{64,58}} - textureRotated - - - Taunt_015.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{481,1},{64,58}} - textureRotated - - - Taunt_016.png - - aliases - - spriteOffset - {4,2} - spriteSize - {62,58} - spriteSourceSize - {96,68} - textureRect - {{837,67},{62,58}} - textureRotated - - - Taunt_017.png - - aliases - - spriteOffset - {4,1} - spriteSize - {60,56} - spriteSourceSize - {96,68} - textureRect - {{1025,63},{60,56}} - textureRotated - - - Walking_000.png - - aliases - - spriteOffset - {2,2} - spriteSize - {50,56} - spriteSourceSize - {96,68} - textureRect - {{1533,59},{50,56}} - textureRotated - - - Walking_001.png - - aliases - - spriteOffset - {3,2} - spriteSize - {52,56} - spriteSourceSize - {96,68} - textureRect - {{1513,1},{52,56}} - textureRotated - - - Walking_002.png - - aliases - - spriteOffset - {4,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{1419,59},{56,56}} - textureRotated - - - Walking_003.png - - aliases - - spriteOffset - {5,2} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1083,63},{58,58}} - textureRotated - - - Walking_004.png - - aliases - - spriteOffset - {5,2} - spriteSize - {62,58} - spriteSourceSize - {96,68} - textureRect - {{901,67},{62,58}} - textureRotated - - - Walking_005.png - - aliases - - spriteOffset - {6,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{515,67},{64,58}} - textureRotated - - - Walking_006.png - - aliases - - spriteOffset - {7,2} - spriteSize - {64,56} - spriteSourceSize - {96,68} - textureRect - {{601,1},{64,56}} - textureRotated - - - Walking_007.png - - aliases - - spriteOffset - {7,2} - spriteSize - {66,56} - spriteSourceSize - {96,68} - textureRect - {{117,69},{66,56}} - textureRotated - - - Walking_008.png - - aliases - - spriteOffset - {9,2} - spriteSize - {64,56} - spriteSourceSize - {96,68} - textureRect - {{659,1},{64,56}} - textureRotated - - - Walking_009.png - - aliases - - spriteOffset - {9,2} - spriteSize - {64,56} - spriteSourceSize - {96,68} - textureRect - {{717,1},{64,56}} - textureRotated - - - Walking_010.png - - aliases - - spriteOffset - {9,2} - spriteSize - {64,56} - spriteSourceSize - {96,68} - textureRect - {{775,1},{64,56}} - textureRotated - - - Walking_011.png - - aliases - - spriteOffset - {8,2} - spriteSize - {64,56} - spriteSourceSize - {96,68} - textureRect - {{833,1},{64,56}} - textureRotated - - - Walking_012.png - - aliases - - spriteOffset - {7,2} - spriteSize - {64,56} - spriteSourceSize - {96,68} - textureRect - {{891,1},{64,56}} - textureRotated - - - Walking_013.png - - aliases - - spriteOffset - {6,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{541,1},{64,58}} - textureRotated - - - Walking_014.png - - aliases - - spriteOffset - {5,2} - spriteSize - {62,58} - spriteSourceSize - {96,68} - textureRect - {{949,1},{62,58}} - textureRotated - - - Walking_015.png - - aliases - - spriteOffset - {4,2} - spriteSize - {60,58} - spriteSourceSize - {96,68} - textureRect - {{965,65},{60,58}} - textureRotated - - - Walking_016.png - - aliases - - spriteOffset - {3,2} - spriteSize - {58,56} - spriteSourceSize - {96,68} - textureRect - {{1109,1},{58,56}} - textureRotated - - - Walking_017.png - - aliases - - spriteOffset - {3,2} - spriteSize - {54,56} - spriteSourceSize - {96,68} - textureRect - {{1477,59},{54,56}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - k4.png - size - {1708,126} - smartupdate - $TexturePacker:SmartUpdate:11623270127565c6ec8a81b358bb11ae:773e38f2730f78359dd50ead18adc93e:3942c0389c4401cc743f4888be8051ce$ - textureFileName - k4.png - - - diff --git a/assets/resources/game/hero/knight/k4/k4.plist.meta b/assets/resources/game/hero/knight/k4/k4.plist.meta deleted file mode 100644 index a742a233..00000000 --- a/assets/resources/game/hero/knight/k4/k4.plist.meta +++ /dev/null @@ -1,2777 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304", - "files": [ - ".json" - ], - "subMetas": { - "26428": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@26428", - "displayName": "", - "id": "26428", - "name": "Taunt_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 1, - "trimX": 1009, - "trimY": 1, - "width": 60, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50949": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@50949", - "displayName": "", - "id": "50949", - "name": "Taunt_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 2, - "trimX": 709, - "trimY": 67, - "width": 62, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "55628": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@55628", - "displayName": "", - "id": "55628", - "name": "Idle Blinking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 1, - "trimY": 71, - "width": 54, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60134": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@60134", - "displayName": "", - "id": "60134", - "name": "Walking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 9, - "offsetY": 2, - "trimX": 717, - "trimY": 1, - "width": 64, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60799": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@60799", - "displayName": "", - "id": "60799", - "name": "Taunt_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 1167, - "trimY": 1, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "78440": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@78440", - "displayName": "", - "id": "78440", - "name": "Attacking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 13, - "offsetY": 3, - "trimX": 61, - "trimY": 1, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9a470": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@9a470", - "displayName": "", - "id": "9a470", - "name": "Attacking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 1167, - "trimY": 1, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4ce3": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@c4ce3", - "displayName": "", - "id": "c4ce3", - "name": "Attacking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 1, - "trimX": 1665, - "trimY": 1, - "width": 42, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb99c": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@eb99c", - "displayName": "", - "id": "eb99c", - "name": "Attacking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -5, - "offsetY": 2, - "trimX": 1143, - "trimY": 61, - "width": 42, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "548da": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@548da", - "displayName": "", - "id": "548da", - "name": "Attacking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -7, - "offsetY": 2, - "trimX": 1635, - "trimY": 59, - "width": 44, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8401f": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@8401f", - "displayName": "", - "id": "8401f", - "name": "Attacking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -9, - "offsetY": 2, - "trimX": 1617, - "trimY": 1, - "width": 46, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cc0e6": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@cc0e6", - "displayName": "", - "id": "cc0e6", - "name": "Attacking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -11, - "offsetY": 2, - "trimX": 1567, - "trimY": 1, - "width": 48, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d3762": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@d3762", - "displayName": "", - "id": "d3762", - "name": "Attacking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -12, - "offsetY": 2, - "trimX": 1585, - "trimY": 59, - "width": 48, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ebb52": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@ebb52", - "displayName": "", - "id": "ebb52", - "name": "Attacking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 4, - "trimX": 1067, - "trimY": 1, - "width": 40, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c8b49": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@c8b49", - "displayName": "", - "id": "c8b49", - "name": "Attacking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 14, - "offsetY": 3, - "trimX": 1, - "trimY": 1, - "width": 68, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d4d3e": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@d4d3e", - "displayName": "", - "id": "d4d3e", - "name": "Attacking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 13, - "offsetY": 3, - "trimX": 121, - "trimY": 1, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "310ee": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@310ee", - "displayName": "", - "id": "310ee", - "name": "Attacking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 10, - "offsetY": 2, - "trimX": 581, - "trimY": 67, - "width": 62, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d58e": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@5d58e", - "displayName": "", - "id": "5d58e", - "name": "Idle Blinking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 1167, - "trimY": 1, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ffb7f": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@ffb7f", - "displayName": "", - "id": "ffb7f", - "name": "Idle Blinking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 59, - "trimY": 71, - "width": 54, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4b666": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@4b666", - "displayName": "", - "id": "4b666", - "name": "Idle Blinking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 1457, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4dcb3": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@4dcb3", - "displayName": "", - "id": "4dcb3", - "name": "Idle Blinking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 2, - "trimX": 1187, - "trimY": 59, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51cbc": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@51cbc", - "displayName": "", - "id": "51cbc", - "name": "Idle Blinking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 2, - "trimX": 1225, - "trimY": 1, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "11bc6": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@11bc6", - "displayName": "", - "id": "11bc6", - "name": "Idle Blinking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 2, - "trimX": 1245, - "trimY": 59, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b2558": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@b2558", - "displayName": "", - "id": "b2558", - "name": "Idle Blinking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 2, - "trimX": 1283, - "trimY": 1, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6d4a": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@d6d4a", - "displayName": "", - "id": "d6d4a", - "name": "Idle Blinking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 2, - "trimX": 1303, - "trimY": 59, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1b51c": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@1b51c", - "displayName": "", - "id": "1b51c", - "name": "Idle Blinking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 2, - "trimX": 1341, - "trimY": 1, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d437a": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@d437a", - "displayName": "", - "id": "d437a", - "name": "Idle Blinking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 1361, - "trimY": 59, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd5d5": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@cd5d5", - "displayName": "", - "id": "cd5d5", - "name": "Idle Blinking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 1399, - "trimY": 1, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "daa98": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@daa98", - "displayName": "", - "id": "daa98", - "name": "Taunt_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 645, - "trimY": 67, - "width": 62, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0779a": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@0779a", - "displayName": "", - "id": "0779a", - "name": "Taunt_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 181, - "trimY": 1, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5eb28": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@5eb28", - "displayName": "", - "id": "5eb28", - "name": "Taunt_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 185, - "trimY": 67, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a538": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@1a538", - "displayName": "", - "id": "1a538", - "name": "Taunt_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 241, - "trimY": 1, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe61e": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@fe61e", - "displayName": "", - "id": "fe61e", - "name": "Taunt_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 251, - "trimY": 67, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1415": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@d1415", - "displayName": "", - "id": "d1415", - "name": "Taunt_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 301, - "trimY": 1, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6823d": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@6823d", - "displayName": "", - "id": "6823d", - "name": "Taunt_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 317, - "trimY": 67, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e496c": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@e496c", - "displayName": "", - "id": "e496c", - "name": "Taunt_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 2, - "trimX": 773, - "trimY": 67, - "width": 62, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "648f3": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@648f3", - "displayName": "", - "id": "648f3", - "name": "Taunt_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 361, - "trimY": 1, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e4e1": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@9e4e1", - "displayName": "", - "id": "9e4e1", - "name": "Taunt_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 383, - "trimY": 67, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f27c8": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@f27c8", - "displayName": "", - "id": "f27c8", - "name": "Taunt_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 421, - "trimY": 1, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fce75": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@fce75", - "displayName": "", - "id": "fce75", - "name": "Taunt_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 449, - "trimY": 67, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a12c4": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@a12c4", - "displayName": "", - "id": "a12c4", - "name": "Taunt_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 481, - "trimY": 1, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "956e1": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@956e1", - "displayName": "", - "id": "956e1", - "name": "Taunt_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 837, - "trimY": 67, - "width": 62, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d0912": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@d0912", - "displayName": "", - "id": "d0912", - "name": "Taunt_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 1, - "trimX": 1025, - "trimY": 63, - "width": 60, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02dd6": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@02dd6", - "displayName": "", - "id": "02dd6", - "name": "Walking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 2, - "trimX": 1533, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d9c8": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@6d9c8", - "displayName": "", - "id": "6d9c8", - "name": "Walking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 1513, - "trimY": 1, - "width": 52, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "418cb": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@418cb", - "displayName": "", - "id": "418cb", - "name": "Walking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 1419, - "trimY": 59, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f6da": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@4f6da", - "displayName": "", - "id": "4f6da", - "name": "Walking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 2, - "trimX": 1083, - "trimY": 63, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dabad": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@dabad", - "displayName": "", - "id": "dabad", - "name": "Walking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 2, - "trimX": 901, - "trimY": 67, - "width": 62, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69e31": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@69e31", - "displayName": "", - "id": "69e31", - "name": "Walking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 6, - "offsetY": 2, - "trimX": 515, - "trimY": 67, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7990": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@b7990", - "displayName": "", - "id": "b7990", - "name": "Walking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 7, - "offsetY": 2, - "trimX": 601, - "trimY": 1, - "width": 64, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f6bf0": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@f6bf0", - "displayName": "", - "id": "f6bf0", - "name": "Walking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 7, - "offsetY": 2, - "trimX": 117, - "trimY": 69, - "width": 66, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6698a": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@6698a", - "displayName": "", - "id": "6698a", - "name": "Walking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 9, - "offsetY": 2, - "trimX": 659, - "trimY": 1, - "width": 64, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8564d": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@8564d", - "displayName": "", - "id": "8564d", - "name": "Walking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 9, - "offsetY": 2, - "trimX": 775, - "trimY": 1, - "width": 64, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "272a0": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@272a0", - "displayName": "", - "id": "272a0", - "name": "Walking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 8, - "offsetY": 2, - "trimX": 833, - "trimY": 1, - "width": 64, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba3ee": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@ba3ee", - "displayName": "", - "id": "ba3ee", - "name": "Walking_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 7, - "offsetY": 2, - "trimX": 891, - "trimY": 1, - "width": 64, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff098": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@ff098", - "displayName": "", - "id": "ff098", - "name": "Walking_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 6, - "offsetY": 2, - "trimX": 541, - "trimY": 1, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07703": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@07703", - "displayName": "", - "id": "07703", - "name": "Walking_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 5, - "offsetY": 2, - "trimX": 949, - "trimY": 1, - "width": 62, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14ae6": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@14ae6", - "displayName": "", - "id": "14ae6", - "name": "Walking_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 965, - "trimY": 65, - "width": 60, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79ab7": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@79ab7", - "displayName": "", - "id": "79ab7", - "name": "Walking_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 2, - "trimX": 1109, - "trimY": 1, - "width": 58, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d708": { - "importer": "sprite-frame", - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304@5d708", - "displayName": "", - "id": "5d708", - "name": "Walking_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 1477, - "trimY": 59, - "width": 54, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "atlasUuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "k4.png", - "format": 3, - "uuid": "c71fd5ed-35eb-4898-bb2c-791bdad12304", - "textureUuid": "62c5a878-889d-4219-a855-731a77e4179b@6c48a" - } -} diff --git a/assets/resources/game/hero/knight/k4/k4.png b/assets/resources/game/hero/knight/k4/k4.png deleted file mode 100644 index 1de91a42..00000000 Binary files a/assets/resources/game/hero/knight/k4/k4.png and /dev/null differ diff --git a/assets/resources/game/hero/knight/k4/k4.png.meta b/assets/resources/game/hero/knight/k4/k4.png.meta deleted file mode 100644 index 6ebbb25c..00000000 --- a/assets/resources/game/hero/knight/k4/k4.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "62c5a878-889d-4219-a855-731a77e4179b", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "62c5a878-889d-4219-a855-731a77e4179b@6c48a", - "displayName": "k4", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "62c5a878-889d-4219-a855-731a77e4179b", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "62c5a878-889d-4219-a855-731a77e4179b@6c48a" - } -} diff --git a/assets/resources/game/hero/knight/k4/max.anim b/assets/resources/game/hero/knight/k4/max.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k4/max.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k4/max.anim.meta b/assets/resources/game/hero/knight/k4/max.anim.meta deleted file mode 100644 index 9dd348fd..00000000 --- a/assets/resources/game/hero/knight/k4/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"b32400aa-c57a-405d-a56a-59d97ce80d15","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/knight/k4/move.anim b/assets/resources/game/hero/knight/k4/move.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k4/move.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k4/move.anim.meta b/assets/resources/game/hero/knight/k4/move.anim.meta deleted file mode 100644 index 6c1c5ca5..00000000 --- a/assets/resources/game/hero/knight/k4/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"2835c76d-1e37-4d81-ac43-dfe4c15cfa1f","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/knight/k5.meta b/assets/resources/game/hero/knight/k5.meta deleted file mode 100644 index 7cee2775..00000000 --- a/assets/resources/game/hero/knight/k5.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"98e8ac89-0a46-4ad1-84a7-89f4e3ea1226","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/knight/k5/atk.anim b/assets/resources/game/hero/knight/k5/atk.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k5/atk.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k5/atk.anim.meta b/assets/resources/game/hero/knight/k5/atk.anim.meta deleted file mode 100644 index 9328d4bb..00000000 --- a/assets/resources/game/hero/knight/k5/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"f82f2a91-d64a-4e21-9e65-f458c9b170e7","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/knight/k5/idle.anim b/assets/resources/game/hero/knight/k5/idle.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k5/idle.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k5/idle.anim.meta b/assets/resources/game/hero/knight/k5/idle.anim.meta deleted file mode 100644 index d11762dd..00000000 --- a/assets/resources/game/hero/knight/k5/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"9f5ea3c9-5db5-4084-bf2f-582b8c756530","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/knight/k5/k5.plist b/assets/resources/game/hero/knight/k5/k5.plist deleted file mode 100644 index 21732276..00000000 --- a/assets/resources/game/hero/knight/k5/k5.plist +++ /dev/null @@ -1,926 +0,0 @@ - - - - - frames - - Attacking_000.png - - aliases - - spriteOffset - {4,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{453,69},{56,56}} - textureRotated - - - Attacking_001.png - - aliases - - spriteOffset - {-4,2} - spriteSize - {44,58} - spriteSourceSize - {96,68} - textureRect - {{1687,1},{44,58}} - textureRotated - - - Attacking_002.png - - aliases - - spriteOffset - {-5,2} - spriteSize - {44,58} - spriteSourceSize - {96,68} - textureRect - {{1689,61},{44,58}} - textureRotated - - - Attacking_003.png - - aliases - - spriteOffset - {-7,3} - spriteSize - {46,58} - spriteSourceSize - {96,68} - textureRect - {{1641,61},{46,58}} - textureRotated - - - Attacking_004.png - - aliases - - spriteOffset - {-8,3} - spriteSize - {48,58} - spriteSourceSize - {96,68} - textureRect - {{1637,1},{48,58}} - textureRotated - - - Attacking_005.png - - aliases - - spriteOffset - {-10,3} - spriteSize - {50,58} - spriteSourceSize - {96,68} - textureRect - {{1589,61},{50,58}} - textureRotated - - - Attacking_006.png - - aliases - - spriteOffset - {-11,3} - spriteSize - {52,58} - spriteSourceSize - {96,68} - textureRect - {{1,71},{52,58}} - textureRotated - - - Attacking_007.png - - aliases - - spriteOffset - {-1,4} - spriteSize - {44,60} - spriteSourceSize - {96,68} - textureRect - {{1351,1},{44,60}} - textureRotated - - - Attacking_008.png - - aliases - - spriteOffset - {13,3} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{681,1},{66,58}} - textureRotated - - - Attacking_009.png - - aliases - - spriteOffset - {14,3} - spriteSize - {68,58} - spriteSourceSize - {96,68} - textureRect - {{1,1},{68,58}} - textureRotated - - - Attacking_010.png - - aliases - - spriteOffset - {13,3} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{741,1},{66,58}} - textureRotated - - - Attacking_011.png - - aliases - - spriteOffset - {10,2} - spriteSize - {62,58} - spriteSourceSize - {96,68} - textureRect - {{1157,67},{62,58}} - textureRotated - - - Idle Blinking_000.png - - aliases - - spriteOffset - {4,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{453,69},{56,56}} - textureRotated - - - Idle Blinking_001.png - - aliases - - spriteOffset - {3,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{511,69},{56,56}} - textureRotated - - - Idle Blinking_002.png - - aliases - - spriteOffset - {3,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{569,69},{56,56}} - textureRotated - - - Idle Blinking_003.png - - aliases - - spriteOffset - {2,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{627,69},{56,56}} - textureRotated - - - Idle Blinking_004.png - - aliases - - spriteOffset - {2,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{685,69},{56,56}} - textureRotated - - - Idle Blinking_005.png - - aliases - - spriteOffset - {1,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{393,69},{56,58}} - textureRotated - - - Idle Blinking_006.png - - aliases - - spriteOffset - {0,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1397,1},{58,58}} - textureRotated - - - Idle Blinking_007.png - - aliases - - spriteOffset - {0,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1409,61},{58,58}} - textureRotated - - - Idle Blinking_008.png - - aliases - - spriteOffset - {1,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1457,1},{58,58}} - textureRotated - - - Idle Blinking_009.png - - aliases - - spriteOffset - {1,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1469,61},{58,58}} - textureRotated - - - Idle Blinking_010.png - - aliases - - spriteOffset - {2,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1517,1},{58,58}} - textureRotated - - - Idle Blinking_011.png - - aliases - - spriteOffset - {3,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{743,69},{56,56}} - textureRotated - - - Taunt_000.png - - aliases - - spriteOffset - {4,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{453,69},{56,56}} - textureRotated - - - Taunt_001.png - - aliases - - spriteOffset - {4,2} - spriteSize - {60,58} - spriteSourceSize - {96,68} - textureRect - {{1291,1},{60,58}} - textureRotated - - - Taunt_002.png - - aliases - - spriteOffset - {3,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{981,1},{64,60}} - textureRotated - - - Taunt_003.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{61,1},{66,60}} - textureRotated - - - Taunt_004.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{123,1},{66,60}} - textureRotated - - - Taunt_005.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{185,1},{66,60}} - textureRotated - - - Taunt_006.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{247,1},{66,60}} - textureRotated - - - Taunt_007.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{309,1},{66,60}} - textureRotated - - - Taunt_008.png - - aliases - - spriteOffset - {4,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{1043,1},{64,60}} - textureRotated - - - Taunt_009.png - - aliases - - spriteOffset - {4,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{1105,1},{64,60}} - textureRotated - - - Taunt_010.png - - aliases - - spriteOffset - {4,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{1167,1},{64,60}} - textureRotated - - - Taunt_011.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{371,1},{66,60}} - textureRotated - - - Taunt_012.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{433,1},{66,60}} - textureRotated - - - Taunt_013.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{495,1},{66,60}} - textureRotated - - - Taunt_014.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{557,1},{66,60}} - textureRotated - - - Taunt_015.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{619,1},{66,60}} - textureRotated - - - Taunt_016.png - - aliases - - spriteOffset - {3,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{1229,1},{64,60}} - textureRotated - - - Taunt_017.png - - aliases - - spriteOffset - {4,2} - spriteSize - {60,58} - spriteSourceSize - {96,68} - textureRect - {{1349,63},{60,58}} - textureRotated - - - Walking_000.png - - aliases - - spriteOffset - {1,2} - spriteSize - {52,56} - spriteSourceSize - {96,68} - textureRect - {{917,69},{52,56}} - textureRotated - - - Walking_001.png - - aliases - - spriteOffset - {3,2} - spriteSize - {52,56} - spriteSourceSize - {96,68} - textureRect - {{971,69},{52,56}} - textureRotated - - - Walking_002.png - - aliases - - spriteOffset - {4,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{801,69},{56,56}} - textureRotated - - - Walking_003.png - - aliases - - spriteOffset - {5,2} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1529,61},{58,58}} - textureRotated - - - Walking_004.png - - aliases - - spriteOffset - {5,2} - spriteSize - {62,58} - spriteSourceSize - {96,68} - textureRect - {{1221,67},{62,58}} - textureRotated - - - Walking_005.png - - aliases - - spriteOffset - {5,2} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{801,1},{66,58}} - textureRotated - - - Walking_006.png - - aliases - - spriteOffset - {6,3} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{861,1},{66,58}} - textureRotated - - - Walking_007.png - - aliases - - spriteOffset - {7,3} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{921,1},{66,58}} - textureRotated - - - Walking_008.png - - aliases - - spriteOffset - {8,2} - spriteSize - {66,56} - spriteSourceSize - {96,68} - textureRect - {{61,69},{66,56}} - textureRotated - - - Walking_009.png - - aliases - - spriteOffset - {9,2} - spriteSize - {64,56} - spriteSourceSize - {96,68} - textureRect - {{129,69},{64,56}} - textureRotated - - - Walking_010.png - - aliases - - spriteOffset - {9,2} - spriteSize - {64,56} - spriteSourceSize - {96,68} - textureRect - {{195,69},{64,56}} - textureRotated - - - Walking_011.png - - aliases - - spriteOffset - {8,2} - spriteSize - {64,56} - spriteSourceSize - {96,68} - textureRect - {{261,69},{64,56}} - textureRotated - - - Walking_012.png - - aliases - - spriteOffset - {7,2} - spriteSize - {64,56} - spriteSourceSize - {96,68} - textureRect - {{327,69},{64,56}} - textureRotated - - - Walking_013.png - - aliases - - spriteOffset - {6,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{1025,67},{64,58}} - textureRotated - - - Walking_014.png - - aliases - - spriteOffset - {4,2} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{1091,67},{64,58}} - textureRotated - - - Walking_015.png - - aliases - - spriteOffset - {3,2} - spriteSize - {62,58} - spriteSourceSize - {96,68} - textureRect - {{1285,67},{62,58}} - textureRotated - - - Walking_016.png - - aliases - - spriteOffset - {3,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1577,1},{58,58}} - textureRotated - - - Walking_017.png - - aliases - - spriteOffset - {2,2} - spriteSize - {56,56} - spriteSourceSize - {96,68} - textureRect - {{859,69},{56,56}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - k5.png - size - {1734,126} - smartupdate - $TexturePacker:SmartUpdate:b163a786633a24de4618cdd67427c1fd:7a2ce2232a78f945b73b4efd5ad0bffa:0c8f7fa10a2023aa602e5edc2dbf568e$ - textureFileName - k5.png - - - diff --git a/assets/resources/game/hero/knight/k5/k5.plist.meta b/assets/resources/game/hero/knight/k5/k5.plist.meta deleted file mode 100644 index a51f57bc..00000000 --- a/assets/resources/game/hero/knight/k5/k5.plist.meta +++ /dev/null @@ -1,2777 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081", - "files": [ - ".json" - ], - "subMetas": { - "26428": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@26428", - "displayName": "", - "id": "26428", - "name": "Taunt_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 1291, - "trimY": 1, - "width": 60, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50949": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@50949", - "displayName": "", - "id": "50949", - "name": "Taunt_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 3, - "trimX": 1105, - "trimY": 1, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "55628": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@55628", - "displayName": "", - "id": "55628", - "name": "Idle Blinking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 511, - "trimY": 69, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60134": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@60134", - "displayName": "", - "id": "60134", - "name": "Walking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 9, - "offsetY": 2, - "trimX": 129, - "trimY": 69, - "width": 64, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60799": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@60799", - "displayName": "", - "id": "60799", - "name": "Taunt_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 453, - "trimY": 69, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "78440": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@78440", - "displayName": "", - "id": "78440", - "name": "Attacking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 13, - "offsetY": 3, - "trimX": 681, - "trimY": 1, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9a470": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@9a470", - "displayName": "", - "id": "9a470", - "name": "Attacking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 453, - "trimY": 69, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4ce3": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@c4ce3", - "displayName": "", - "id": "c4ce3", - "name": "Attacking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 2, - "trimX": 1687, - "trimY": 1, - "width": 44, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb99c": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@eb99c", - "displayName": "", - "id": "eb99c", - "name": "Attacking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -5, - "offsetY": 2, - "trimX": 1689, - "trimY": 61, - "width": 44, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "548da": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@548da", - "displayName": "", - "id": "548da", - "name": "Attacking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -7, - "offsetY": 3, - "trimX": 1641, - "trimY": 61, - "width": 46, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8401f": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@8401f", - "displayName": "", - "id": "8401f", - "name": "Attacking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -8, - "offsetY": 3, - "trimX": 1637, - "trimY": 1, - "width": 48, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cc0e6": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@cc0e6", - "displayName": "", - "id": "cc0e6", - "name": "Attacking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -10, - "offsetY": 3, - "trimX": 1589, - "trimY": 61, - "width": 50, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d3762": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@d3762", - "displayName": "", - "id": "d3762", - "name": "Attacking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": -11, - "offsetY": 3, - "trimX": 1, - "trimY": 71, - "width": 52, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ebb52": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@ebb52", - "displayName": "", - "id": "ebb52", - "name": "Attacking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -1, - "offsetY": 4, - "trimX": 1351, - "trimY": 1, - "width": 44, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c8b49": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@c8b49", - "displayName": "", - "id": "c8b49", - "name": "Attacking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 14, - "offsetY": 3, - "trimX": 1, - "trimY": 1, - "width": 68, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d4d3e": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@d4d3e", - "displayName": "", - "id": "d4d3e", - "name": "Attacking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 13, - "offsetY": 3, - "trimX": 741, - "trimY": 1, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "310ee": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@310ee", - "displayName": "", - "id": "310ee", - "name": "Attacking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 10, - "offsetY": 2, - "trimX": 1157, - "trimY": 67, - "width": 62, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d58e": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@5d58e", - "displayName": "", - "id": "5d58e", - "name": "Idle Blinking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 453, - "trimY": 69, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ffb7f": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@ffb7f", - "displayName": "", - "id": "ffb7f", - "name": "Idle Blinking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 569, - "trimY": 69, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4b666": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@4b666", - "displayName": "", - "id": "4b666", - "name": "Idle Blinking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 2, - "trimX": 627, - "trimY": 69, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4dcb3": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@4dcb3", - "displayName": "", - "id": "4dcb3", - "name": "Idle Blinking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 2, - "trimX": 685, - "trimY": 69, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51cbc": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@51cbc", - "displayName": "", - "id": "51cbc", - "name": "Idle Blinking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 1, - "offsetY": 3, - "trimX": 393, - "trimY": 69, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "11bc6": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@11bc6", - "displayName": "", - "id": "11bc6", - "name": "Idle Blinking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 1397, - "trimY": 1, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b2558": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@b2558", - "displayName": "", - "id": "b2558", - "name": "Idle Blinking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 1409, - "trimY": 61, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6d4a": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@d6d4a", - "displayName": "", - "id": "d6d4a", - "name": "Idle Blinking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 1457, - "trimY": 1, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1b51c": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@1b51c", - "displayName": "", - "id": "1b51c", - "name": "Idle Blinking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 1469, - "trimY": 61, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d437a": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@d437a", - "displayName": "", - "id": "d437a", - "name": "Idle Blinking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 3, - "trimX": 1517, - "trimY": 1, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd5d5": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@cd5d5", - "displayName": "", - "id": "cd5d5", - "name": "Idle Blinking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 743, - "trimY": 69, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "daa98": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@daa98", - "displayName": "", - "id": "daa98", - "name": "Taunt_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 981, - "trimY": 1, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0779a": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@0779a", - "displayName": "", - "id": "0779a", - "name": "Taunt_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 61, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5eb28": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@5eb28", - "displayName": "", - "id": "5eb28", - "name": "Taunt_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 123, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a538": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@1a538", - "displayName": "", - "id": "1a538", - "name": "Taunt_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 185, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe61e": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@fe61e", - "displayName": "", - "id": "fe61e", - "name": "Taunt_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 247, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1415": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@d1415", - "displayName": "", - "id": "d1415", - "name": "Taunt_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 309, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6823d": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@6823d", - "displayName": "", - "id": "6823d", - "name": "Taunt_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 3, - "trimX": 1043, - "trimY": 1, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e496c": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@e496c", - "displayName": "", - "id": "e496c", - "name": "Taunt_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 3, - "trimX": 1167, - "trimY": 1, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "648f3": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@648f3", - "displayName": "", - "id": "648f3", - "name": "Taunt_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 371, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e4e1": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@9e4e1", - "displayName": "", - "id": "9e4e1", - "name": "Taunt_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 433, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f27c8": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@f27c8", - "displayName": "", - "id": "f27c8", - "name": "Taunt_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 495, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fce75": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@fce75", - "displayName": "", - "id": "fce75", - "name": "Taunt_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 557, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a12c4": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@a12c4", - "displayName": "", - "id": "a12c4", - "name": "Taunt_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 619, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "956e1": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@956e1", - "displayName": "", - "id": "956e1", - "name": "Taunt_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 1229, - "trimY": 1, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d0912": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@d0912", - "displayName": "", - "id": "d0912", - "name": "Taunt_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 2, - "trimX": 1349, - "trimY": 63, - "width": 60, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02dd6": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@02dd6", - "displayName": "", - "id": "02dd6", - "name": "Walking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 2, - "trimX": 917, - "trimY": 69, - "width": 52, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d9c8": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@6d9c8", - "displayName": "", - "id": "6d9c8", - "name": "Walking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 971, - "trimY": 69, - "width": 52, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "418cb": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@418cb", - "displayName": "", - "id": "418cb", - "name": "Walking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 801, - "trimY": 69, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f6da": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@4f6da", - "displayName": "", - "id": "4f6da", - "name": "Walking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 2, - "trimX": 1529, - "trimY": 61, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dabad": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@dabad", - "displayName": "", - "id": "dabad", - "name": "Walking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 2, - "trimX": 1221, - "trimY": 67, - "width": 62, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69e31": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@69e31", - "displayName": "", - "id": "69e31", - "name": "Walking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 5, - "offsetY": 2, - "trimX": 801, - "trimY": 1, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7990": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@b7990", - "displayName": "", - "id": "b7990", - "name": "Walking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 6, - "offsetY": 3, - "trimX": 861, - "trimY": 1, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f6bf0": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@f6bf0", - "displayName": "", - "id": "f6bf0", - "name": "Walking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 7, - "offsetY": 3, - "trimX": 921, - "trimY": 1, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6698a": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@6698a", - "displayName": "", - "id": "6698a", - "name": "Walking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 8, - "offsetY": 2, - "trimX": 61, - "trimY": 69, - "width": 66, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8564d": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@8564d", - "displayName": "", - "id": "8564d", - "name": "Walking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 9, - "offsetY": 2, - "trimX": 195, - "trimY": 69, - "width": 64, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "272a0": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@272a0", - "displayName": "", - "id": "272a0", - "name": "Walking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 8, - "offsetY": 2, - "trimX": 261, - "trimY": 69, - "width": 64, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba3ee": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@ba3ee", - "displayName": "", - "id": "ba3ee", - "name": "Walking_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 7, - "offsetY": 2, - "trimX": 327, - "trimY": 69, - "width": 64, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff098": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@ff098", - "displayName": "", - "id": "ff098", - "name": "Walking_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 6, - "offsetY": 2, - "trimX": 1025, - "trimY": 67, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07703": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@07703", - "displayName": "", - "id": "07703", - "name": "Walking_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 2, - "trimX": 1091, - "trimY": 67, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14ae6": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@14ae6", - "displayName": "", - "id": "14ae6", - "name": "Walking_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 1285, - "trimY": 67, - "width": 62, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79ab7": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@79ab7", - "displayName": "", - "id": "79ab7", - "name": "Walking_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 1577, - "trimY": 1, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d708": { - "importer": "sprite-frame", - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081@5d708", - "displayName": "", - "id": "5d708", - "name": "Walking_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 2, - "trimX": 859, - "trimY": 69, - "width": 56, - "height": 56, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "atlasUuid": "d3d6f900-7086-4192-94ae-eb84cb49b081" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "k5.png", - "format": 3, - "uuid": "d3d6f900-7086-4192-94ae-eb84cb49b081", - "textureUuid": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a" - } -} diff --git a/assets/resources/game/hero/knight/k5/k5.png b/assets/resources/game/hero/knight/k5/k5.png deleted file mode 100644 index d4b00f92..00000000 Binary files a/assets/resources/game/hero/knight/k5/k5.png and /dev/null differ diff --git a/assets/resources/game/hero/knight/k5/k5.png.meta b/assets/resources/game/hero/knight/k5/k5.png.meta deleted file mode 100644 index 7e3ed49f..00000000 --- a/assets/resources/game/hero/knight/k5/k5.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "124973b6-60bc-4a54-bdc1-20f010e7423b", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a", - "displayName": "k5", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "124973b6-60bc-4a54-bdc1-20f010e7423b", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "124973b6-60bc-4a54-bdc1-20f010e7423b@6c48a" - } -} diff --git a/assets/resources/game/hero/knight/k5/max.anim b/assets/resources/game/hero/knight/k5/max.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k5/max.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k5/max.anim.meta b/assets/resources/game/hero/knight/k5/max.anim.meta deleted file mode 100644 index f190b1cd..00000000 --- a/assets/resources/game/hero/knight/k5/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"67d514f8-a7a1-416f-80f1-82eaca60bf58","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/knight/k5/move.anim b/assets/resources/game/hero/knight/k5/move.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k5/move.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k5/move.anim.meta b/assets/resources/game/hero/knight/k5/move.anim.meta deleted file mode 100644 index fff6bad4..00000000 --- a/assets/resources/game/hero/knight/k5/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"8549b869-0853-4249-a106-50b24d85de10","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/knight/k6.meta b/assets/resources/game/hero/knight/k6.meta deleted file mode 100644 index e157f364..00000000 --- a/assets/resources/game/hero/knight/k6.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"634bb5fe-a463-4d73-b6b3-78442f6a902c","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/knight/k6/atk.anim b/assets/resources/game/hero/knight/k6/atk.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k6/atk.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k6/atk.anim.meta b/assets/resources/game/hero/knight/k6/atk.anim.meta deleted file mode 100644 index 2d63b85a..00000000 --- a/assets/resources/game/hero/knight/k6/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a6ef027c-555e-48b1-93dd-2dc1c6d33597","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/knight/k6/idle.anim b/assets/resources/game/hero/knight/k6/idle.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k6/idle.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k6/idle.anim.meta b/assets/resources/game/hero/knight/k6/idle.anim.meta deleted file mode 100644 index bdb4429f..00000000 --- a/assets/resources/game/hero/knight/k6/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"44bc2706-02a2-416d-9b85-7c224929a4e5","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/knight/k6/k6.plist b/assets/resources/game/hero/knight/k6/k6.plist deleted file mode 100644 index e9cda10c..00000000 --- a/assets/resources/game/hero/knight/k6/k6.plist +++ /dev/null @@ -1,926 +0,0 @@ - - - - - frames - - Attacking_000.png - - aliases - - spriteOffset - {4,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{1337,61},{56,58}} - textureRotated - - - Attacking_001.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {44,60} - spriteSourceSize - {96,68} - textureRect - {{1109,1},{44,60}} - textureRotated - - - Attacking_002.png - - aliases - - spriteOffset - {-5,3} - spriteSize - {42,60} - spriteSourceSize - {96,68} - textureRect - {{1113,63},{42,60}} - textureRotated - - - Attacking_003.png - - aliases - - spriteOffset - {-7,3} - spriteSize - {44,58} - spriteSourceSize - {96,68} - textureRect - {{1713,1},{44,58}} - textureRotated - - - Attacking_004.png - - aliases - - spriteOffset - {-9,3} - spriteSize - {46,58} - spriteSourceSize - {96,68} - textureRect - {{1673,61},{46,58}} - textureRotated - - - Attacking_005.png - - aliases - - spriteOffset - {-11,3} - spriteSize - {48,58} - spriteSourceSize - {96,68} - textureRect - {{1623,61},{48,58}} - textureRotated - - - Attacking_006.png - - aliases - - spriteOffset - {-12,3} - spriteSize - {48,58} - spriteSourceSize - {96,68} - textureRect - {{1663,1},{48,58}} - textureRotated - - - Attacking_007.png - - aliases - - spriteOffset - {-3,4} - spriteSize - {40,60} - spriteSourceSize - {96,68} - textureRect - {{1155,1},{40,60}} - textureRotated - - - Attacking_008.png - - aliases - - spriteOffset - {13,4} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{61,1},{66,60}} - textureRotated - - - Attacking_009.png - - aliases - - spriteOffset - {14,3} - spriteSize - {68,58} - spriteSourceSize - {96,68} - textureRect - {{1,1},{68,58}} - textureRotated - - - Attacking_010.png - - aliases - - spriteOffset - {13,3} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{63,69},{66,58}} - textureRotated - - - Attacking_011.png - - aliases - - spriteOffset - {10,3} - spriteSize - {62,60} - spriteSourceSize - {96,68} - textureRect - {{801,67},{62,60}} - textureRotated - - - Idle Blinking_000.png - - aliases - - spriteOffset - {4,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{1337,61},{56,58}} - textureRotated - - - Idle Blinking_001.png - - aliases - - spriteOffset - {3,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{1377,1},{56,58}} - textureRotated - - - Idle Blinking_002.png - - aliases - - spriteOffset - {3,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{1395,61},{56,58}} - textureRotated - - - Idle Blinking_003.png - - aliases - - spriteOffset - {2,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{1435,1},{56,58}} - textureRotated - - - Idle Blinking_004.png - - aliases - - spriteOffset - {2,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{1453,61},{56,58}} - textureRotated - - - Idle Blinking_005.png - - aliases - - spriteOffset - {1,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{1493,1},{56,58}} - textureRotated - - - Idle Blinking_006.png - - aliases - - spriteOffset - {0,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1157,63},{58,58}} - textureRotated - - - Idle Blinking_007.png - - aliases - - spriteOffset - {0,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1197,1},{58,58}} - textureRotated - - - Idle Blinking_008.png - - aliases - - spriteOffset - {1,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1217,61},{58,58}} - textureRotated - - - Idle Blinking_009.png - - aliases - - spriteOffset - {1,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1257,1},{58,58}} - textureRotated - - - Idle Blinking_010.png - - aliases - - spriteOffset - {2,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1277,61},{58,58}} - textureRotated - - - Idle Blinking_011.png - - aliases - - spriteOffset - {3,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{1511,61},{56,58}} - textureRotated - - - Taunt_000.png - - aliases - - spriteOffset - {4,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{1337,61},{56,58}} - textureRotated - - - Taunt_001.png - - aliases - - spriteOffset - {4,3} - spriteSize - {60,60} - spriteSourceSize - {96,68} - textureRect - {{991,65},{60,60}} - textureRotated - - - Taunt_002.png - - aliases - - spriteOffset - {4,3} - spriteSize - {62,60} - spriteSourceSize - {96,68} - textureRect - {{865,67},{62,60}} - textureRotated - - - Taunt_003.png - - aliases - - spriteOffset - {3,2} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{131,69},{66,58}} - textureRotated - - - Taunt_004.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{123,1},{66,60}} - textureRotated - - - Taunt_005.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{185,1},{66,60}} - textureRotated - - - Taunt_006.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{247,1},{66,60}} - textureRotated - - - Taunt_007.png - - aliases - - spriteOffset - {4,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{495,1},{64,60}} - textureRotated - - - Taunt_008.png - - aliases - - spriteOffset - {4,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{537,67},{64,60}} - textureRotated - - - Taunt_009.png - - aliases - - spriteOffset - {4,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{557,1},{64,60}} - textureRotated - - - Taunt_010.png - - aliases - - spriteOffset - {4,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{603,67},{64,60}} - textureRotated - - - Taunt_011.png - - aliases - - spriteOffset - {4,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{619,1},{64,60}} - textureRotated - - - Taunt_012.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{309,1},{66,60}} - textureRotated - - - Taunt_013.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{371,1},{66,60}} - textureRotated - - - Taunt_014.png - - aliases - - spriteOffset - {3,3} - spriteSize - {66,60} - spriteSourceSize - {96,68} - textureRect - {{433,1},{66,60}} - textureRotated - - - Taunt_015.png - - aliases - - spriteOffset - {3,2} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{199,69},{66,58}} - textureRotated - - - Taunt_016.png - - aliases - - spriteOffset - {3,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{669,67},{64,60}} - textureRotated - - - Taunt_017.png - - aliases - - spriteOffset - {4,3} - spriteSize - {60,60} - spriteSourceSize - {96,68} - textureRect - {{1047,1},{60,60}} - textureRotated - - - Walking_000.png - - aliases - - spriteOffset - {1,3} - spriteSize - {52,58} - spriteSourceSize - {96,68} - textureRect - {{1569,61},{52,58}} - textureRotated - - - Walking_001.png - - aliases - - spriteOffset - {3,3} - spriteSize - {52,58} - spriteSourceSize - {96,68} - textureRect - {{1609,1},{52,58}} - textureRotated - - - Walking_002.png - - aliases - - spriteOffset - {4,4} - spriteSize - {56,60} - spriteSourceSize - {96,68} - textureRect - {{1,71},{56,60}} - textureRotated - - - Walking_003.png - - aliases - - spriteOffset - {5,3} - spriteSize - {58,60} - spriteSourceSize - {96,68} - textureRect - {{1053,63},{58,60}} - textureRotated - - - Walking_004.png - - aliases - - spriteOffset - {5,3} - spriteSize - {62,60} - spriteSourceSize - {96,68} - textureRect - {{923,1},{62,60}} - textureRotated - - - Walking_005.png - - aliases - - spriteOffset - {6,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{681,1},{64,60}} - textureRotated - - - Walking_006.png - - aliases - - spriteOffset - {6,3} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{267,69},{66,58}} - textureRotated - - - Walking_007.png - - aliases - - spriteOffset - {7,3} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{335,69},{66,58}} - textureRotated - - - Walking_008.png - - aliases - - spriteOffset - {8,3} - spriteSize - {66,58} - spriteSourceSize - {96,68} - textureRect - {{403,69},{66,58}} - textureRotated - - - Walking_009.png - - aliases - - spriteOffset - {9,3} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{471,69},{64,58}} - textureRotated - - - Walking_010.png - - aliases - - spriteOffset - {9,3} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{743,1},{64,58}} - textureRotated - - - Walking_011.png - - aliases - - spriteOffset - {8,3} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{803,1},{64,58}} - textureRotated - - - Walking_012.png - - aliases - - spriteOffset - {7,3} - spriteSize - {64,58} - spriteSourceSize - {96,68} - textureRect - {{863,1},{64,58}} - textureRotated - - - Walking_013.png - - aliases - - spriteOffset - {6,3} - spriteSize - {64,60} - spriteSourceSize - {96,68} - textureRect - {{735,67},{64,60}} - textureRotated - - - Walking_014.png - - aliases - - spriteOffset - {5,3} - spriteSize - {62,60} - spriteSourceSize - {96,68} - textureRect - {{929,65},{62,60}} - textureRotated - - - Walking_015.png - - aliases - - spriteOffset - {3,3} - spriteSize - {62,60} - spriteSourceSize - {96,68} - textureRect - {{985,1},{62,60}} - textureRotated - - - Walking_016.png - - aliases - - spriteOffset - {3,3} - spriteSize - {58,58} - spriteSourceSize - {96,68} - textureRect - {{1317,1},{58,58}} - textureRotated - - - Walking_017.png - - aliases - - spriteOffset - {2,3} - spriteSize - {56,58} - spriteSourceSize - {96,68} - textureRect - {{1551,1},{56,58}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - k6.png - size - {1758,128} - smartupdate - $TexturePacker:SmartUpdate:1c6841dc308ccb49eb889f7679f65423:3b0d2f8fa4ae15e3a5459b1a377f28c9:8348e8355441157d81c434f5856e8ac2$ - textureFileName - k6.png - - - diff --git a/assets/resources/game/hero/knight/k6/k6.plist.meta b/assets/resources/game/hero/knight/k6/k6.plist.meta deleted file mode 100644 index cc0d9eea..00000000 --- a/assets/resources/game/hero/knight/k6/k6.plist.meta +++ /dev/null @@ -1,2777 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579", - "files": [ - ".json" - ], - "subMetas": { - "26428": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@26428", - "displayName": "", - "id": "26428", - "name": "Taunt_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 991, - "trimY": 65, - "width": 60, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50949": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@50949", - "displayName": "", - "id": "50949", - "name": "Taunt_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 3, - "trimX": 557, - "trimY": 1, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "55628": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@55628", - "displayName": "", - "id": "55628", - "name": "Idle Blinking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 1377, - "trimY": 1, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60134": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@60134", - "displayName": "", - "id": "60134", - "name": "Walking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 9, - "offsetY": 3, - "trimX": 471, - "trimY": 69, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60799": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@60799", - "displayName": "", - "id": "60799", - "name": "Taunt_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 1337, - "trimY": 61, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "78440": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@78440", - "displayName": "", - "id": "78440", - "name": "Attacking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 13, - "offsetY": 4, - "trimX": 61, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9a470": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@9a470", - "displayName": "", - "id": "9a470", - "name": "Attacking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 1337, - "trimY": 61, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c4ce3": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@c4ce3", - "displayName": "", - "id": "c4ce3", - "name": "Attacking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 1109, - "trimY": 1, - "width": 44, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eb99c": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@eb99c", - "displayName": "", - "id": "eb99c", - "name": "Attacking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -5, - "offsetY": 3, - "trimX": 1113, - "trimY": 63, - "width": 42, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "548da": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@548da", - "displayName": "", - "id": "548da", - "name": "Attacking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -7, - "offsetY": 3, - "trimX": 1713, - "trimY": 1, - "width": 44, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8401f": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@8401f", - "displayName": "", - "id": "8401f", - "name": "Attacking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -9, - "offsetY": 3, - "trimX": 1673, - "trimY": 61, - "width": 46, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cc0e6": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@cc0e6", - "displayName": "", - "id": "cc0e6", - "name": "Attacking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -11, - "offsetY": 3, - "trimX": 1623, - "trimY": 61, - "width": 48, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d3762": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@d3762", - "displayName": "", - "id": "d3762", - "name": "Attacking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -12, - "offsetY": 3, - "trimX": 1663, - "trimY": 1, - "width": 48, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ebb52": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@ebb52", - "displayName": "", - "id": "ebb52", - "name": "Attacking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 4, - "trimX": 1155, - "trimY": 1, - "width": 40, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c8b49": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@c8b49", - "displayName": "", - "id": "c8b49", - "name": "Attacking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 14, - "offsetY": 3, - "trimX": 1, - "trimY": 1, - "width": 68, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d4d3e": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@d4d3e", - "displayName": "", - "id": "d4d3e", - "name": "Attacking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 13, - "offsetY": 3, - "trimX": 63, - "trimY": 69, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "310ee": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@310ee", - "displayName": "", - "id": "310ee", - "name": "Attacking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 10, - "offsetY": 3, - "trimX": 801, - "trimY": 67, - "width": 62, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d58e": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@5d58e", - "displayName": "", - "id": "5d58e", - "name": "Idle Blinking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 1337, - "trimY": 61, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ffb7f": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@ffb7f", - "displayName": "", - "id": "ffb7f", - "name": "Idle Blinking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 1395, - "trimY": 61, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4b666": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@4b666", - "displayName": "", - "id": "4b666", - "name": "Idle Blinking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 3, - "trimX": 1435, - "trimY": 1, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4dcb3": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@4dcb3", - "displayName": "", - "id": "4dcb3", - "name": "Idle Blinking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 3, - "trimX": 1453, - "trimY": 61, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51cbc": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@51cbc", - "displayName": "", - "id": "51cbc", - "name": "Idle Blinking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 1493, - "trimY": 1, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "11bc6": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@11bc6", - "displayName": "", - "id": "11bc6", - "name": "Idle Blinking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 1157, - "trimY": 63, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b2558": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@b2558", - "displayName": "", - "id": "b2558", - "name": "Idle Blinking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 3, - "trimX": 1197, - "trimY": 1, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6d4a": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@d6d4a", - "displayName": "", - "id": "d6d4a", - "name": "Idle Blinking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 1217, - "trimY": 61, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1b51c": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@1b51c", - "displayName": "", - "id": "1b51c", - "name": "Idle Blinking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 1257, - "trimY": 1, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d437a": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@d437a", - "displayName": "", - "id": "d437a", - "name": "Idle Blinking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 3, - "trimX": 1277, - "trimY": 61, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd5d5": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@cd5d5", - "displayName": "", - "id": "cd5d5", - "name": "Idle Blinking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 1511, - "trimY": 61, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "daa98": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@daa98", - "displayName": "", - "id": "daa98", - "name": "Taunt_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 865, - "trimY": 67, - "width": 62, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0779a": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@0779a", - "displayName": "", - "id": "0779a", - "name": "Taunt_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 131, - "trimY": 69, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5eb28": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@5eb28", - "displayName": "", - "id": "5eb28", - "name": "Taunt_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 123, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a538": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@1a538", - "displayName": "", - "id": "1a538", - "name": "Taunt_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 185, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe61e": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@fe61e", - "displayName": "", - "id": "fe61e", - "name": "Taunt_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 247, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1415": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@d1415", - "displayName": "", - "id": "d1415", - "name": "Taunt_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 3, - "trimX": 495, - "trimY": 1, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6823d": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@6823d", - "displayName": "", - "id": "6823d", - "name": "Taunt_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 537, - "trimY": 67, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e496c": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@e496c", - "displayName": "", - "id": "e496c", - "name": "Taunt_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 603, - "trimY": 67, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "648f3": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@648f3", - "displayName": "", - "id": "648f3", - "name": "Taunt_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 3, - "trimX": 619, - "trimY": 1, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e4e1": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@9e4e1", - "displayName": "", - "id": "9e4e1", - "name": "Taunt_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 309, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f27c8": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@f27c8", - "displayName": "", - "id": "f27c8", - "name": "Taunt_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 371, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fce75": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@fce75", - "displayName": "", - "id": "fce75", - "name": "Taunt_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 433, - "trimY": 1, - "width": 66, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a12c4": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@a12c4", - "displayName": "", - "id": "a12c4", - "name": "Taunt_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 2, - "trimX": 199, - "trimY": 69, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "956e1": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@956e1", - "displayName": "", - "id": "956e1", - "name": "Taunt_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 669, - "trimY": 67, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d0912": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@d0912", - "displayName": "", - "id": "d0912", - "name": "Taunt_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 1047, - "trimY": 1, - "width": 60, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02dd6": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@02dd6", - "displayName": "", - "id": "02dd6", - "name": "Walking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 1569, - "trimY": 61, - "width": 52, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d9c8": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@6d9c8", - "displayName": "", - "id": "6d9c8", - "name": "Walking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 1609, - "trimY": 1, - "width": 52, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "418cb": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@418cb", - "displayName": "", - "id": "418cb", - "name": "Walking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 4, - "offsetY": 4, - "trimX": 1, - "trimY": 71, - "width": 56, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f6da": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@4f6da", - "displayName": "", - "id": "4f6da", - "name": "Walking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 1053, - "trimY": 63, - "width": 58, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dabad": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@dabad", - "displayName": "", - "id": "dabad", - "name": "Walking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 5, - "offsetY": 3, - "trimX": 923, - "trimY": 1, - "width": 62, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69e31": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@69e31", - "displayName": "", - "id": "69e31", - "name": "Walking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 6, - "offsetY": 3, - "trimX": 681, - "trimY": 1, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7990": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@b7990", - "displayName": "", - "id": "b7990", - "name": "Walking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 6, - "offsetY": 3, - "trimX": 267, - "trimY": 69, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f6bf0": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@f6bf0", - "displayName": "", - "id": "f6bf0", - "name": "Walking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 7, - "offsetY": 3, - "trimX": 335, - "trimY": 69, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6698a": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@6698a", - "displayName": "", - "id": "6698a", - "name": "Walking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 8, - "offsetY": 3, - "trimX": 403, - "trimY": 69, - "width": 66, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8564d": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@8564d", - "displayName": "", - "id": "8564d", - "name": "Walking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 9, - "offsetY": 3, - "trimX": 743, - "trimY": 1, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "272a0": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@272a0", - "displayName": "", - "id": "272a0", - "name": "Walking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 8, - "offsetY": 3, - "trimX": 803, - "trimY": 1, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba3ee": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@ba3ee", - "displayName": "", - "id": "ba3ee", - "name": "Walking_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 7, - "offsetY": 3, - "trimX": 863, - "trimY": 1, - "width": 64, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff098": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@ff098", - "displayName": "", - "id": "ff098", - "name": "Walking_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 6, - "offsetY": 3, - "trimX": 735, - "trimY": 67, - "width": 64, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07703": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@07703", - "displayName": "", - "id": "07703", - "name": "Walking_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 5, - "offsetY": 3, - "trimX": 929, - "trimY": 65, - "width": 62, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14ae6": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@14ae6", - "displayName": "", - "id": "14ae6", - "name": "Walking_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 3, - "offsetY": 3, - "trimX": 985, - "trimY": 1, - "width": 62, - "height": 60, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79ab7": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@79ab7", - "displayName": "", - "id": "79ab7", - "name": "Walking_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 1317, - "trimY": 1, - "width": 58, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d708": { - "importer": "sprite-frame", - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579@5d708", - "displayName": "", - "id": "5d708", - "name": "Walking_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 2, - "offsetY": 3, - "trimX": 1551, - "trimY": 1, - "width": 56, - "height": 58, - "rawWidth": 96, - "rawHeight": 68, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "atlasUuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "k6.png", - "format": 3, - "uuid": "ad366ee7-f088-4fa7-bc95-8c04374c4579", - "textureUuid": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a" - } -} diff --git a/assets/resources/game/hero/knight/k6/k6.png b/assets/resources/game/hero/knight/k6/k6.png deleted file mode 100644 index 4bcfe023..00000000 Binary files a/assets/resources/game/hero/knight/k6/k6.png and /dev/null differ diff --git a/assets/resources/game/hero/knight/k6/k6.png.meta b/assets/resources/game/hero/knight/k6/k6.png.meta deleted file mode 100644 index c16c112f..00000000 --- a/assets/resources/game/hero/knight/k6/k6.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "e9da6848-3633-48da-b4d8-975d7e87a0eb", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a", - "displayName": "k6", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "e9da6848-3633-48da-b4d8-975d7e87a0eb", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "e9da6848-3633-48da-b4d8-975d7e87a0eb@6c48a" - } -} diff --git a/assets/resources/game/hero/knight/k6/max.anim b/assets/resources/game/hero/knight/k6/max.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k6/max.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k6/max.anim.meta b/assets/resources/game/hero/knight/k6/max.anim.meta deleted file mode 100644 index 9d99b878..00000000 --- a/assets/resources/game/hero/knight/k6/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"0aa24c28-32ed-42ee-bd82-1418444a9eba","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/knight/k6/move.anim b/assets/resources/game/hero/knight/k6/move.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/knight/k6/move.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/knight/k6/move.anim.meta b/assets/resources/game/hero/knight/k6/move.anim.meta deleted file mode 100644 index e57936f2..00000000 --- a/assets/resources/game/hero/knight/k6/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"10f1300a-7291-48b0-afe5-57e357a362b5","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/m4.prefab b/assets/resources/game/hero/m4.prefab deleted file mode 100644 index 001fd22b..00000000 --- a/assets/resources/game/hero/m4.prefab +++ /dev/null @@ -1,2761 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "m4", - "_objFlags": 0, - "__editorExtras__": {}, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "persistent": false - }, - { - "__type__": "cc.Node", - "_name": "m4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 12 - }, - { - "__id__": 16 - }, - { - "__id__": 24 - }, - { - "__id__": 66 - } - ], - "_active": true, - "_components": [ - { - "__id__": 116 - }, - { - "__id__": 118 - }, - { - "__id__": 120 - }, - { - "__id__": 122 - }, - { - "__id__": 124 - } - ], - "_prefab": { - "__id__": 126 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.041, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "range_box", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 3 - }, - { - "__id__": 5 - }, - { - "__id__": 7 - }, - { - "__id__": 9 - } - ], - "_prefab": { - "__id__": 11 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 50, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 4 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 20, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a7v65R9FlK35rDSodMKBaf" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "enabledContactListener": true, - "bullet": true, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 0, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1dGvLlJTxIyqWs7tv5eOjk" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "tag": 4, - "_group": 4, - "_density": 0, - "_sensor": false, - "_friction": 0.2, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 250, - "y": 0 - }, - "_size": { - "__type__": "cc.Size", - "width": 500, - "height": 150 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c1dqgNlJdOJJzLITAnZIRf" - }, - { - "__type__": "4d46f6aanNOIZlLrgDp9iTQ", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 10 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e3pHt1VSRBAY+Za/OOtKNW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "efBGnhxpVAs6aCGcg6inWm", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "buff_icons", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 13 - } - ], - "_prefab": { - "__id__": 15 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 12 - }, - "_enabled": true, - "__prefab": { - "__id__": 14 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b4Dy2iOhdGNIRklJZWrCG/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "63odueI6BBfZ9G4QIJALMy", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "anm", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 21 - } - ], - "_prefab": { - "__id__": 23 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -18.908, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 18 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 134, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9eaEPPEkdKYYfWIxgJ1KbU" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 20 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@4c708", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b8HXPqPhZMN71qxUdeHMKv" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 16 - }, - "_enabled": true, - "__prefab": { - "__id__": 22 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "1895a664-aa3c-463c-bb9e-c079a8ad0d3d", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "c156c409-0637-454c-b78d-9d80835be0d2", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "a69ad01c-b636-4a21-9ff5-22f5c130ebc3", - "__expectedType__": "cc.AnimationClip" - }, - { - "__uuid__": "e5e4b147-a83e-4cd8-ac5c-2de7d15a3efb", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": { - "__uuid__": "1895a664-aa3c-463c-bb9e-c079a8ad0d3d", - "__expectedType__": "cc.AnimationClip" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cc+VbiPudF9b+0zbBwUuPW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aKyovCOhDJpr23Of35+5a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "level", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 25 - }, - { - "__id__": 31 - }, - { - "__id__": 37 - }, - { - "__id__": 43 - }, - { - "__id__": 49 - }, - { - "__id__": 55 - } - ], - "_active": true, - "_components": [ - { - "__id__": 61 - }, - { - "__id__": 63 - } - ], - "_prefab": { - "__id__": 65 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -22.542, - "y": 74.394, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.6, - "y": 0.6, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 26 - }, - { - "__id__": 28 - } - ], - "_prefab": { - "__id__": 30 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 100.197, - "y": -77.265, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 25 - }, - "_enabled": true, - "__prefab": { - "__id__": 27 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cfZFaZgxNFo6RAbvR4Rmfc" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 25 - }, - "_enabled": true, - "__prefab": { - "__id__": 29 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e6uKIl33xHs5LfNDT0p+2p" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a7PGybi3lGW6rZ+VnLGFt6", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 32 - }, - { - "__id__": 34 - } - ], - "_prefab": { - "__id__": 36 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -61.16, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 33 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d1lOxIXgdCJ6zpNNZGK8zg" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 35 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e85QoknbNBfpqTQHj53qa7" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "besG/N2EFDa7lwWiyvx8Nl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 38 - }, - { - "__id__": 40 - } - ], - "_prefab": { - "__id__": 42 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -43.555, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 37 - }, - "_enabled": true, - "__prefab": { - "__id__": 39 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "522G27EDRAqaOJNSy1XjqA" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 37 - }, - "_enabled": true, - "__prefab": { - "__id__": 41 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49HA7zbFRI77U6X4ltATKG" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "42gqlfWSRM46ibYgoOOPzt", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 44 - }, - { - "__id__": 46 - } - ], - "_prefab": { - "__id__": 48 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -27.047, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 43 - }, - "_enabled": true, - "__prefab": { - "__id__": 45 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "54B6UJW5NEdJ3RJ7tdZN/H" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 43 - }, - "_enabled": true, - "__prefab": { - "__id__": 47 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2adMQ5svRPv6C0hl03pcKW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "46MlNyXVlAd6iCQ2Xg1GOs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "5", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 50 - }, - { - "__id__": 52 - } - ], - "_prefab": { - "__id__": 54 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": -8.965, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 49 - }, - "_enabled": true, - "__prefab": { - "__id__": 51 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7b9M+THNlDTaqQGsiLKEEh" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 49 - }, - "_enabled": true, - "__prefab": { - "__id__": 53 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4ahRCnXYNP+49Y0cMTeOKb" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "abhOklX+ZBXKyPrgHVNLJs", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "6", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 24 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 56 - }, - { - "__id__": 58 - } - ], - "_prefab": { - "__id__": 60 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -0.377, - "y": 7.656, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.9999999999999997, - "y": 0.9999999999999997, - "z": 0.9999999999999999 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 55 - }, - "_enabled": true, - "__prefab": { - "__id__": 57 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 15 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e2TJIwk4JNxaWqt8GCj63E" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 55 - }, - "_enabled": true, - "__prefab": { - "__id__": 59 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@a6b9d", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "878kYC1dxIX7g/Ed4U8sq0" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b7G1dbavBCbpliqnbRTYqP", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 62 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 30, - "height": 30 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "156zvtWyZL7JeSq/l8Wq5O" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 64 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": null, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bjPXp87JGu52dDySu74sO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2dGu24EexKI57EzgA2ECVa", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "top", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 67 - }, - { - "__id__": 81 - }, - { - "__id__": 95 - }, - { - "__id__": 109 - } - ], - "_active": true, - "_components": [ - { - "__id__": 113 - } - ], - "_prefab": { - "__id__": 115 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 66.342, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "shield", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 68 - } - ], - "_active": true, - "_components": [ - { - "__id__": 74 - }, - { - "__id__": 76 - }, - { - "__id__": 78 - } - ], - "_prefab": { - "__id__": 80 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 11.501, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 67 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 69 - }, - { - "__id__": 71 - } - ], - "_prefab": { - "__id__": 73 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 68 - }, - "_enabled": true, - "__prefab": { - "__id__": 70 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9fuFx1rutDPJpmXHZQV06i" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 68 - }, - "_enabled": true, - "__prefab": { - "__id__": 72 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@57d74", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8cxftn7idH8p9nTs3KLJqw" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "204BmQWu5HYochWmJmvZ2Q", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 75 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d0MNh3HJtExrXzturk+LDA" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 77 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@91cea", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "17uBPzOWxEdYRicfS9GNaC" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 79 - }, - "_barSprite": { - "__id__": 71 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6aUK+YxzlHP5C3LtZAP+L4" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e2ldeUSfZL94JfH8J9EZK7", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "power", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 82 - } - ], - "_active": true, - "_components": [ - { - "__id__": 88 - }, - { - "__id__": 90 - }, - { - "__id__": 92 - } - ], - "_prefab": { - "__id__": 94 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 4.35, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 81 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 83 - }, - { - "__id__": 85 - } - ], - "_prefab": { - "__id__": 87 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 82 - }, - "_enabled": true, - "__prefab": { - "__id__": 84 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6agjeYoTVC9J7pLYKMXcgb" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 82 - }, - "_enabled": true, - "__prefab": { - "__id__": 86 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@44c8a", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "11iaFYUqxJVZtpQS3I9Qiw" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d1wJpgApJOFqu9Q4bxGsCV", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 89 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c44dwGmgpBeoY3E01BxSdn" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 91 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@0e130", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3dZ40kKvZAYJMytVyEGGmt" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 81 - }, - "_enabled": true, - "__prefab": { - "__id__": 93 - }, - "_barSprite": { - "__id__": 85 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d1Ig8UK8tJTbBvHVOjWhDq" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "daMDNLuHtGUIBGeMJq44tf", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "hp", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [ - { - "__id__": 96 - } - ], - "_active": true, - "_components": [ - { - "__id__": 102 - }, - { - "__id__": 104 - }, - { - "__id__": 106 - } - ], - "_prefab": { - "__id__": 108 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 8.374, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Bar", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 95 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 97 - }, - { - "__id__": 99 - } - ], - "_prefab": { - "__id__": 101 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 98 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0bGnx2aQ1BcrJ+utxRHJqq" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 100 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@dfad9", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f7MSTldNJMP4Eom3mxrqRT" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "92KIAm1kpDO7Ob25o5FbkM", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 103 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ffCqCF1GZGdrOnQrsqLJRF" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 105 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@cf09c", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "06Mu/XoUtCV5Lwum/lLMP9" - }, - { - "__type__": "cc.ProgressBar", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 107 - }, - "_barSprite": { - "__id__": 99 - }, - "_mode": 0, - "_totalLength": 40, - "_progress": 1, - "_reverse": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2a6RvTaVlFsa4lMo5kh2Od" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "62EwRu3JROdrEJqlrR6Fx6", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "info", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 110 - } - ], - "_prefab": { - "__id__": 112 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -22.293000000000006, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1.0000000000000002, - "y": 1.0000000000000002, - "z": 1 - }, - "_mobility": 0, - "_layer": 1, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 109 - }, - "_enabled": true, - "__prefab": { - "__id__": 111 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7fw3bXhYBN5JsadKD5UtRw" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d4kFvxz9hAv7H00tHWM+Ty", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 66 - }, - "_enabled": true, - "__prefab": { - "__id__": 114 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "88OJeajfJBCqSUVGHsgfEZ" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fahZdcWFhMaIILFQYTX7LM", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 117 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 80 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14OhXRCixNOaApgow/hFbp" - }, - { - "__type__": "cc.RigidBody2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 119 - }, - "enabledContactListener": true, - "bullet": true, - "awakeOnLoad": true, - "_group": 4, - "_type": 1, - "_allowSleep": false, - "_gravityScale": 1, - "_linearDamping": 0, - "_angularDamping": 0, - "_linearVelocity": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_angularVelocity": 0, - "_fixedRotation": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d8rVs6intBQ7lRU8Dw4zXV" - }, - { - "__type__": "cc.BoxCollider2D", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 121 - }, - "tag": 0, - "_group": 4, - "_density": 1, - "_sensor": false, - "_friction": 1, - "_restitution": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 3.7, - "y": 32.8 - }, - "_size": { - "__type__": "cc.Size", - "width": 35.1, - "height": 50.7 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b2Dt9lJI9FyJCDezkDBPBl" - }, - { - "__type__": "a0379fmhvBHcbNcBF/l43O8", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 123 - }, - "animator": { - "__id__": 21 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73PcRpG0xKxJpIRC2zbI/o" - }, - { - "__type__": "873f8d+SolMEo8DiTTxZRh4", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 125 - }, - "hitFlashMaterial": { - "__uuid__": "a8f34051-ccff-4050-b9d9-234f62977264", - "__expectedType__": "cc.Material" - }, - "BoxRang": { - "__id__": 2 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae2ywFEqlJ26Sq7z7AtGgk" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdklpBwCBM/qJ4WFlQF3kT", - "instance": null, - "targetOverrides": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/m4.prefab.meta b/assets/resources/game/hero/m4.prefab.meta deleted file mode 100644 index b8aa7801..00000000 --- a/assets/resources/game/hero/m4.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.50", - "importer": "prefab", - "imported": true, - "uuid": "cfcd3c65-a59a-4aa7-8f72-883d1dc1440f", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "m4" - } -} diff --git a/assets/resources/game/hero/magic/f2/a6.plist b/assets/resources/game/hero/magic/f2/f2.plist similarity index 100% rename from assets/resources/game/hero/magic/f2/a6.plist rename to assets/resources/game/hero/magic/f2/f2.plist diff --git a/assets/resources/game/hero/magic/f2/a6.plist.meta b/assets/resources/game/hero/magic/f2/f2.plist.meta similarity index 100% rename from assets/resources/game/hero/magic/f2/a6.plist.meta rename to assets/resources/game/hero/magic/f2/f2.plist.meta diff --git a/assets/resources/game/hero/magic/f2/a6.png b/assets/resources/game/hero/magic/f2/f2.png similarity index 100% rename from assets/resources/game/hero/magic/f2/a6.png rename to assets/resources/game/hero/magic/f2/f2.png diff --git a/assets/resources/game/hero/magic/f2/a6.png.meta b/assets/resources/game/hero/magic/f2/f2.png.meta similarity index 97% rename from assets/resources/game/hero/magic/f2/a6.png.meta rename to assets/resources/game/hero/magic/f2/f2.png.meta index bf95e5dd..318866c6 100644 --- a/assets/resources/game/hero/magic/f2/a6.png.meta +++ b/assets/resources/game/hero/magic/f2/f2.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "59fbc5be-4950-4b13-aa5d-76f8ca465187@6c48a", - "displayName": "a6", + "displayName": "f2", "id": "6c48a", "name": "texture", "userData": { diff --git a/assets/resources/game/hero/magic/f4.meta b/assets/resources/game/hero/magic/f3.meta similarity index 100% rename from assets/resources/game/hero/magic/f4.meta rename to assets/resources/game/hero/magic/f3.meta diff --git a/assets/resources/game/hero/magic/f4/f4.plist b/assets/resources/game/hero/magic/f3/f4.plist similarity index 100% rename from assets/resources/game/hero/magic/f4/f4.plist rename to assets/resources/game/hero/magic/f3/f4.plist diff --git a/assets/resources/game/hero/magic/f4/f4.plist.meta b/assets/resources/game/hero/magic/f3/f4.plist.meta similarity index 100% rename from assets/resources/game/hero/magic/f4/f4.plist.meta rename to assets/resources/game/hero/magic/f3/f4.plist.meta diff --git a/assets/resources/game/hero/magic/f4/f4.png b/assets/resources/game/hero/magic/f3/f4.png similarity index 100% rename from assets/resources/game/hero/magic/f4/f4.png rename to assets/resources/game/hero/magic/f3/f4.png diff --git a/assets/resources/game/hero/magic/f4/f4.png.meta b/assets/resources/game/hero/magic/f3/f4.png.meta similarity index 100% rename from assets/resources/game/hero/magic/f4/f4.png.meta rename to assets/resources/game/hero/magic/f3/f4.png.meta diff --git a/assets/resources/game/hero/magic/m4.meta b/assets/resources/game/hero/magic/m4.meta deleted file mode 100644 index bfae0d1f..00000000 --- a/assets/resources/game/hero/magic/m4.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"820acbc3-f610-4f47-8ea8-b4ec6b852a81","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/magic/m4/animtor.meta b/assets/resources/game/hero/magic/m4/animtor.meta deleted file mode 100644 index f995a57b..00000000 --- a/assets/resources/game/hero/magic/m4/animtor.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"b0690865-d0ef-4493-adc8-5169384c5fad","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/magic/m4/animtor/atk.anim b/assets/resources/game/hero/magic/m4/animtor/atk.anim deleted file mode 100644 index 8f4fa03d..00000000 --- a/assets/resources/game/hero/magic/m4/animtor/atk.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "atk", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@c766d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@6c5ef", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@0b16d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@da3c5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@b9e0a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@3f2b6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@f9efe", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@384ed", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@9105d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@c9bdd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@d292f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@7a8ed", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/magic/m4/animtor/atk.anim.meta b/assets/resources/game/hero/magic/m4/animtor/atk.anim.meta deleted file mode 100644 index 8c680fca..00000000 --- a/assets/resources/game/hero/magic/m4/animtor/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"c156c409-0637-454c-b78d-9d80835be0d2","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/magic/m4/animtor/idle.anim b/assets/resources/game/hero/magic/m4/animtor/idle.anim deleted file mode 100644 index 90377196..00000000 --- a/assets/resources/game/hero/magic/m4/animtor/idle.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "idle", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 2, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@4c708", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@c2001", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@51041", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@070be", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@95deb", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@2e741", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@20733", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@6f129", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@ba6b9", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@8a3b7", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@5eae4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@a55c9", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/magic/m4/animtor/idle.anim.meta b/assets/resources/game/hero/magic/m4/animtor/idle.anim.meta deleted file mode 100644 index 391e5905..00000000 --- a/assets/resources/game/hero/magic/m4/animtor/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1895a664-aa3c-463c-bb9e-c079a8ad0d3d","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/magic/m4/animtor/max.anim b/assets/resources/game/hero/magic/m4/animtor/max.anim deleted file mode 100644 index 34aef86b..00000000 --- a/assets/resources/game/hero/magic/m4/animtor/max.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "max", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@c766d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@6c5ef", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@0b16d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@da3c5", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@b9e0a", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@3f2b6", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@f9efe", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@384ed", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@9105d", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@c9bdd", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@d292f", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@7a8ed", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/magic/m4/animtor/max.anim.meta b/assets/resources/game/hero/magic/m4/animtor/max.anim.meta deleted file mode 100644 index f7b06092..00000000 --- a/assets/resources/game/hero/magic/m4/animtor/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a69ad01c-b636-4a21-9ff5-22f5c130ebc3","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/magic/m4/animtor/move.anim b/assets/resources/game/hero/magic/m4/animtor/move.anim deleted file mode 100644 index f40e91cb..00000000 --- a/assets/resources/game/hero/magic/m4/animtor/move.anim +++ /dev/null @@ -1,133 +0,0 @@ -[ - { - "__type__": "cc.AnimationClip", - "_name": "move", - "_objFlags": 0, - "__editorExtras__": { - "embeddedPlayerGroups": [] - }, - "_native": "", - "sample": 24, - "speed": 1, - "wrapMode": 2, - "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.041666666666666664, - 0.08333333333333333, - 0.125, - 0.16666666666666666, - 0.20833333333333334, - 0.25, - 0.2916666666666667, - 0.3333333333333333, - 0.375, - 0.4166666666666667, - 0.4583333333333333 - ], - "_values": [ - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@f5fe8", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@21a42", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@ae947", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@131ce", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@f5e7e", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@e5f12", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@2efc0", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@df806", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@0d1e4", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@20b40", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@e7135", - "__expectedType__": "cc.SpriteFrame" - }, - { - "__uuid__": "6ec7da30-50e8-406a-97ef-da93385036a8@43139", - "__expectedType__": "cc.SpriteFrame" - } - ] - }, - { - "__type__": "cc.AnimationClipAdditiveSettings", - "enabled": false, - "refClip": null - } -] \ No newline at end of file diff --git a/assets/resources/game/hero/magic/m4/animtor/move.anim.meta b/assets/resources/game/hero/magic/m4/animtor/move.anim.meta deleted file mode 100644 index af984714..00000000 --- a/assets/resources/game/hero/magic/m4/animtor/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"e5e4b147-a83e-4cd8-ac5c-2de7d15a3efb","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/magic/m4/m4.plist b/assets/resources/game/hero/magic/m4/m4.plist deleted file mode 100644 index c4b454f1..00000000 --- a/assets/resources/game/hero/magic/m4/m4.plist +++ /dev/null @@ -1,566 +0,0 @@ - - - - - frames - - magic-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,0},{134,134}} - textureRotated - - - magic-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,0},{134,134}} - textureRotated - - - magic-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,0},{134,134}} - textureRotated - - - magic-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,0},{134,134}} - textureRotated - - - magic-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,268},{134,134}} - textureRotated - - - magic-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,268},{134,134}} - textureRotated - - - magic-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,268},{134,134}} - textureRotated - - - magic-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,402},{134,134}} - textureRotated - - - magic-16.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,402},{134,134}} - textureRotated - - - magic-17.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,402},{134,134}} - textureRotated - - - magic-18.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,536},{134,134}} - textureRotated - - - magic-19.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,536},{134,134}} - textureRotated - - - magic-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,0},{134,134}} - textureRotated - - - magic-20.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,536},{134,134}} - textureRotated - - - magic-21.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,670},{134,134}} - textureRotated - - - magic-22.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,670},{134,134}} - textureRotated - - - magic-23.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,268},{134,134}} - textureRotated - - - magic-24.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,670},{134,134}} - textureRotated - - - magic-25.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,804},{134,134}} - textureRotated - - - magic-26.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,804},{134,134}} - textureRotated - - - magic-27.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,804},{134,134}} - textureRotated - - - magic-28.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,938},{134,134}} - textureRotated - - - magic-29.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,938},{134,134}} - textureRotated - - - magic-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,134},{134,134}} - textureRotated - - - magic-30.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,938},{134,134}} - textureRotated - - - magic-31.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,938},{134,134}} - textureRotated - - - magic-32.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,804},{134,134}} - textureRotated - - - magic-33.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,804},{134,134}} - textureRotated - - - magic-34.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,804},{134,134}} - textureRotated - - - magic-35.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,670},{134,134}} - textureRotated - - - magic-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,134},{134,134}} - textureRotated - - - magic-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,134},{134,134}} - textureRotated - - - magic-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,134},{134,134}} - textureRotated - - - magic-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,134},{134,134}} - textureRotated - - - magic-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,134},{134,134}} - textureRotated - - - magic-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,0},{134,134}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - m4.png - size - {402,1072} - smartupdate - $TexturePacker:SmartUpdate:a858ee7f6e1c5131ce3613bbf193becd:5cdd3eadf1d0b4256cb74482a70d6b78:f9d326478fca1acb1c1e8f4a7e60682c$ - textureFileName - m4.png - - - diff --git a/assets/resources/game/hero/magic/m4/m4.plist.meta b/assets/resources/game/hero/magic/m4/m4.plist.meta deleted file mode 100644 index 395df8b7..00000000 --- a/assets/resources/game/hero/magic/m4/m4.plist.meta +++ /dev/null @@ -1,1673 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8", - "files": [ - ".json" - ], - "subMetas": { - "20733": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@20733", - "displayName": "", - "id": "20733", - "name": "magic-4", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "43139": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@43139", - "displayName": "", - "id": "43139", - "name": "magic-23", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 268, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51041": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@51041", - "displayName": "", - "id": "51041", - "name": "magic-10", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4c708": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@4c708", - "displayName": "", - "id": "4c708", - "name": "magic-0", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c2001": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@c2001", - "displayName": "", - "id": "c2001", - "name": "magic-1", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "070be": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@070be", - "displayName": "", - "id": "070be", - "name": "magic-11", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f5fe8": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@f5fe8", - "displayName": "", - "id": "f5fe8", - "name": "magic-12", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 268, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "21a42": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@21a42", - "displayName": "", - "id": "21a42", - "name": "magic-13", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 268, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ae947": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@ae947", - "displayName": "", - "id": "ae947", - "name": "magic-14", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 268, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "131ce": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@131ce", - "displayName": "", - "id": "131ce", - "name": "magic-15", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 402, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f5e7e": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@f5e7e", - "displayName": "", - "id": "f5e7e", - "name": "magic-16", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 402, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e5f12": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@e5f12", - "displayName": "", - "id": "e5f12", - "name": "magic-17", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 402, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2efc0": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@2efc0", - "displayName": "", - "id": "2efc0", - "name": "magic-18", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 536, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "df806": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@df806", - "displayName": "", - "id": "df806", - "name": "magic-19", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 536, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "95deb": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@95deb", - "displayName": "", - "id": "95deb", - "name": "magic-2", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0d1e4": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@0d1e4", - "displayName": "", - "id": "0d1e4", - "name": "magic-20", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 536, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "20b40": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@20b40", - "displayName": "", - "id": "20b40", - "name": "magic-21", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 670, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e7135": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@e7135", - "displayName": "", - "id": "e7135", - "name": "magic-22", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 670, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c766d": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@c766d", - "displayName": "", - "id": "c766d", - "name": "magic-24", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 670, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6c5ef": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@6c5ef", - "displayName": "", - "id": "6c5ef", - "name": "magic-25", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 804, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0b16d": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@0b16d", - "displayName": "", - "id": "0b16d", - "name": "magic-26", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 804, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "da3c5": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@da3c5", - "displayName": "", - "id": "da3c5", - "name": "magic-27", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 804, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b9e0a": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@b9e0a", - "displayName": "", - "id": "b9e0a", - "name": "magic-28", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 938, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3f2b6": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@3f2b6", - "displayName": "", - "id": "3f2b6", - "name": "magic-29", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 938, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2e741": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@2e741", - "displayName": "", - "id": "2e741", - "name": "magic-3", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f9efe": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@f9efe", - "displayName": "", - "id": "f9efe", - "name": "magic-30", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 938, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "384ed": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@384ed", - "displayName": "", - "id": "384ed", - "name": "magic-31", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 938, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9105d": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@9105d", - "displayName": "", - "id": "9105d", - "name": "magic-32", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 804, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c9bdd": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@c9bdd", - "displayName": "", - "id": "c9bdd", - "name": "magic-33", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 804, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d292f": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@d292f", - "displayName": "", - "id": "d292f", - "name": "magic-34", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 804, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7a8ed": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@7a8ed", - "displayName": "", - "id": "7a8ed", - "name": "magic-35", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 670, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6f129": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@6f129", - "displayName": "", - "id": "6f129", - "name": "magic-5", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba6b9": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@ba6b9", - "displayName": "", - "id": "ba6b9", - "name": "magic-6", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8a3b7": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@8a3b7", - "displayName": "", - "id": "8a3b7", - "name": "magic-7", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5eae4": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@5eae4", - "displayName": "", - "id": "5eae4", - "name": "magic-8", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a55c9": { - "importer": "sprite-frame", - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8@a55c9", - "displayName": "", - "id": "a55c9", - "name": "magic-9", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "atlasUuid": "6ec7da30-50e8-406a-97ef-da93385036a8" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "m4.png", - "format": 3, - "uuid": "6ec7da30-50e8-406a-97ef-da93385036a8", - "textureUuid": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a" - } -} diff --git a/assets/resources/game/hero/magic/m4/m4.png b/assets/resources/game/hero/magic/m4/m4.png deleted file mode 100644 index 9d091d6a..00000000 Binary files a/assets/resources/game/hero/magic/m4/m4.png and /dev/null differ diff --git a/assets/resources/game/hero/magic/m4/m4.png.meta b/assets/resources/game/hero/magic/m4/m4.png.meta deleted file mode 100644 index 9d7b5478..00000000 --- a/assets/resources/game/hero/magic/m4/m4.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a", - "displayName": "m4", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "529d9dff-e8f4-40a2-bf8f-97f9e119c02f@6c48a" - } -} diff --git a/assets/resources/game/hero/magic/m5.meta b/assets/resources/game/hero/magic/m5.meta deleted file mode 100644 index da804f19..00000000 --- a/assets/resources/game/hero/magic/m5.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"809f8ca2-723e-485e-b696-b49e547391f5","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/magic/m5/atk.anim b/assets/resources/game/hero/magic/m5/atk.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/magic/m5/atk.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/magic/m5/atk.anim.meta b/assets/resources/game/hero/magic/m5/atk.anim.meta deleted file mode 100644 index 55280660..00000000 --- a/assets/resources/game/hero/magic/m5/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"64840adc-d6f2-459b-bd9c-4eb4bcf94797","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/magic/m5/idle.anim b/assets/resources/game/hero/magic/m5/idle.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/magic/m5/idle.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/magic/m5/idle.anim.meta b/assets/resources/game/hero/magic/m5/idle.anim.meta deleted file mode 100644 index 6333dd11..00000000 --- a/assets/resources/game/hero/magic/m5/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"f578c31f-cf6d-49bd-b9b4-f8852e2b4fbf","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/magic/m5/m5.plist b/assets/resources/game/hero/magic/m5/m5.plist deleted file mode 100644 index 31bc28ca..00000000 --- a/assets/resources/game/hero/magic/m5/m5.plist +++ /dev/null @@ -1,746 +0,0 @@ - - - - - frames - - ice-0.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,0},{134,134}} - textureRotated - - - ice-1.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,0},{134,134}} - textureRotated - - - ice-10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,0},{134,134}} - textureRotated - - - ice-11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,0},{134,134}} - textureRotated - - - ice-12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,268},{134,134}} - textureRotated - - - ice-13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,268},{134,134}} - textureRotated - - - ice-14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,268},{134,134}} - textureRotated - - - ice-15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,402},{134,134}} - textureRotated - - - ice-16.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,402},{134,134}} - textureRotated - - - ice-17.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,402},{134,134}} - textureRotated - - - ice-18.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,536},{134,134}} - textureRotated - - - ice-19.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,536},{134,134}} - textureRotated - - - ice-2.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,0},{134,134}} - textureRotated - - - ice-20.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,536},{134,134}} - textureRotated - - - ice-21.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,670},{134,134}} - textureRotated - - - ice-22.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,670},{134,134}} - textureRotated - - - ice-23.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,268},{134,134}} - textureRotated - - - ice-24.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,0},{134,134}} - textureRotated - - - ice-25.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,670},{134,134}} - textureRotated - - - ice-26.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,804},{134,134}} - textureRotated - - - ice-27.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,804},{134,134}} - textureRotated - - - ice-28.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,804},{134,134}} - textureRotated - - - ice-29.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,938},{134,134}} - textureRotated - - - ice-3.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,134},{134,134}} - textureRotated - - - ice-30.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,938},{134,134}} - textureRotated - - - ice-31.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,938},{134,134}} - textureRotated - - - ice-32.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,1072},{134,134}} - textureRotated - - - ice-33.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,1072},{134,134}} - textureRotated - - - ice-34.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,1072},{134,134}} - textureRotated - - - ice-35.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,0},{134,134}} - textureRotated - - - ice-36.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,1206},{134,134}} - textureRotated - - - ice-37.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,1206},{134,134}} - textureRotated - - - ice-38.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,1206},{134,134}} - textureRotated - - - ice-39.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,1340},{134,134}} - textureRotated - - - ice-4.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,134},{134,134}} - textureRotated - - - ice-40.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,1340},{134,134}} - textureRotated - - - ice-41.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,1340},{134,134}} - textureRotated - - - ice-42.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,1340},{134,134}} - textureRotated - - - ice-43.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,1340},{134,134}} - textureRotated - - - ice-44.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,1340},{134,134}} - textureRotated - - - ice-45.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,1206},{134,134}} - textureRotated - - - ice-46.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,1206},{134,134}} - textureRotated - - - ice-47.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,1206},{134,134}} - textureRotated - - - ice-5.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,134},{134,134}} - textureRotated - - - ice-6.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,134},{134,134}} - textureRotated - - - ice-7.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{134,134},{134,134}} - textureRotated - - - ice-8.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{0,134},{134,134}} - textureRotated - - - ice-9.png - - aliases - - spriteOffset - {0,0} - spriteSize - {134,134} - spriteSourceSize - {134,134} - textureRect - {{268,0},{134,134}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - m5.png - size - {402,1474} - smartupdate - $TexturePacker:SmartUpdate:cf10ef9747ede3b5dd337775aea21da2:03e11bdbb5fbc1505493452e295dd6ef:173533c2da65cff8ad99d2ee5e16e2eb$ - textureFileName - m5.png - - - diff --git a/assets/resources/game/hero/magic/m5/m5.plist.meta b/assets/resources/game/hero/magic/m5/m5.plist.meta deleted file mode 100644 index a5cee2fd..00000000 --- a/assets/resources/game/hero/magic/m5/m5.plist.meta +++ /dev/null @@ -1,2225 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec", - "files": [ - ".json" - ], - "subMetas": { - "14560": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@14560", - "displayName": "", - "id": "14560", - "name": "ice-17", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 402, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "53699": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@53699", - "displayName": "", - "id": "53699", - "name": "ice-37", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 1206, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "58509": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@58509", - "displayName": "", - "id": "58509", - "name": "ice-29", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 938, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "68436": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@68436", - "displayName": "", - "id": "68436", - "name": "ice-3", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69156": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@69156", - "displayName": "", - "id": "69156", - "name": "ice-31", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 938, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fc717": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@fc717", - "displayName": "", - "id": "fc717", - "name": "ice-0", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bff9b": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@bff9b", - "displayName": "", - "id": "bff9b", - "name": "ice-1", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cdfee": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@cdfee", - "displayName": "", - "id": "cdfee", - "name": "ice-10", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "3bf39": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@3bf39", - "displayName": "", - "id": "3bf39", - "name": "ice-11", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1492a": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@1492a", - "displayName": "", - "id": "1492a", - "name": "ice-12", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 268, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07e99": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@07e99", - "displayName": "", - "id": "07e99", - "name": "ice-13", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 268, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9f591": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@9f591", - "displayName": "", - "id": "9f591", - "name": "ice-14", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 268, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d8936": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@d8936", - "displayName": "", - "id": "d8936", - "name": "ice-15", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 402, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2c915": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@2c915", - "displayName": "", - "id": "2c915", - "name": "ice-16", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 402, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "57e90": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@57e90", - "displayName": "", - "id": "57e90", - "name": "ice-18", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 536, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5ba48": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@5ba48", - "displayName": "", - "id": "5ba48", - "name": "ice-19", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 536, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2f7fa": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@2f7fa", - "displayName": "", - "id": "2f7fa", - "name": "ice-2", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7bc25": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@7bc25", - "displayName": "", - "id": "7bc25", - "name": "ice-20", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 536, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f2723": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@f2723", - "displayName": "", - "id": "f2723", - "name": "ice-21", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 670, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "035c1": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@035c1", - "displayName": "", - "id": "035c1", - "name": "ice-22", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 670, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "abc95": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@abc95", - "displayName": "", - "id": "abc95", - "name": "ice-23", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 268, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c1cde": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@c1cde", - "displayName": "", - "id": "c1cde", - "name": "ice-24", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4a526": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@4a526", - "displayName": "", - "id": "4a526", - "name": "ice-25", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 670, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bbb7c": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@bbb7c", - "displayName": "", - "id": "bbb7c", - "name": "ice-26", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 804, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a6996": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@a6996", - "displayName": "", - "id": "a6996", - "name": "ice-27", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 804, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f23f": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@4f23f", - "displayName": "", - "id": "4f23f", - "name": "ice-28", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 804, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c0bf1": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@c0bf1", - "displayName": "", - "id": "c0bf1", - "name": "ice-30", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 938, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "43f4c": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@43f4c", - "displayName": "", - "id": "43f4c", - "name": "ice-32", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1072, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4d069": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@4d069", - "displayName": "", - "id": "4d069", - "name": "ice-33", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 1072, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8069e": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@8069e", - "displayName": "", - "id": "8069e", - "name": "ice-34", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 1072, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4466f": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@4466f", - "displayName": "", - "id": "4466f", - "name": "ice-35", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "06880": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@06880", - "displayName": "", - "id": "06880", - "name": "ice-36", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1206, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "df3d1": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@df3d1", - "displayName": "", - "id": "df3d1", - "name": "ice-38", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 1206, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e67ab": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@e67ab", - "displayName": "", - "id": "e67ab", - "name": "ice-39", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1340, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6779c": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@6779c", - "displayName": "", - "id": "6779c", - "name": "ice-4", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "afef9": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@afef9", - "displayName": "", - "id": "afef9", - "name": "ice-40", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 1340, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "059b0": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@059b0", - "displayName": "", - "id": "059b0", - "name": "ice-41", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 1340, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "76f7c": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@76f7c", - "displayName": "", - "id": "76f7c", - "name": "ice-42", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 1340, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fb875": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@fb875", - "displayName": "", - "id": "fb875", - "name": "ice-43", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 1340, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2e18e": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@2e18e", - "displayName": "", - "id": "2e18e", - "name": "ice-44", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1340, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dd8f1": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@dd8f1", - "displayName": "", - "id": "dd8f1", - "name": "ice-45", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 1206, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8b5f3": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@8b5f3", - "displayName": "", - "id": "8b5f3", - "name": "ice-46", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 1206, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "46d0f": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@46d0f", - "displayName": "", - "id": "46d0f", - "name": "ice-47", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 1206, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "959e4": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@959e4", - "displayName": "", - "id": "959e4", - "name": "ice-5", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bbdb1": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@bbdb1", - "displayName": "", - "id": "bbdb1", - "name": "ice-6", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1b9db": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@1b9db", - "displayName": "", - "id": "1b9db", - "name": "ice-7", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 134, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "eaf7d": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@eaf7d", - "displayName": "", - "id": "eaf7d", - "name": "ice-8", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 134, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "bb524": { - "importer": "sprite-frame", - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec@bb524", - "displayName": "", - "id": "bb524", - "name": "ice-9", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 268, - "trimY": 0, - "width": 134, - "height": 134, - "rawWidth": 134, - "rawHeight": 134, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "atlasUuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "m5.png", - "format": 3, - "uuid": "e0ad075d-fc65-4bdb-b416-310e9588eeec", - "textureUuid": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a" - } -} diff --git a/assets/resources/game/hero/magic/m5/m5.png b/assets/resources/game/hero/magic/m5/m5.png deleted file mode 100644 index 9100465d..00000000 Binary files a/assets/resources/game/hero/magic/m5/m5.png and /dev/null differ diff --git a/assets/resources/game/hero/magic/m5/m5.png.meta b/assets/resources/game/hero/magic/m5/m5.png.meta deleted file mode 100644 index aab8833e..00000000 --- a/assets/resources/game/hero/magic/m5/m5.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "b24113ef-424b-4431-9254-a7871c2cbdaa", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a", - "displayName": "m5", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "b24113ef-424b-4431-9254-a7871c2cbdaa", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "b24113ef-424b-4431-9254-a7871c2cbdaa@6c48a" - } -} diff --git a/assets/resources/game/hero/magic/m5/max.anim b/assets/resources/game/hero/magic/m5/max.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/magic/m5/max.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/magic/m5/max.anim.meta b/assets/resources/game/hero/magic/m5/max.anim.meta deleted file mode 100644 index da2d9df9..00000000 --- a/assets/resources/game/hero/magic/m5/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"f6276c3a-b054-4e9e-84d9-dd23ea3a87d2","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/magic/m5/move.anim b/assets/resources/game/hero/magic/m5/move.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/magic/m5/move.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/magic/m5/move.anim.meta b/assets/resources/game/hero/magic/m5/move.anim.meta deleted file mode 100644 index 67a07cc1..00000000 --- a/assets/resources/game/hero/magic/m5/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a982c76d-e854-46cb-aba7-7d050e492d92","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/magic/m6.meta b/assets/resources/game/hero/magic/m6.meta deleted file mode 100644 index 7337d83e..00000000 --- a/assets/resources/game/hero/magic/m6.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"1.2.0","importer":"directory","imported":true,"uuid":"e25d531f-6464-4c36-be77-2a4fa9ea2245","files":[],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/hero/magic/m6/atk.anim b/assets/resources/game/hero/magic/m6/atk.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/magic/m6/atk.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/magic/m6/atk.anim.meta b/assets/resources/game/hero/magic/m6/atk.anim.meta deleted file mode 100644 index 8072bf6d..00000000 --- a/assets/resources/game/hero/magic/m6/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"75114fac-7a20-4a52-a8a2-1f73bdb7b90b","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/magic/m6/idle.anim b/assets/resources/game/hero/magic/m6/idle.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/magic/m6/idle.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/magic/m6/idle.anim.meta b/assets/resources/game/hero/magic/m6/idle.anim.meta deleted file mode 100644 index 5f54c311..00000000 --- a/assets/resources/game/hero/magic/m6/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"d4a0f54b-be55-40e8-af1c-dee3e5303ca5","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/magic/m6/m6.plist b/assets/resources/game/hero/magic/m6/m6.plist deleted file mode 100644 index ad6b5bf3..00000000 --- a/assets/resources/game/hero/magic/m6/m6.plist +++ /dev/null @@ -1,926 +0,0 @@ - - - - - frames - - Casting Spells_000.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{775,59},{50,56}} - textureRotated - - - Casting Spells_001.png - - aliases - - spriteOffset - {1,3} - spriteSize - {46,56} - spriteSourceSize - {80,72} - textureRect - {{1341,59},{46,56}} - textureRotated - - - Casting Spells_002.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,56} - spriteSourceSize - {80,72} - textureRect - {{1439,1},{44,56}} - textureRotated - - - Casting Spells_003.png - - aliases - - spriteOffset - {-3,3} - spriteSize - {44,56} - spriteSourceSize - {80,72} - textureRect - {{1485,1},{44,56}} - textureRotated - - - Casting Spells_004.png - - aliases - - spriteOffset - {-4,3} - spriteSize - {46,56} - spriteSourceSize - {80,72} - textureRect - {{1389,59},{46,56}} - textureRotated - - - Casting Spells_005.png - - aliases - - spriteOffset - {-5,3} - spriteSize - {46,56} - spriteSourceSize - {80,72} - textureRect - {{1391,1},{46,56}} - textureRotated - - - Casting Spells_006.png - - aliases - - spriteOffset - {-5,3} - spriteSize - {46,56} - spriteSourceSize - {80,72} - textureRect - {{1437,59},{46,56}} - textureRotated - - - Casting Spells_007.png - - aliases - - spriteOffset - {-2,3} - spriteSize - {44,56} - spriteSourceSize - {80,72} - textureRect - {{1485,59},{44,56}} - textureRotated - - - Casting Spells_008.png - - aliases - - spriteOffset - {6,3} - spriteSize - {48,56} - spriteSourceSize - {80,72} - textureRect - {{1141,1},{48,56}} - textureRotated - - - Casting Spells_009.png - - aliases - - spriteOffset - {12,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{777,1},{50,56}} - textureRotated - - - Casting Spells_010.png - - aliases - - spriteOffset - {12,3} - spriteSize - {48,56} - spriteSourceSize - {80,72} - textureRect - {{1191,1},{48,56}} - textureRotated - - - Casting Spells_011.png - - aliases - - spriteOffset - {9,3} - spriteSize - {48,56} - spriteSourceSize - {80,72} - textureRect - {{1191,59},{48,56}} - textureRotated - - - Idle Blinking_000.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{775,59},{50,56}} - textureRotated - - - Idle Blinking_001.png - - aliases - - spriteOffset - {6,3} - spriteSize - {48,56} - spriteSourceSize - {80,72} - textureRect - {{1241,1},{48,56}} - textureRotated - - - Idle Blinking_002.png - - aliases - - spriteOffset - {6,3} - spriteSize - {48,56} - spriteSourceSize - {80,72} - textureRect - {{1241,59},{48,56}} - textureRotated - - - Idle Blinking_003.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{827,59},{50,56}} - textureRotated - - - Idle Blinking_004.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{829,1},{50,56}} - textureRotated - - - Idle Blinking_005.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{879,59},{50,56}} - textureRotated - - - Idle Blinking_006.png - - aliases - - spriteOffset - {4,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{881,1},{50,56}} - textureRotated - - - Idle Blinking_007.png - - aliases - - spriteOffset - {4,3} - spriteSize - {52,56} - spriteSourceSize - {80,72} - textureRect - {{505,59},{52,56}} - textureRotated - - - Idle Blinking_008.png - - aliases - - spriteOffset - {4,3} - spriteSize - {52,56} - spriteSourceSize - {80,72} - textureRect - {{559,59},{52,56}} - textureRotated - - - Idle Blinking_009.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{931,59},{50,56}} - textureRotated - - - Idle Blinking_010.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{933,1},{50,56}} - textureRotated - - - Idle Blinking_011.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{983,59},{50,56}} - textureRotated - - - Taunt_000.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{775,59},{50,56}} - textureRotated - - - Taunt_001.png - - aliases - - spriteOffset - {6,3} - spriteSize - {52,56} - spriteSourceSize - {80,72} - textureRect - {{561,1},{52,56}} - textureRotated - - - Taunt_002.png - - aliases - - spriteOffset - {5,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{1,1},{54,56}} - textureRotated - - - Taunt_003.png - - aliases - - spriteOffset - {4,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{1,59},{54,56}} - textureRotated - - - Taunt_004.png - - aliases - - spriteOffset - {4,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{57,1},{54,56}} - textureRotated - - - Taunt_005.png - - aliases - - spriteOffset - {4,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{57,59},{54,56}} - textureRotated - - - Taunt_006.png - - aliases - - spriteOffset - {4,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{113,1},{54,56}} - textureRotated - - - Taunt_007.png - - aliases - - spriteOffset - {5,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{113,59},{54,56}} - textureRotated - - - Taunt_008.png - - aliases - - spriteOffset - {5,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{169,1},{54,56}} - textureRotated - - - Taunt_009.png - - aliases - - spriteOffset - {5,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{169,59},{54,56}} - textureRotated - - - Taunt_010.png - - aliases - - spriteOffset - {5,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{225,1},{54,56}} - textureRotated - - - Taunt_011.png - - aliases - - spriteOffset - {5,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{225,59},{54,56}} - textureRotated - - - Taunt_012.png - - aliases - - spriteOffset - {4,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{281,1},{54,56}} - textureRotated - - - Taunt_013.png - - aliases - - spriteOffset - {4,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{281,59},{54,56}} - textureRotated - - - Taunt_014.png - - aliases - - spriteOffset - {4,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{337,1},{54,56}} - textureRotated - - - Taunt_015.png - - aliases - - spriteOffset - {4,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{337,59},{54,56}} - textureRotated - - - Taunt_016.png - - aliases - - spriteOffset - {5,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{393,1},{54,56}} - textureRotated - - - Taunt_017.png - - aliases - - spriteOffset - {6,3} - spriteSize - {52,56} - spriteSourceSize - {80,72} - textureRect - {{613,59},{52,56}} - textureRotated - - - Walking_000.png - - aliases - - spriteOffset - {5,3} - spriteSize - {48,56} - spriteSourceSize - {80,72} - textureRect - {{1291,1},{48,56}} - textureRotated - - - Walking_001.png - - aliases - - spriteOffset - {5,3} - spriteSize - {48,56} - spriteSourceSize - {80,72} - textureRect - {{1291,59},{48,56}} - textureRotated - - - Walking_002.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{985,1},{50,56}} - textureRotated - - - Walking_003.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{1035,59},{50,56}} - textureRotated - - - Walking_004.png - - aliases - - spriteOffset - {4,3} - spriteSize - {52,56} - spriteSourceSize - {80,72} - textureRect - {{615,1},{52,56}} - textureRotated - - - Walking_005.png - - aliases - - spriteOffset - {3,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{393,59},{54,56}} - textureRotated - - - Walking_006.png - - aliases - - spriteOffset - {3,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{449,1},{54,56}} - textureRotated - - - Walking_007.png - - aliases - - spriteOffset - {4,3} - spriteSize - {52,56} - spriteSourceSize - {80,72} - textureRect - {{667,59},{52,56}} - textureRotated - - - Walking_008.png - - aliases - - spriteOffset - {4,3} - spriteSize - {52,56} - spriteSourceSize - {80,72} - textureRect - {{669,1},{52,56}} - textureRotated - - - Walking_009.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{1037,1},{50,56}} - textureRotated - - - Walking_010.png - - aliases - - spriteOffset - {6,3} - spriteSize - {48,56} - spriteSourceSize - {80,72} - textureRect - {{1341,1},{48,56}} - textureRotated - - - Walking_011.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{1087,59},{50,56}} - textureRotated - - - Walking_012.png - - aliases - - spriteOffset - {5,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{1089,1},{50,56}} - textureRotated - - - Walking_013.png - - aliases - - spriteOffset - {4,3} - spriteSize - {52,56} - spriteSourceSize - {80,72} - textureRect - {{721,59},{52,56}} - textureRotated - - - Walking_014.png - - aliases - - spriteOffset - {3,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{449,59},{54,56}} - textureRotated - - - Walking_015.png - - aliases - - spriteOffset - {3,3} - spriteSize - {54,56} - spriteSourceSize - {80,72} - textureRect - {{505,1},{54,56}} - textureRotated - - - Walking_016.png - - aliases - - spriteOffset - {4,3} - spriteSize - {52,56} - spriteSourceSize - {80,72} - textureRect - {{723,1},{52,56}} - textureRotated - - - Walking_017.png - - aliases - - spriteOffset - {4,3} - spriteSize - {50,56} - spriteSourceSize - {80,72} - textureRect - {{1139,59},{50,56}} - textureRotated - - - - metadata - - format - 3 - pixelFormat - RGBA8888 - premultiplyAlpha - - realTextureFileName - m6.png - size - {1530,116} - smartupdate - $TexturePacker:SmartUpdate:bf82b8091e5cb0de222d26dbefd2a75d:c4d06a9dee4d74e181b1a6223c51adc4:074edd047197337c81542c9e72b4923c$ - textureFileName - m6.png - - - diff --git a/assets/resources/game/hero/magic/m6/m6.plist.meta b/assets/resources/game/hero/magic/m6/m6.plist.meta deleted file mode 100644 index 5b53d23f..00000000 --- a/assets/resources/game/hero/magic/m6/m6.plist.meta +++ /dev/null @@ -1,2777 +0,0 @@ -{ - "ver": "1.0.8", - "importer": "sprite-atlas", - "imported": true, - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05", - "files": [ - ".json" - ], - "subMetas": { - "26428": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@26428", - "displayName": "", - "id": "26428", - "name": "Taunt_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 6, - "offsetY": 3, - "trimX": 561, - "trimY": 1, - "width": 52, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "48686": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@48686", - "displayName": "", - "id": "48686", - "name": "Casting Spells_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 12, - "offsetY": 3, - "trimX": 1191, - "trimY": 1, - "width": 48, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "50949": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@50949", - "displayName": "", - "id": "50949", - "name": "Taunt_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 169, - "trimY": 59, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "55628": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@55628", - "displayName": "", - "id": "55628", - "name": "Idle Blinking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 6, - "offsetY": 3, - "trimX": 1241, - "trimY": 1, - "width": 48, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60134": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@60134", - "displayName": "", - "id": "60134", - "name": "Walking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 1037, - "trimY": 1, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "60799": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@60799", - "displayName": "", - "id": "60799", - "name": "Taunt_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 775, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "95554": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@95554", - "displayName": "", - "id": "95554", - "name": "Casting Spells_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 775, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "2bcb8": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@2bcb8", - "displayName": "", - "id": "2bcb8", - "name": "Casting Spells_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 1, - "offsetY": 3, - "trimX": 1341, - "trimY": 59, - "width": 46, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "44f4c": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@44f4c", - "displayName": "", - "id": "44f4c", - "name": "Casting Spells_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 1439, - "trimY": 1, - "width": 44, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f5e82": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@f5e82", - "displayName": "", - "id": "f5e82", - "name": "Casting Spells_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -3, - "offsetY": 3, - "trimX": 1485, - "trimY": 1, - "width": 44, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ee15d": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@ee15d", - "displayName": "", - "id": "ee15d", - "name": "Casting Spells_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -4, - "offsetY": 3, - "trimX": 1389, - "trimY": 59, - "width": 46, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "75d9e": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@75d9e", - "displayName": "", - "id": "75d9e", - "name": "Casting Spells_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -5, - "offsetY": 3, - "trimX": 1391, - "trimY": 1, - "width": 46, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "11add": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@11add", - "displayName": "", - "id": "11add", - "name": "Casting Spells_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -5, - "offsetY": 3, - "trimX": 1437, - "trimY": 59, - "width": 46, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "7f482": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@7f482", - "displayName": "", - "id": "7f482", - "name": "Casting Spells_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -2, - "offsetY": 3, - "trimX": 1485, - "trimY": 59, - "width": 44, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1e653": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@1e653", - "displayName": "", - "id": "1e653", - "name": "Casting Spells_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 6, - "offsetY": 3, - "trimX": 1141, - "trimY": 1, - "width": 48, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "44af0": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@44af0", - "displayName": "", - "id": "44af0", - "name": "Casting Spells_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 12, - "offsetY": 3, - "trimX": 777, - "trimY": 1, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "c5e99": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@c5e99", - "displayName": "", - "id": "c5e99", - "name": "Casting Spells_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 9, - "offsetY": 3, - "trimX": 1191, - "trimY": 59, - "width": 48, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d58e": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@5d58e", - "displayName": "", - "id": "5d58e", - "name": "Idle Blinking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 775, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ffb7f": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@ffb7f", - "displayName": "", - "id": "ffb7f", - "name": "Idle Blinking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 6, - "offsetY": 3, - "trimX": 1241, - "trimY": 59, - "width": 48, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4b666": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@4b666", - "displayName": "", - "id": "4b666", - "name": "Idle Blinking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 827, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4dcb3": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@4dcb3", - "displayName": "", - "id": "4dcb3", - "name": "Idle Blinking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 829, - "trimY": 1, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "51cbc": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@51cbc", - "displayName": "", - "id": "51cbc", - "name": "Idle Blinking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 879, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "11bc6": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@11bc6", - "displayName": "", - "id": "11bc6", - "name": "Idle Blinking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 881, - "trimY": 1, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b2558": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@b2558", - "displayName": "", - "id": "b2558", - "name": "Idle Blinking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 505, - "trimY": 59, - "width": 52, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d6d4a": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@d6d4a", - "displayName": "", - "id": "d6d4a", - "name": "Idle Blinking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 559, - "trimY": 59, - "width": 52, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1b51c": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@1b51c", - "displayName": "", - "id": "1b51c", - "name": "Idle Blinking_009", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 931, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d437a": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@d437a", - "displayName": "", - "id": "d437a", - "name": "Idle Blinking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 933, - "trimY": 1, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "cd5d5": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@cd5d5", - "displayName": "", - "id": "cd5d5", - "name": "Idle Blinking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 983, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "daa98": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@daa98", - "displayName": "", - "id": "daa98", - "name": "Taunt_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 1, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "0779a": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@0779a", - "displayName": "", - "id": "0779a", - "name": "Taunt_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 1, - "trimY": 59, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5eb28": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@5eb28", - "displayName": "", - "id": "5eb28", - "name": "Taunt_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 57, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "1a538": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@1a538", - "displayName": "", - "id": "1a538", - "name": "Taunt_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 57, - "trimY": 59, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fe61e": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@fe61e", - "displayName": "", - "id": "fe61e", - "name": "Taunt_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 113, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d1415": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@d1415", - "displayName": "", - "id": "d1415", - "name": "Taunt_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 113, - "trimY": 59, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6823d": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@6823d", - "displayName": "", - "id": "6823d", - "name": "Taunt_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 169, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "e496c": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@e496c", - "displayName": "", - "id": "e496c", - "name": "Taunt_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 225, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "648f3": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@648f3", - "displayName": "", - "id": "648f3", - "name": "Taunt_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 225, - "trimY": 59, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "9e4e1": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@9e4e1", - "displayName": "", - "id": "9e4e1", - "name": "Taunt_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 281, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f27c8": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@f27c8", - "displayName": "", - "id": "f27c8", - "name": "Taunt_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 281, - "trimY": 59, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "fce75": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@fce75", - "displayName": "", - "id": "fce75", - "name": "Taunt_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 337, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "a12c4": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@a12c4", - "displayName": "", - "id": "a12c4", - "name": "Taunt_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 337, - "trimY": 59, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "956e1": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@956e1", - "displayName": "", - "id": "956e1", - "name": "Taunt_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 393, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "d0912": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@d0912", - "displayName": "", - "id": "d0912", - "name": "Taunt_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 6, - "offsetY": 3, - "trimX": 613, - "trimY": 59, - "width": 52, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "02dd6": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@02dd6", - "displayName": "", - "id": "02dd6", - "name": "Walking_000", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 1291, - "trimY": 1, - "width": 48, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6d9c8": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@6d9c8", - "displayName": "", - "id": "6d9c8", - "name": "Walking_001", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 1291, - "trimY": 59, - "width": 48, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "418cb": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@418cb", - "displayName": "", - "id": "418cb", - "name": "Walking_002", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 985, - "trimY": 1, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "4f6da": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@4f6da", - "displayName": "", - "id": "4f6da", - "name": "Walking_003", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 1035, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "dabad": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@dabad", - "displayName": "", - "id": "dabad", - "name": "Walking_004", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 615, - "trimY": 1, - "width": 52, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "69e31": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@69e31", - "displayName": "", - "id": "69e31", - "name": "Walking_005", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 393, - "trimY": 59, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "b7990": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@b7990", - "displayName": "", - "id": "b7990", - "name": "Walking_006", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 449, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "f6bf0": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@f6bf0", - "displayName": "", - "id": "f6bf0", - "name": "Walking_007", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 667, - "trimY": 59, - "width": 52, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "6698a": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@6698a", - "displayName": "", - "id": "6698a", - "name": "Walking_008", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 669, - "trimY": 1, - "width": 52, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "8564d": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@8564d", - "displayName": "", - "id": "8564d", - "name": "Walking_010", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 6, - "offsetY": 3, - "trimX": 1341, - "trimY": 1, - "width": 48, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "272a0": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@272a0", - "displayName": "", - "id": "272a0", - "name": "Walking_011", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 1087, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ba3ee": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@ba3ee", - "displayName": "", - "id": "ba3ee", - "name": "Walking_012", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 5, - "offsetY": 3, - "trimX": 1089, - "trimY": 1, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "ff098": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@ff098", - "displayName": "", - "id": "ff098", - "name": "Walking_013", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 721, - "trimY": 59, - "width": 52, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "07703": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@07703", - "displayName": "", - "id": "07703", - "name": "Walking_014", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 449, - "trimY": 59, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "14ae6": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@14ae6", - "displayName": "", - "id": "14ae6", - "name": "Walking_015", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 3, - "offsetY": 3, - "trimX": 505, - "trimY": 1, - "width": 54, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "79ab7": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@79ab7", - "displayName": "", - "id": "79ab7", - "name": "Walking_016", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 723, - "trimY": 1, - "width": 52, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - }, - "5d708": { - "importer": "sprite-frame", - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05@5d708", - "displayName": "", - "id": "5d708", - "name": "Walking_017", - "userData": { - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 4, - "offsetY": 3, - "trimX": 1139, - "trimY": 59, - "width": 50, - "height": 56, - "rawWidth": 80, - "rawHeight": 72, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "packable": true, - "pixelsToUnit": 100, - "pivotX": 0.5, - "pivotY": 0.5, - "meshType": 0, - "vertices": { - "rawPosition": [], - "indexes": [], - "uv": [], - "nuv": [], - "minPos": [], - "maxPos": [] - }, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "atlasUuid": "93574b8b-d3bc-4289-8862-011ca91a1f05" - }, - "ver": "1.0.12", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "atlasTextureName": "m6.png", - "format": 3, - "uuid": "93574b8b-d3bc-4289-8862-011ca91a1f05", - "textureUuid": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a" - } -} diff --git a/assets/resources/game/hero/magic/m6/m6.png b/assets/resources/game/hero/magic/m6/m6.png deleted file mode 100644 index fba59370..00000000 Binary files a/assets/resources/game/hero/magic/m6/m6.png and /dev/null differ diff --git a/assets/resources/game/hero/magic/m6/m6.png.meta b/assets/resources/game/hero/magic/m6/m6.png.meta deleted file mode 100644 index 2c755264..00000000 --- a/assets/resources/game/hero/magic/m6/m6.png.meta +++ /dev/null @@ -1,42 +0,0 @@ -{ - "ver": "1.0.26", - "importer": "image", - "imported": true, - "uuid": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91", - "files": [ - ".json", - ".png" - ], - "subMetas": { - "6c48a": { - "importer": "texture", - "uuid": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a", - "displayName": "m6", - "id": "6c48a", - "name": "texture", - "userData": { - "wrapModeS": "repeat", - "wrapModeT": "repeat", - "minfilter": "linear", - "magfilter": "linear", - "mipfilter": "none", - "anisotropy": 0, - "isUuid": true, - "imageUuidOrDatabaseUri": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91", - "visible": false - }, - "ver": "1.0.22", - "imported": true, - "files": [ - ".json" - ], - "subMetas": {} - } - }, - "userData": { - "hasAlpha": true, - "type": "texture", - "fixAlphaTransparencyArtifacts": false, - "redirect": "77e7ab2e-c8a6-4748-b314-c8da6dd04e91@6c48a" - } -} diff --git a/assets/resources/game/hero/magic/m6/max.anim b/assets/resources/game/hero/magic/m6/max.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/magic/m6/max.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/magic/m6/max.anim.meta b/assets/resources/game/hero/magic/m6/max.anim.meta deleted file mode 100644 index f845d7bd..00000000 --- a/assets/resources/game/hero/magic/m6/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"06ec65be-432c-4a64-baf6-a9a0ca5a73fa","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/magic/m6/move.anim b/assets/resources/game/hero/magic/m6/move.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/magic/m6/move.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/magic/m6/move.anim.meta b/assets/resources/game/hero/magic/m6/move.anim.meta deleted file mode 100644 index e489238c..00000000 --- a/assets/resources/game/hero/magic/m6/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"15e4621d-7b46-4d56-a603-70f0338087ab","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/hero/z/atk.anim b/assets/resources/game/hero/z/atk.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/z/atk.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/z/atk.anim.meta b/assets/resources/game/hero/z/atk.anim.meta deleted file mode 100644 index 4dc0f2fe..00000000 --- a/assets/resources/game/hero/z/atk.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"a4e38f3c-b685-4255-b0ed-1081096fecc0","files":[".cconb"],"subMetas":{},"userData":{"name":"atk"}} diff --git a/assets/resources/game/hero/z/idle.anim b/assets/resources/game/hero/z/idle.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/z/idle.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/z/idle.anim.meta b/assets/resources/game/hero/z/idle.anim.meta deleted file mode 100644 index b443a7e6..00000000 --- a/assets/resources/game/hero/z/idle.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"024f9f62-cd59-4f41-8c48-708c0baa53b0","files":[".cconb"],"subMetas":{},"userData":{"name":"idle"}} diff --git a/assets/resources/game/hero/z/max.anim b/assets/resources/game/hero/z/max.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/z/max.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/z/max.anim.meta b/assets/resources/game/hero/z/max.anim.meta deleted file mode 100644 index 28155179..00000000 --- a/assets/resources/game/hero/z/max.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"1403349f-8643-445c-856e-11f811e2ef0a","files":[".cconb"],"subMetas":{},"userData":{"name":"max"}} diff --git a/assets/resources/game/hero/z/move.anim b/assets/resources/game/hero/z/move.anim deleted file mode 100644 index fc151c71..00000000 --- a/assets/resources/game/hero/z/move.anim +++ /dev/null @@ -1,17 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "", - "_objFlags": 0, - "_native": "", - "sample": 60, - "speed": 1, - "wrapMode": 1, - "events": [], - "_duration": 0, - "_keys": [], - "_stepness": 0, - "curveDatas": {}, - "_curves": [], - "_commonTargets": [], - "_hash": 0 -} diff --git a/assets/resources/game/hero/z/move.anim.meta b/assets/resources/game/hero/z/move.anim.meta deleted file mode 100644 index 9cbc8037..00000000 --- a/assets/resources/game/hero/z/move.anim.meta +++ /dev/null @@ -1 +0,0 @@ -{"ver":"2.0.3","importer":"animation-clip","imported":true,"uuid":"fbba9178-00db-4c2b-aa03-1b86d247a5a4","files":[".cconb"],"subMetas":{},"userData":{"name":"move"}} diff --git a/assets/resources/game/skills/tooltip.prefab b/assets/resources/game/skills/tooltip.prefab index 15c0dffb..e8ccbd9a 100644 --- a/assets/resources/game/skills/tooltip.prefab +++ b/assets/resources/game/skills/tooltip.prefab @@ -31,14 +31,14 @@ "_active": true, "_components": [ { - "__id__": 50 + "__id__": 44 }, { - "__id__": 52 + "__id__": 46 } ], "_prefab": { - "__id__": 54 + "__id__": 48 }, "_lpos": { "__type__": "cc.Vec3", @@ -227,7 +227,7 @@ "_horizontalAlign": 1, "_verticalAlign": 1, "_actualFontSize": 20, - "_fontSize": 20, + "_fontSize": 25, "_fontFamily": "Arial", "_lineHeight": 40, "_overflow": 0, @@ -640,7 +640,7 @@ "_horizontalAlign": 1, "_verticalAlign": 1, "_actualFontSize": 20, - "_fontSize": 20, + "_fontSize": 25, "_fontFamily": "Arial", "_lineHeight": 40, "_overflow": 0, @@ -906,19 +906,16 @@ "_children": [ { "__id__": 35 - }, - { - "__id__": 41 } ], "_active": false, "_components": [ { - "__id__": 47 + "__id__": 41 } ], "_prefab": { - "__id__": 49 + "__id__": 43 }, "_lpos": { "__type__": "cc.Vec3", @@ -951,7 +948,7 @@ }, { "__type__": "cc.Node", - "_name": "icon", + "_name": "name", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -970,142 +967,6 @@ "_prefab": { "__id__": 40 }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.3, - "y": 0.3, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 35 - }, - "_enabled": true, - "__prefab": { - "__id__": 37 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 102, - "height": 106 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "76RsfrmVhC8aRsoSDoXOr6" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 35 - }, - "_enabled": true, - "__prefab": { - "__id__": 39 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "56fae78e-4db4-4ef1-be24-d030fc909ed1@b3f5a", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e6zvPSzrNGPI+L5a80mP1I" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "69RccngEBPwq84OnOB2n4i", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "name", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 34 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 42 - }, - { - "__id__": 44 - } - ], - "_prefab": { - "__id__": 46 - }, "_lpos": { "__type__": "cc.Vec3", "x": 0, @@ -1141,11 +1002,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 41 + "__id__": 35 }, "_enabled": true, "__prefab": { - "__id__": 43 + "__id__": 37 }, "_contentSize": { "__type__": "cc.Size", @@ -1169,11 +1030,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 41 + "__id__": 35 }, "_enabled": true, "__prefab": { - "__id__": 45 + "__id__": 39 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1189,16 +1050,16 @@ "_horizontalAlign": 1, "_verticalAlign": 1, "_actualFontSize": 15, - "_fontSize": 15, + "_fontSize": 20, "_fontFamily": "Arial", - "_lineHeight": 16, + "_lineHeight": 20, "_overflow": 0, "_enableWrapText": true, "_font": null, "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": false, + "_isBold": true, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -1210,7 +1071,7 @@ "b": 0, "a": 255 }, - "_outlineWidth": 2, + "_outlineWidth": 1, "_enableShadow": false, "_shadowColor": { "__type__": "cc.Color", @@ -1254,7 +1115,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 48 + "__id__": 42 }, "_contentSize": { "__type__": "cc.Size", @@ -1295,7 +1156,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 51 + "__id__": 45 }, "_contentSize": { "__type__": "cc.Size", @@ -1323,7 +1184,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 53 + "__id__": 47 }, "_id": "" }, diff --git a/assets/script/game/Role/RoleViewComp.ts b/assets/script/game/Role/RoleViewComp.ts index 1cc20f72..c41618b4 100644 --- a/assets/script/game/Role/RoleViewComp.ts +++ b/assets/script/game/Role/RoleViewComp.ts @@ -210,7 +210,7 @@ export class RoleViewComp extends CCComp { }else{ t_pos=null } - skill.load(pos,speed,dis,scale,this.node,skill_uuid,atk,angle,t_pos); + skill.load(this.enemy,pos,speed,dis,scale,this.node,skill_uuid,atk,angle,t_pos); // this.tooltip(3,smc.skills[skill_uuid].name,this.skill_uuid); } //使用max_skill @@ -222,7 +222,7 @@ export class RoleViewComp extends CCComp { let speed =smc.skills[this.max_skill_uuid].speed; let dis = smc.skills[this.max_skill_uuid].dis; let atk = smc.skills[this.max_skill_uuid].atk+this.atk; - skill.load(pos,speed,dis,scale,this.node,this.max_skill_uuid,atk); + skill.load(this.enemy,pos,speed,dis,scale,this.node,this.max_skill_uuid,atk); this.tooltip(3,smc.skills[this.max_skill_uuid].name,this.max_skill_uuid); } in_atk(dt: number) { diff --git a/assets/script/game/common/SingletonModuleComp.ts b/assets/script/game/common/SingletonModuleComp.ts index f2500128..49facaa0 100644 --- a/assets/script/game/common/SingletonModuleComp.ts +++ b/assets/script/game/common/SingletonModuleComp.ts @@ -21,6 +21,9 @@ export class SingletonModuleComp extends ecs.Comp { initialize: Initialize = null!; /** 游戏地图 */ map: GameMap = null!; + cards: any = [ + {uuid:9001,type:1},{uuid:9011,type:1},{uuid:9021,type:1},{uuid:9031,type:1},{uuid:9041,type:1} + ]; player_skills: any = [ ]; player_buffs: any = [ diff --git a/assets/script/game/common/config/CardSet.ts b/assets/script/game/common/config/CardSet.ts index afdc7696..63afbd90 100644 --- a/assets/script/game/common/config/CardSet.ts +++ b/assets/script/game/common/config/CardSet.ts @@ -4,21 +4,17 @@ export const CardList={ 1:[ - - {uuid:9001,type:1},{uuid:9002,type:1},{uuid:9003,type:1},{uuid:9004,type:1},{uuid:9005,type:1},{uuid:9006,type:1},{uuid:9007,type:1},{uuid:9008,type:1},{uuid:9009,type:1}, - {uuid:9010,type:1}, + {uuid:9001,type:1},{uuid:9011,type:1},{uuid:9021,type:1},{uuid:9031,type:1},{uuid:9041,type:1} // {uuid:9007,type:1},{uuid:9008,type:1},{uuid:9009,type:1},{uuid:9010,type:1},{uuid:9011,type:1},{uuid:9012,type:1}, ], 2:[ - {uuid:9001,type:1},{uuid:9002,type:1},{uuid:9003,type:1},{uuid:9004,type:1},{uuid:9005,type:1},{uuid:9006,type:1},{uuid:9007,type:1},{uuid:9008,type:1},{uuid:9009,type:1}, - {uuid:9010,type:1},// {uuid:9007,type:1},{uuid:9008,type:1},{uuid:9009,type:1},{uuid:9010,type:1},{uuid:9011,type:1},{uuid:9012,type:1}, + {uuid:9001,type:1},{uuid:9011,type:1},{uuid:9021,type:1},{uuid:9031,type:1},{uuid:9041,type:1} ], 3:[ - {uuid:9001,type:1},{uuid:9002,type:1},{uuid:9003,type:1},{uuid:9004,type:1},{uuid:9005,type:1},{uuid:9006,type:1},{uuid:9007,type:1},{uuid:9008,type:1},{uuid:9009,type:1}, - {uuid:9010,type:1},// {uuid:9007,type:1},{uuid:9008,type:1},{uuid:9009,type:1},{uuid:9010,type:1},{uuid:9011,type:1},{uuid:9012,type:1}, + {uuid:9001,type:1},{uuid:9011,type:1},{uuid:9021,type:1},{uuid:9031,type:1},{uuid:9041,type:1} ], 4:[ - {uuid:9010,type:1},{uuid:9001,type:1},{uuid:9002,type:1},{uuid:9003,type:1},{uuid:9004,type:1},{uuid:9005,type:1},{uuid:9006,type:1},{uuid:9007,type:1},{uuid:9008,type:1},{uuid:9009,type:1}, + {uuid:9001,type:1},{uuid:9011,type:1},{uuid:9021,type:1},{uuid:9031,type:1},{uuid:9041,type:1} ], 5:[ {uuid:1001,type:2},{uuid:1002,type:2},{uuid:4011,type:2},{uuid:4012,type:2}, @@ -33,8 +29,4 @@ export const CardList={ {uuid:6102,type:3},{uuid:6103,type:3}, {uuid:6210,type:3},{uuid:6213,type:3},{uuid:6216,type:3},{uuid:6211,type:3},{uuid:6212,type:3}, {uuid:6214,type:3},{uuid:6215,type:3},{uuid:6217,type:3},{uuid:6218,type:3}, ], - 7:[ - - ], - } diff --git a/assets/script/game/common/config/heroSet.ts b/assets/script/game/common/config/heroSet.ts index 5e01110a..0fd01634 100644 --- a/assets/script/game/common/config/heroSet.ts +++ b/assets/script/game/common/config/heroSet.ts @@ -1,24 +1,21 @@ export const HeroSet={ - 9001:{uuid: 9001,path: "k1",type: 1,level: 1,name: "战士1",atk: 4,hp: 24,atk_dis:40,atk_cd: 2,power: 50,speed: 30, - skill: "base",max_skill: "base",skill_uuid: 9001,max_skill_uuid: 1001,word: "守护",info: "自身护盾", atktype: "攻击型",mon: "狗"}, - 9002:{uuid: 9002,path: "k2",type: 2,level: 1,name: "战士2",atk: 2,hp: 48,atk_dis:40,atk_cd: 2,power: 50,speed: 30, - skill: "base",max_skill: "base",skill_uuid: 9001,max_skill_uuid: 1001,word: "守护",info: "自身护盾", atktype: "血量型",mon: "绵羊"}, - 9003:{uuid: 9003,path: "k3",type: 1,level: 1,name: "战士3",atk: 4,hp: 24,atk_dis:40,atk_cd: 2,power: 50,speed: 30, - skill: "base",max_skill: "base",skill_uuid: 9001,max_skill_uuid: 1001, atktype: "攻击型",mon: "蚂蚁"}, - 9004:{uuid: 9004,path: "m1",type: 1,level: 1,name: "魔法师1",atk: 4,hp: 24,atk_dis:400,atk_cd: 2,power: 50,speed: 30, - skill: "base2",max_skill: "base2",skill_uuid: 9001,max_skill_uuid: 1001, atktype: "攻击型",mon: "蚂蚁"}, - 9005:{uuid: 9005,path: "m2",type: 3,level: 1,name: "魔法师2",atk: 3,hp: 18,atk_dis:400,atk_cd: 1,power: 50,speed: 30, - skill: "base2",max_skill: "base2",skill_uuid: 9001,max_skill_uuid: 1001, atktype: "攻速型",mon: "鼠"}, - 9006:{uuid: 9006,path: "m3",type: 3,level: 1,name: "魔法师3",atk: 3,hp: 18,atk_dis:400,atk_cd: 2,power: 50,speed: 30, - skill: "base2",max_skill: "base2",skill_uuid: 9001,max_skill_uuid: 1001,word: "守护",info: "自身护盾", atktype: "攻速型",mon: "猫"}, - 9007:{uuid: 9007,path: "arc1",type: 3,level: 1,name: "弓箭手1",atk: 3,hp: 18,atk_dis:500,atk_cd: 1,power: 50,speed: 30, - skill: "base3",max_skill: "base3",skill_uuid: 9001,max_skill_uuid: 1001,word: "狂暴",info: "全体攻击", atktype: "攻速型",mon: "松鼠"}, - 9008:{uuid: 9008,path: "arc2",type: 3,level: 2,name: "弓箭手2",atk: 4,hp: 27,atk_dis:500,atk_cd: 1,power: 50,speed: 30, - skill: "base3",max_skill: "base3",skill_uuid: 9001,max_skill_uuid: 1001, atktype: "攻速型",mon: "机械蜜蜂"}, - 9009:{uuid: 9009,path: "arc3",type: 1,level: 2,name: "弓箭手3",atk: 6,hp: 36,atk_dis:500,atk_cd: 2,power: 50,speed: 30, - skill: "base3",max_skill: "base3",skill_uuid: 9001,max_skill_uuid: 1001, atktype: "攻击型",mon: "鹰"}, - 9010:{uuid: 9009,path: "m4",type: 1,level: 2,name: "大火法",atk: 6,hp: 36,atk_dis:500,atk_cd: 2,power: 50,speed: 30, - skill: "fire",max_skill: "base3",skill_uuid: 9001,max_skill_uuid: 1001, atktype: "攻击型",mon: "鹰"}, + 9001:{uuid: 9001,path: "k3",type: 1,level: 1,name: "战士",atk: 4,hp: 350,atk_dis:40,atk_cd: 2,power:0,power_max: 10,speed: 30, + skill: "base",max_skill: "base",skill_uuid: 9001,max_skill_uuid: 1001,word: "守护",info: "自身护盾", atktype: 1,}, + + + 9011:{uuid: 9004,path: "m1",type: 1,level: 1,name: "冰法",atk: 4,hp: 15,atk_dis:400,atk_cd: 2,power:0,power_max: 10,speed: 30, + skill: "base2",max_skill: "ice",skill_uuid: 9001,max_skill_uuid: 1002, atktype: 1,}, + 9021:{uuid: 9005,path: "m2",type: 3,level: 1,name: "火法",atk: 6,hp: 15,atk_dis:400,atk_cd: 2,power:0,power_max: 10,speed: 30, + skill: "base2",max_skill: "fire",skill_uuid: 9001,max_skill_uuid: 1001, atktype: 2}, + + 9031:{uuid: 9006,path: "m3",type: 3,level: 1,name: "牧师",atk: 3,hp: 20,atk_dis:400,atk_cd: 2,power:0,power_max: 10,speed: 30, + skill: "base2",max_skill: "base2",skill_uuid: 9001,max_skill_uuid: 1001,word: "守护",info: "自身护盾", atktype: 2}, + + + 9041:{uuid: 9009,path: "arc1",type: 3,level: 1,name: "弓箭手",atk: 3,hp: 15,atk_dis:400,atk_cd: 1,power:0,power_max: 10,speed: 30, + skill: "base3",max_skill: "base3",skill_uuid: 9001,max_skill_uuid: 1001,word: "狂暴",info: "全体攻击", atktype: 2}, + + } \ No newline at end of file diff --git a/assets/script/game/hero/BoxRangComp.ts b/assets/script/game/hero/BoxRangComp.ts index 294323e7..8e37b55e 100644 --- a/assets/script/game/hero/BoxRangComp.ts +++ b/assets/script/game/hero/BoxRangComp.ts @@ -65,6 +65,7 @@ export class BoxRangComp extends CCComp { }else{ if(this.HeroViewComp.enemy.isValid==false){ this.HeroViewComp.enemy = otherCollider.node; + } } this.HeroViewComp.is_atking = true; diff --git a/assets/script/game/hero/Hero.ts b/assets/script/game/hero/Hero.ts index aaddaac7..da836c94 100644 --- a/assets/script/game/hero/Hero.ts +++ b/assets/script/game/hero/Hero.ts @@ -81,6 +81,7 @@ export class Hero extends ecs.Entity { mv.atk_cd = smc.heros[uuid].atk_cd; mv.atk_dis = smc.heros[uuid].atk_dis; mv.power = smc.heros[uuid].power; + mv.power_max= smc.heros[uuid].power_max; mv.type = smc.heros[uuid].type; mv.skill_uuid = 9001; mv.max_skill_uuid = smc.heros[uuid].max_skill_uuid; diff --git a/assets/script/game/hero/HeroViewComp.ts b/assets/script/game/hero/HeroViewComp.ts index 208b74ab..148afbb9 100644 --- a/assets/script/game/hero/HeroViewComp.ts +++ b/assets/script/game/hero/HeroViewComp.ts @@ -21,6 +21,7 @@ import { SkillSet } from "../common/config/SkillSet"; import { Tooltip } from "../skills/Tooltip"; import { MoveToComp } from "../common/ecs/position/MoveTo"; import { BoxRangComp } from "./BoxRangComp"; +import { MonViewComp } from "../mon/MonViewComp"; const { ccclass, property } = _decorator; /** 角色显示组件 */ @@ -224,7 +225,9 @@ export class HeroViewComp extends CCComp { this.node.getChildByName("top").getChildByName("power").getComponent(ProgressBar)!.progress = power_progress; } shoot(skill_uuid:number){ - // console.log("mon shoot"); + console.log("hero shoot"); + console.log(this.enemy) + console.log("hero box",this.enemy.getComponent(MonViewComp)) let skill = ecs.getEntity(Skill); let x=32 let pos = v3(35*this.scale,50) @@ -234,11 +237,13 @@ export class HeroViewComp extends CCComp { let atk = smc.skills[skill_uuid].atk+this.atk; let angle=0 let t_pos:Vec3 = v3(0,0) + let eid = 0 if(this.enemy){ if(!this.enemy.isValid){ console.log("move_to",this.enemy.isValid); return } + eid = this.enemy.getComponent(MonViewComp).ent.eid t_pos = v3(this.enemy.position.x-this.node.position.x,this.enemy.position.y-this.node.position.y) angle = Math.atan2(t_pos.y,t_pos.x) * 180 / Math.PI; if(this.scale == -1){ @@ -247,7 +252,8 @@ export class HeroViewComp extends CCComp { }else{ t_pos=null } - skill.load(pos,speed,dis,scale,this.node,skill_uuid,atk,angle,t_pos); + + skill.load(eid,this.enemy,pos,speed,dis,scale,this.node,skill_uuid,atk,angle,t_pos); // this.tooltip(3,smc.skills[skill_uuid].name,this.skill_uuid); } //使用max_skill @@ -259,8 +265,14 @@ export class HeroViewComp extends CCComp { let speed =smc.skills[this.max_skill_uuid].speed; let dis = smc.skills[this.max_skill_uuid].dis; let atk = smc.skills[this.max_skill_uuid].atk+this.atk; - skill.load(pos,speed,dis,scale,this.node,this.max_skill_uuid,atk); - this.tooltip(3,smc.skills[this.max_skill_uuid].name,this.max_skill_uuid); + let eid = 0 + if(this.enemy){ + if(this.enemy.isValid){ + eid = this.enemy.getComponent(MonViewComp).ent.eid + } + } + skill.load(eid,this.enemy,pos,speed,dis,scale,this.node,this.max_skill_uuid,atk); + this.tooltip(3,smc.skills[this.max_skill_uuid].name,this.max_skill_uuid,100); } in_act(dt: number) { if(this.atk_time >= this.atk_cd){ @@ -372,12 +384,12 @@ export class HeroViewComp extends CCComp { this.node.getChildByName("top").getChildByName("shield").active=true } } - tooltip(type:number=1,value:string="",s_uuid:number=1001){ + tooltip(type:number=1,value:string="",s_uuid:number=1001,y:number=60){ // console.log("tooltip",type); let tip =ecs.getEntity(Tooltip); let pos = this.node.getPosition(); let node =this.node.parent - pos.y=pos.y+60; + pos.y=pos.y+y; tip.load(pos,type,value,s_uuid,node); } diff --git a/assets/script/game/map/CardController.ts b/assets/script/game/map/CardController.ts index bfb7dcac..1e07ee53 100644 --- a/assets/script/game/map/CardController.ts +++ b/assets/script/game/map/CardController.ts @@ -236,8 +236,8 @@ export class CardControllerComp extends CCComp { load_cards() { this.in_load = true let card:any=null - for (let index = 1; index <= 6; index++) { - card=RandomManager.instance.getRandomByObjectList(CardList[index], 1); + for (let index = 1; index <= 4; index++) { + card=RandomManager.instance.getRandomByObjectList(smc.cards, 1); this.cards[index].uuid=card[0].uuid this.cards[index].type=card[0].type @@ -246,20 +246,31 @@ export class CardControllerComp extends CCComp { let name: string = ""; let level: number = 0; let { uuid, type } = card[0]; - switch (type) { - case 1: - url = "game/hero/hero_icon"; - ({ uuid: pathName, name, level } = smc.heros[uuid]); - break; - case 2: - url = "game/heros/skill"; - ({ path: pathName, name, level } = smc.skills[uuid]); - break; - case 3: - default: - url = "game/heros/skill"; - ({ path: pathName, name, level } = smc.skills[uuid]); - } + url = "game/hero/hero_icon"; + ({ uuid: pathName, name, level } = smc.heros[uuid]); + this.cards[index].lv=level + let node=this.node.getChildByName('cards').getChildByName('card'+index) + node.getChildByName('cost').getComponent(Label).string=level.toString() + node.getChildByName('name').getComponent(Label).string=name + // const sprite = node.getChildByName("item").getComponent(Sprite); + // console.log(this['card'+index],url,pathName,sprite) + resources.load(url, SpriteAtlas, (err: any, atlas) => { + const sprite = node.getChildByName("item").getComponent(Sprite); + sprite.spriteFrame = atlas.getSpriteFrame(pathName); + }); + this.cards[index].alive=true + } + for (let index = 5; index <= 6; index++) { + card=RandomManager.instance.getRandomByObjectList(CardList[index], 1); + this.cards[index].uuid=card[0].uuid + this.cards[index].type=card[0].type + let url: string = ""; + let pathName: string = ""; + let name: string = ""; + let level: number = 0; + let { uuid, type } = card[0]; + url = "game/heros/skill"; + ({ path: pathName, name, level } = smc.skills[uuid]); this.cards[index].lv=level let node=this.node.getChildByName('cards').getChildByName('card'+index) node.getChildByName('cost').getComponent(Label).string=level.toString() diff --git a/assets/script/game/map/MapMonsterComp.ts b/assets/script/game/map/MapMonsterComp.ts index dd35092a..834cd885 100644 --- a/assets/script/game/map/MapMonsterComp.ts +++ b/assets/script/game/map/MapMonsterComp.ts @@ -156,8 +156,8 @@ export class MapMonsterComp extends CCComp { let monster_layer = scene.entityLayer!.node! let monster_layer1 = scene.entityLayer1!.node!; let monster_layer2 = scene.entityLayer2!.node!; - this.addMonster(m[0],monster_layer,pos) - this.addMonster(m1[0],monster_layer1,pos1) + this.addMonster(m[0],monster_layer,pos2) + this.addMonster(m1[0],monster_layer1,pos2) this.addMonster(m2[0],monster_layer2,pos2) this.setp_num -= 1 } diff --git a/assets/script/game/mon/MonViewComp.ts b/assets/script/game/mon/MonViewComp.ts index db2edc3d..6140a0c7 100644 --- a/assets/script/game/mon/MonViewComp.ts +++ b/assets/script/game/mon/MonViewComp.ts @@ -268,7 +268,7 @@ export class MonViewComp extends CCComp { }else{ t_pos=null } - skill.load(pos,speed,dis,scale,this.node,skill_uuid,atk,angle,t_pos); + skill.load(this.enemy,pos,speed,dis,scale,this.node,skill_uuid,atk,angle,t_pos); // this.tooltip(3,smc.skills[skill_uuid].name,this.skill_uuid); } //使用max_skill @@ -280,7 +280,7 @@ export class MonViewComp extends CCComp { let speed =smc.skills[this.max_skill_uuid].speed; let dis = smc.skills[this.max_skill_uuid].dis; let atk = smc.skills[this.max_skill_uuid].atk+this.atk; - skill.load(pos,speed,dis,scale,this.node,this.max_skill_uuid,atk); + skill.load(this.enemy,pos,speed,dis,scale,this.node,this.max_skill_uuid,atk); this.tooltip(3,smc.skills[this.max_skill_uuid].name,this.max_skill_uuid); } in_act(dt: number) { diff --git a/assets/script/game/skills/CSkillComp.ts b/assets/script/game/skills/CSkillComp.ts index 2dd8320c..8fa5d7d1 100644 --- a/assets/script/game/skills/CSkillComp.ts +++ b/assets/script/game/skills/CSkillComp.ts @@ -60,11 +60,16 @@ export class CSkillComp extends CCComp { let t_pos = v3(0,0) let angle = 0 let m_pos=v3(0,0) + let target:any = null + let eid=0 let monsters:any = ecs.query(ecs.allOf(MonModelComp)); if (monsters.length > 0) { m_pos = monsters[0].MonView.node.position + target= monsters[0].MonView.node + eid = monsters[0].MonView.eid }else{ + return m_pos = v3(BoxSet.MONSTER_START,BoxSet.GAME_LINE) } t_pos = v3(m_pos.x-this.node.position.x,m_pos.y-this.node.position.y) // 目标增量 @@ -77,7 +82,7 @@ export class CSkillComp extends CCComp { let dis = smc.skills[this.skill_uuid].dis+this.dis; let atk = smc.skills[this.skill_uuid].atk+this.atk; let speed = smc.skills[this.skill_uuid].speed+this.speed; - skill.load(pos,speed,dis,scale,this.node,this.skill_uuid,atk,angle,t_pos); + skill.load(eid,target,pos,speed,dis,scale,this.node,this.skill_uuid,atk,angle,t_pos); } add_buff(){ // 1: 远距离攻击,碰撞后 结束 diff --git a/assets/script/game/skills/Skill.ts b/assets/script/game/skills/Skill.ts index 07cea44a..8330e4c5 100644 --- a/assets/script/game/skills/Skill.ts +++ b/assets/script/game/skills/Skill.ts @@ -29,10 +29,10 @@ export class Skill extends ecs.Entity { this.remove(SkillCom); super.destroy(); } - load(pos: Vec3 = Vec3.ZERO,speed:number = 100, + load(target_eid:number,target:any,pos: Vec3 = Vec3.ZERO,speed:number = 100, dis:number = 50,scale:number = 1,parent:Node, uuid:number=1001,atk:number =10,angle = 0, - t_pos:Vec3 = null,run_type:number=0) + t_pos:Vec3 = null,run_type:number=0,) { var path = "game/skills/"+smc.skills[uuid].sp_name; var prefab: Prefab = oops.res.get(path, Prefab)!; @@ -53,6 +53,8 @@ export class Skill extends ecs.Entity { sv.type = smc.skills[uuid].type; sv.box_tag= BoxSet.SKILL_TAG; sv.run_type== run_type; + sv.target=target; + sv.target_eid=target_eid if(scale == 1){ sv.box_group=BoxSet.HERO }else{ diff --git a/assets/script/game/skills/SkillCom.ts b/assets/script/game/skills/SkillCom.ts index 797e9211..6bdd32ed 100644 --- a/assets/script/game/skills/SkillCom.ts +++ b/assets/script/game/skills/SkillCom.ts @@ -4,6 +4,9 @@ import { CCComp } from "../../../../extensions/oops-plugin-framework/assets/modu import { BoxSet } from "../common/config/BoxSet"; import { smc } from "../common/SingletonModuleComp"; import { Timer } from "../../../../extensions/oops-plugin-framework/assets/core/common/timer/Timer"; +import { MoveToComp } from "../common/ecs/position/MoveTo"; +import { MonModelComp } from "../mon/MonModelComp"; +import { HeroViewComp } from "../hero/HeroViewComp"; const { ccclass, property } = _decorator; @@ -25,6 +28,8 @@ export class SkillCom extends CCComp { atk_count:number = 0; angle:number = 0; t_pos:Vec3 = null; // 目标增量 + target:any =null + target_eid:number = 0; is_destroy:boolean = false; box_group:number = 0; box_tag:number=0; @@ -48,63 +53,63 @@ export class SkillCom extends CCComp { // collider.on(Contact2DType.END_CONTACT, this.onEndContact, this); collider.on(Contact2DType.POST_SOLVE, this.onPostSolve, this); } - if(this.t_pos){ - this.x_speed=Math.cos(this.angle * Math.PI / 180) * this.speed-30*this.scale; - this.y_speed=Math.sin(this.angle * Math.PI / 180) * this.speed; - }else{ - this.x_speed=this.speed - this.y_speed=0 - } - if(this.run_type == 1){ - let s_pos = v3(this.node.position.x,this.node.position.y) - let c_pos = v3(this.node.position.x,this.node.position.y) - let e_pos = v3(this.node.position.x+this.dis*this.scale,BoxSet.GAME_LINE-50) - SkillCom.bezierTo(this.node,2,s_pos,c_pos,e_pos,{onUpdate: (target: Vec3, ratio: number) => { - } - }).start(); - } - if(this.run_type == 2){ - tween(this.node).to( this.in_time, - { position: new Vec3(this.node.position.x,this.node.position.y) }, - { - onComplete: (target?: object) => { - this.is_destroy=true - }, - } - ).start(); - } - if(this.run_type == 0){ - if(this.t_pos){ - let l_x=Math.cos(this.angle * Math.PI / 180) * 50; - let l_y=Math.sin(this.angle * Math.PI / 180) * 50; - let squaredDistance = this.t_pos.x * this.t_pos.x + this.t_pos.y * this.t_pos.y; - let distance = Math.sqrt(squaredDistance); - let time = distance / this.speed-0.2; - //通过欧拉角 延长 目标点 增量 - // this.t_pos.x=Math.cos(this.angle * Math.PI / 180) * this.dis; - // this.t_pos.y=Math.sin(this.angle * Math.PI / 180) * this.dis; - let e_pos=v3(this.node.position.x+l_x+this.t_pos.x,this.node.position.y+this.t_pos.y) - tween(this.node).to( 0.7,{ angle:this.angle,position: e_pos}, - { - onUpdate: (target: Vec3, ratio: number) => { // onUpdate 接受当前缓动的进度 - // 将缓动系统计算出的结果赋予 node 的位置 - }, - onComplete: (target?: object) => { - this.is_destroy=true - }, - } - ).start(); - }else{ - tween(this.node).to( this.dis/this.speed, - { position: new Vec3(this.node.position.x+this.scale*this.dis,this.node.position.y) }, - { - onComplete: (target?: object) => { - this.is_destroy=true - }, - } - ).start(); - } - } + // if(this.t_pos){ + // this.x_speed=Math.cos(this.angle * Math.PI / 180) * this.speed-30*this.scale; + // this.y_speed=Math.sin(this.angle * Math.PI / 180) * this.speed; + // }else{ + // this.x_speed=this.speed + // this.y_speed=0 + // } + // if(this.run_type == 1){ + // let s_pos = v3(this.node.position.x,this.node.position.y) + // let c_pos = v3(this.node.position.x,this.node.position.y) + // let e_pos = v3(this.node.position.x+this.dis*this.scale,BoxSet.GAME_LINE-50) + // SkillCom.bezierTo(this.node,2,s_pos,c_pos,e_pos,{onUpdate: (target: Vec3, ratio: number) => { + // } + // }).start(); + // } + // if(this.run_type == 2){ + // tween(this.node).to( this.in_time, + // { position: new Vec3(this.node.position.x,this.node.position.y) }, + // { + // onComplete: (target?: object) => { + // this.is_destroy=true + // }, + // } + // ).start(); + // } + // if(this.run_type == 0){ + // if(this.t_pos){ + // let l_x=Math.cos(this.angle * Math.PI / 180) * 50; + // let l_y=Math.sin(this.angle * Math.PI / 180) * 50; + // let squaredDistance = this.t_pos.x * this.t_pos.x + this.t_pos.y * this.t_pos.y; + // let distance = Math.sqrt(squaredDistance); + // let time = distance / this.speed-0.2; + // //通过欧拉角 延长 目标点 增量 + // // this.t_pos.x=Math.cos(this.angle * Math.PI / 180) * this.dis; + // // this.t_pos.y=Math.sin(this.angle * Math.PI / 180) * this.dis; + // let e_pos=v3(this.node.position.x+l_x+this.t_pos.x,this.node.position.y+this.t_pos.y) + // tween(this.node).to( 0.7,{ angle:this.angle,position: e_pos}, + // { + // onUpdate: (target: Vec3, ratio: number) => { // onUpdate 接受当前缓动的进度 + // // 将缓动系统计算出的结果赋予 node 的位置 + // }, + // onComplete: (target?: object) => { + // this.is_destroy=true + // }, + // } + // ).start(); + // }else{ + // tween(this.node).to( this.dis/this.speed, + // { position: new Vec3(this.node.position.x+this.scale*this.dis,this.node.position.y) }, + // { + // onComplete: (target?: object) => { + // this.is_destroy=true + // }, + // } + // ).start(); + // } + // } } onBeginContact (selfCollider: Collider2D, otherCollider: Collider2D, contact: IPhysics2DContact | null) { @@ -147,11 +152,50 @@ export class SkillCom extends CCComp { // this.node.setScale(v3(this.scale,this.node.scale.y,this.node.scale.z)) // this.move(deltaTime) this.toDestroy() + let enemy_is_alive=false + if(this.box_group==BoxSet.HERO){ + let mons =ecs.query(ecs.allOf(MonModelComp)); + for(let i=0;i 400||this.node.position.x < -400||this.node.position.y > 1000||this.node.position.y < -100) { this.is_destroy=true } } + + + move_to(target:any){ + if(target.x > this.node.position.x){ + this.node.setScale(v3(1,1,1)) + }else{ + this.node.setScale(v3(-1,1,1)) + } + var move = this.ent.get(MoveToComp) || this.ent.add(MoveToComp); + move.target = v3(target.x,target.y); + move.node = this.node; + move.speed = this.speed; + } + + t_move(dt: number){ if( this.run_type!=0){ return diff --git a/assets/script/game/skills/Tooltip.ts b/assets/script/game/skills/Tooltip.ts index 6aebeca7..2471854a 100644 --- a/assets/script/game/skills/Tooltip.ts +++ b/assets/script/game/skills/Tooltip.ts @@ -29,7 +29,7 @@ export class Tooltip extends ecs.Entity { this.remove(TooltipCom); super.destroy(); } - load(pos: Vec3 = Vec3.ZERO,type:number=1,vaule:string="",s_uuid:number=1001,parent:any=null,cd:number=0.3) { + load(pos: Vec3 = Vec3.ZERO,type:number=1,vaule:string="",s_uuid:number=1001,parent:any=null,cd:number=1) { var path = "game/skills/tooltip"; var prefab: Prefab = oops.res.get(path, Prefab)!; diff --git a/assets/script/game/skills/TooltipCom.ts b/assets/script/game/skills/TooltipCom.ts index 12d95472..721775e3 100644 --- a/assets/script/game/skills/TooltipCom.ts +++ b/assets/script/game/skills/TooltipCom.ts @@ -31,39 +31,46 @@ export class TooltipCom extends CCComp { case 1: this.node.getChildByName("loss_life").getChildByName("hp").getComponent(Label).string = this.value; this.node.getChildByName("loss_life").active=true; + tween(this.node).to( + this.alive_time, + {position:v3(this.node.position.x+10,this.node.position.y+40), }, + { + onComplete:()=>{ this.ent.destroy()}, + easing:"linear" + } + ).start() break case 2: this.node.getChildByName("add_life").getChildByName("hp").getComponent(Label).string = this.value; this.node.getChildByName("add_life").active=true; - this.node.setPosition(v3(this.node.position.x,this.node.position.y+50)) + tween(this.node).to( + this.alive_time, + {position:v3(this.node.position.x+10,this.node.position.y+40), }, + { + onComplete:()=>{ this.ent.destroy()}, + easing:"linear" + } + ).start() break case 3: - // resources.load("game/heros/skill/"+smc.skills[this.s_uuid].path, SpriteFrame, (err, spriteFrame) => { - // this.node.getChildByName("skill").getChildByName("icon").getComponent(Sprite).spriteFrame = spriteFrame; - // }); + this.node.getChildByName("skill").getChildByName("name").getComponent(Label).string = smc.skills[this.s_uuid].name; this.node.getChildByName("skill").active=true; // this.alive_time = 2 - this.node.setPosition(v3(this.node.position.x,this.node.position.y+50)) + tween(this.node).to( + this.alive_time, + {position:v3(this.node.position.x,this.node.position.y), }, + { + onComplete:()=>{ this.ent.destroy()}, + easing:"linear" + } + ).start() break } } update(deltaTime: number) { - this.node.setPosition(v3(this.node.position.x+deltaTime*20,this.node.position.y+deltaTime*50)) - if(this.alive_time >=0){ - this.alive_time -= deltaTime; - }else{ - this.ent.destroy(); - } - - // if(this.skill_name_time >=0){ - // this.skill_name_time -= deltaTime; - // }else{ - // if(this.node.getChildByName("skill").active== true){ - // this.node.getChildByName("skill").getChildByName("name").active=false; - // } - // } + }