diff --git a/JisolGameCocos/assets/resources/config/game/GRole.json b/JisolGameCocos/assets/resources/config/game/GRole.json index cbe53e7d..fb4689cd 100644 --- a/JisolGameCocos/assets/resources/config/game/GRole.json +++ b/JisolGameCocos/assets/resources/config/game/GRole.json @@ -1 +1 @@ -{"10001":{"id":10001,"roleName":"小石头","spine":"spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a"},"10002":{"id":10002,"roleName":"坚强小石","spine":"spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a"}} \ No newline at end of file +{"10001":{"id":10001,"roleName":"小石头","spine":"spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a","roleSkillId":0,"roleAttackRange":100},"10002":{"id":10002,"roleName":"坚强小石","spine":"spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a","roleSkillId":0,"roleAttackRange":100},"10003":{"id":10003,"roleName":"疯狂松鼠","spine":"spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e","roleSkillId":0,"roleAttackRange":500}} \ No newline at end of file diff --git a/JisolGameCocos/assets/resources/config/game/GRoleAttack.json b/JisolGameCocos/assets/resources/config/game/GRoleAttack.json new file mode 100644 index 00000000..ef3d46fd --- /dev/null +++ b/JisolGameCocos/assets/resources/config/game/GRoleAttack.json @@ -0,0 +1 @@ +{"10001":{"roleId":10001,"attackWay":"Normal","attackArgs":[]},"10002":{"roleId":10002,"attackWay":"Normal","attackArgs":[]},"10003":{"roleId":10003,"attackWay":"Remote","attackArgs":["20001"]}} \ No newline at end of file diff --git a/JisolGameCocos/assets/resources/config/game/GRoleAttack.json.meta b/JisolGameCocos/assets/resources/config/game/GRoleAttack.json.meta new file mode 100644 index 00000000..ebf16f84 --- /dev/null +++ b/JisolGameCocos/assets/resources/config/game/GRoleAttack.json.meta @@ -0,0 +1,11 @@ +{ + "ver": "2.0.1", + "importer": "json", + "imported": true, + "uuid": "75a65c75-47c9-4167-ba79-55548af8cc79", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/resources/config/game/GRoleAttackBullet.json b/JisolGameCocos/assets/resources/config/game/GRoleAttackBullet.json new file mode 100644 index 00000000..323febd2 --- /dev/null +++ b/JisolGameCocos/assets/resources/config/game/GRoleAttackBullet.json @@ -0,0 +1 @@ +{"20001":{"id":20001,"bulletName":"炸弹","bulletSrc":"bullets/疯狂松鼠/attack/spriteFrame"}} \ No newline at end of file diff --git a/JisolGameCocos/assets/resources/config/game/GRoleAttackBullet.json.meta b/JisolGameCocos/assets/resources/config/game/GRoleAttackBullet.json.meta new file mode 100644 index 00000000..525f9ced --- /dev/null +++ b/JisolGameCocos/assets/resources/config/game/GRoleAttackBullet.json.meta @@ -0,0 +1,11 @@ +{ + "ver": "2.0.1", + "importer": "json", + "imported": true, + "uuid": "9e1a69f7-e3db-4165-abc2-aa96ed577b2d", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/resources/config/game/GRoleSkill.json b/JisolGameCocos/assets/resources/config/game/GRoleSkill.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/JisolGameCocos/assets/resources/config/game/GRoleSkill.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/JisolGameCocos/assets/resources/config/game/GRoleSkill.json.meta b/JisolGameCocos/assets/resources/config/game/GRoleSkill.json.meta new file mode 100644 index 00000000..86b5c3f8 --- /dev/null +++ b/JisolGameCocos/assets/resources/config/game/GRoleSkill.json.meta @@ -0,0 +1,11 @@ +{ + "ver": "2.0.1", + "importer": "json", + "imported": true, + "uuid": "59d1c66b-278d-4af3-8bb9-864840cfbc5f", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/resources/config/ts/TableGRole.ts b/JisolGameCocos/assets/resources/config/ts/TableGRole.ts index 973e0f7d..b876b78a 100644 --- a/JisolGameCocos/assets/resources/config/ts/TableGRole.ts +++ b/JisolGameCocos/assets/resources/config/ts/TableGRole.ts @@ -32,4 +32,12 @@ export class TableGRole { get spine(): string { return this.data.spine; } + /** 角色技能Id */ + get roleSkillId(): number { + return this.data.roleSkillId; + } + /** 角色攻击范围 */ + get roleAttackRange(): number { + return this.data.roleAttackRange; + } } \ No newline at end of file diff --git a/JisolGameCocos/assets/resources/config/ts/TableGRoleAttack.ts b/JisolGameCocos/assets/resources/config/ts/TableGRoleAttack.ts new file mode 100644 index 00000000..07c7719a --- /dev/null +++ b/JisolGameCocos/assets/resources/config/ts/TableGRoleAttack.ts @@ -0,0 +1,35 @@ +import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil"; + +export class TableGRoleAttack { + static TableName: string = "GRoleAttack"; + + static getAllConfig(): { [id: string]: TableGRoleAttack } { + return JsonUtil.get(TableGRoleAttack.TableName); + } + + static getConfig(id: number | string) { + return TableGRoleAttack.getAllConfig()[id] as TableGRoleAttack; + } + + private data: any; + + init(roleId: number) { + var table = JsonUtil.get(TableGRoleAttack.TableName); + this.data = table[roleId]; + this._roleId = roleId; + } + /** 角色Id */ private _roleId: number = 0; + + /** 角色Id */ + get roleId(): number { + return this.data.roleId; + } + /** 攻击方式 */ + get attackWay(): string { + return this.data.attackWay; + } + /** 攻击参数 */ + get attackArgs(): string[] { + return this.data.attackArgs; + } +} \ No newline at end of file diff --git a/JisolGameCocos/assets/resources/config/ts/TableGRoleAttack.ts.meta b/JisolGameCocos/assets/resources/config/ts/TableGRoleAttack.ts.meta new file mode 100644 index 00000000..26f8faa2 --- /dev/null +++ b/JisolGameCocos/assets/resources/config/ts/TableGRoleAttack.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.23", + "importer": "typescript", + "imported": true, + "uuid": "4879e3d4-3b08-4e70-af99-add884d50af3", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/resources/config/ts/TableGRoleAttackBullet.ts b/JisolGameCocos/assets/resources/config/ts/TableGRoleAttackBullet.ts new file mode 100644 index 00000000..df12ad30 --- /dev/null +++ b/JisolGameCocos/assets/resources/config/ts/TableGRoleAttackBullet.ts @@ -0,0 +1,35 @@ +import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil"; + +export class TableGRoleAttackBullet { + static TableName: string = "GRoleAttackBullet"; + + static getAllConfig(): { [id: string]: TableGRoleAttackBullet } { + return JsonUtil.get(TableGRoleAttackBullet.TableName); + } + + static getConfig(id: number | string) { + return TableGRoleAttackBullet.getAllConfig()[id] as TableGRoleAttackBullet; + } + + private data: any; + + init(id: number) { + var table = JsonUtil.get(TableGRoleAttackBullet.TableName); + this.data = table[id]; + this._id = id; + } + /** Id */ private _id: number = 0; + + /** Id */ + get id(): number { + return this.data.id; + } + /** 子弹名称 */ + get bulletName(): string { + return this.data.bulletName; + } + /** 子弹地址 */ + get bulletSrc(): string { + return this.data.bulletSrc; + } +} \ No newline at end of file diff --git a/JisolGameCocos/assets/resources/config/ts/TableGRoleAttackBullet.ts.meta b/JisolGameCocos/assets/resources/config/ts/TableGRoleAttackBullet.ts.meta new file mode 100644 index 00000000..73df0854 --- /dev/null +++ b/JisolGameCocos/assets/resources/config/ts/TableGRoleAttackBullet.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.23", + "importer": "typescript", + "imported": true, + "uuid": "0c4a411b-9551-4944-9662-79468f748d6e", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/bullets.meta b/JisolGameCocos/assets/role/bullets.meta new file mode 100644 index 00000000..cb9fcd96 --- /dev/null +++ b/JisolGameCocos/assets/role/bullets.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "eb3f5025-2ea1-41aa-8199-b83155243445", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/bullets/疯狂松鼠.meta b/JisolGameCocos/assets/role/bullets/疯狂松鼠.meta new file mode 100644 index 00000000..41e5e3ab --- /dev/null +++ b/JisolGameCocos/assets/role/bullets/疯狂松鼠.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "1a0ec24c-2cef-4b06-8140-ed00dc1ade70", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/bullets/疯狂松鼠/attack.png b/JisolGameCocos/assets/role/bullets/疯狂松鼠/attack.png new file mode 100644 index 00000000..98efba3e Binary files /dev/null and b/JisolGameCocos/assets/role/bullets/疯狂松鼠/attack.png differ diff --git a/JisolGameCocos/assets/role/bullets/疯狂松鼠/attack.png.meta b/JisolGameCocos/assets/role/bullets/疯狂松鼠/attack.png.meta new file mode 100644 index 00000000..d20654f7 --- /dev/null +++ b/JisolGameCocos/assets/role/bullets/疯狂松鼠/attack.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "73e7b692-0dd7-428d-a37e-5294b5b02a78", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "73e7b692-0dd7-428d-a37e-5294b5b02a78@6c48a", + "displayName": "attack", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "73e7b692-0dd7-428d-a37e-5294b5b02a78", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "73e7b692-0dd7-428d-a37e-5294b5b02a78@f9941", + "displayName": "attack", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 111, + "height": 129, + "rawWidth": 113, + "rawHeight": 131, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -55.5, + -64.5, + 0, + 55.5, + -64.5, + 0, + -55.5, + 64.5, + 0, + 55.5, + 64.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 130, + 112, + 130, + 1, + 1, + 112, + 1 + ], + "nuv": [ + 0.008849557522123894, + 0.007633587786259542, + 0.9911504424778761, + 0.007633587786259542, + 0.008849557522123894, + 0.9923664122137404, + 0.9911504424778761, + 0.9923664122137404 + ], + "minPos": [ + -55.5, + -64.5, + 0 + ], + "maxPos": [ + 55.5, + 64.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "73e7b692-0dd7-428d-a37e-5294b5b02a78@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "73e7b692-0dd7-428d-a37e-5294b5b02a78@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石.meta new file mode 100644 index 00000000..abe059b2 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "45192640-5de3-4f89-9ace-421834c5fe5c", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1a.spine b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1a.spine similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1a.spine rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1a.spine diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1a.spine.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1a.spine.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1a.spine.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1a.spine.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1aTexture.atlas b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1aTexture.atlas similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1aTexture.atlas rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1aTexture.atlas diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1aTexture.atlas.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1aTexture.atlas.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1aTexture.atlas.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1aTexture.atlas.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1aTexture.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1aTexture.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1aTexture.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1aTexture.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1aTexture.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1aTexture.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/guaiA1aTexture.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/guaiA1aTexture.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_head.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_head.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_head.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_head.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_head.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_head.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_head.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_head.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_legL.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_legL.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_legL.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_legL.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_legL.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_legL.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_legL.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_legL.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_legR.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_legR.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_legR.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_legR.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_legR.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_legR.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/pic/guaiA1a/guaiA1a_legR.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/pic/guaiA1a/guaiA1a_legR.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.atlas b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.atlas similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.atlas rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.atlas diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.atlas.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.atlas.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.atlas.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.atlas.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.json b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.json similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.json rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.json diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.json.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.json.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.json.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.json.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头.meta new file mode 100644 index 00000000..61e5541f --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "099badd3-a3a5-4a0e-9d99-f9fafb1ea9d5", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1a.spine b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1a.spine similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1a.spine rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1a.spine diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1a.spine.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1a.spine.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1a.spine.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1a.spine.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1aTexture.atlas b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1aTexture.atlas similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1aTexture.atlas rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1aTexture.atlas diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1aTexture.atlas.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1aTexture.atlas.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1aTexture.atlas.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1aTexture.atlas.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1aTexture.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1aTexture.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1aTexture.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1aTexture.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1aTexture.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1aTexture.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/guaiA1aTexture.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/guaiA1aTexture.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/beimian.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/beimian.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/beimian.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/beimian.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/beimian.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/beimian.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/beimian.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/beimian.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao1.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao1.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao1.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao1.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao1.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao1.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao1.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao1.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao2.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao2.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao2.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao2.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao2.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao2.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao2.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao2.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao3.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao3.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao3.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao3.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao3.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao3.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao3.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao3.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao4.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao4.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao4.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao4.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao4.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao4.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/jiao4.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/jiao4.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/shenti.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/shenti.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/shenti.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/shenti.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/shenti.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/shenti.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/shenti.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/shenti.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/yan.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/yan.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/yan.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/yan.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/yan.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/yan.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/yan.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/yan.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/ye.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/ye.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/ye.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/ye.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/ye.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/ye.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/pic/guaiA1a/ye.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/pic/guaiA1a/ye.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.atlas b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.atlas similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.atlas rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.atlas diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.atlas.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.atlas.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.atlas.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.atlas.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.json b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.json similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.json rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.json diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.json.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.json.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.json.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.json.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.png similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.png rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.png diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.png.meta similarity index 100% rename from JisolGameCocos/assets/role/spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a.png.meta rename to JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a.png.meta diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠.meta new file mode 100644 index 00000000..6ee0ff62 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "b804b631-05b6-44cb-aec7-c23a63d926e0", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2.meta new file mode 100644 index 00000000..45f10e20 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "2e2d1af3-9b16-471a-801d-88c6ca984890", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4e.spine b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4e.spine new file mode 100644 index 00000000..71f88b5e Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4e.spine differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4e.spine.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4e.spine.meta new file mode 100644 index 00000000..551ba37e --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4e.spine.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.1", + "importer": "*", + "imported": true, + "uuid": "74953026-d287-43a7-ad10-bae8221f98b8", + "files": [ + ".json", + ".spine" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.atlas b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.atlas new file mode 100644 index 00000000..f464e81c --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.atlas @@ -0,0 +1,118 @@ + +guaiA4eTexture_2.png +size: 1006,249 +format: RGBA8888 +filter: Linear,Linear +repeat: none +guaiA4e_2/timo5 002 + rotate: false + xy: 157, 2 + size: 52, 97 + orig: 52, 97 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 003 + rotate: false + xy: 888, 161 + size: 58, 88 + orig: 58, 88 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 004 + rotate: false + xy: 2, 3 + size: 77, 96 + orig: 77, 96 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 005 + rotate: false + xy: 760, 187 + size: 62, 62 + orig: 62, 62 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 006 + rotate: false + xy: 505, 121 + size: 44, 30 + orig: 44, 30 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 007 + rotate: false + xy: 282, 118 + size: 113, 131 + orig: 113, 131 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 008 + rotate: false + xy: 2, 101 + size: 162, 148 + orig: 162, 148 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 009 + rotate: false + xy: 948, 161 + size: 58, 88 + orig: 58, 88 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 010 + rotate: false + xy: 505, 153 + size: 77, 96 + orig: 77, 96 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 011 + rotate: false + xy: 81, 16 + size: 74, 83 + orig: 74, 83 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 012 + rotate: false + xy: 166, 102 + size: 114, 147 + orig: 114, 147 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 013 + rotate: false + xy: 584, 164 + size: 84, 85 + orig: 84, 85 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 014 + rotate: false + xy: 397, 120 + size: 106, 129 + orig: 106, 129 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 015 + rotate: false + xy: 670, 186 + size: 88, 63 + orig: 88, 63 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 016 + rotate: false + xy: 824, 187 + size: 62, 62 + orig: 62, 62 + offset: 0, 0 + index: -1 +guaiA4e_2/timo5 017 + rotate: false + xy: 211, 69 + size: 43, 31 + orig: 43, 31 + offset: 0, 0 + index: -1 diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.atlas.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.atlas.meta new file mode 100644 index 00000000..48767ba7 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.1", + "importer": "*", + "imported": true, + "uuid": "a0ef72ac-b418-40da-b320-095a2874e061", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.png new file mode 100644 index 00000000..db73c79c Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.png.meta new file mode 100644 index 00000000..f31142e1 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/guaiA4eTexture.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "f71c334f-843b-49b0-b14b-616629f00565", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f71c334f-843b-49b0-b14b-616629f00565@6c48a", + "displayName": "guaiA4eTexture", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f71c334f-843b-49b0-b14b-616629f00565", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f71c334f-843b-49b0-b14b-616629f00565@f9941", + "displayName": "guaiA4eTexture", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -8, + "offsetY": 2.5, + "trimX": 3, + "trimY": 3, + "width": 1002, + "height": 245, + "rawWidth": 1024, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -501, + -122.5, + 0, + 501, + -122.5, + 0, + -501, + 122.5, + 0, + 501, + 122.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 253, + 1005, + 253, + 3, + 8, + 1005, + 8 + ], + "nuv": [ + 0.0029296875, + 0.03125, + 0.9814453125, + 0.03125, + 0.0029296875, + 0.98828125, + 0.9814453125, + 0.98828125 + ], + "minPos": [ + -501, + -122.5, + 0 + ], + "maxPos": [ + 501, + 122.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f71c334f-843b-49b0-b14b-616629f00565@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f71c334f-843b-49b0-b14b-616629f00565@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic.meta new file mode 100644 index 00000000..b5bcf297 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "89e39252-9eec-4992-b463-ce84d256df9d", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e.meta new file mode 100644 index 00000000..675ddb98 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "290902b6-6a33-4a0d-bddf-1060fef2cbd8", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 002.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 002.png new file mode 100644 index 00000000..f5d765d3 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 002.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 002.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 002.png.meta new file mode 100644 index 00000000..47e3f7dc --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 002.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d@6c48a", + "displayName": "timo5 002", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d@f9941", + "displayName": "timo5 002", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 50, + "height": 95, + "rawWidth": 52, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -25, + -47.5, + 0, + 25, + -47.5, + 0, + -25, + 47.5, + 0, + 25, + 47.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 96, + 51, + 96, + 1, + 1, + 51, + 1 + ], + "nuv": [ + 0.019230769230769232, + 0.010309278350515464, + 0.9807692307692307, + 0.010309278350515464, + 0.019230769230769232, + 0.9896907216494846, + 0.9807692307692307, + 0.9896907216494846 + ], + "minPos": [ + -25, + -47.5, + 0 + ], + "maxPos": [ + 25, + 47.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 003.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 003.png new file mode 100644 index 00000000..4e4c3f0f Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 003.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 003.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 003.png.meta new file mode 100644 index 00000000..279866c1 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 003.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "53167f35-e100-434f-b671-9abe0bc64531", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "53167f35-e100-434f-b671-9abe0bc64531@6c48a", + "displayName": "timo5 003", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "53167f35-e100-434f-b671-9abe0bc64531", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "53167f35-e100-434f-b671-9abe0bc64531@f9941", + "displayName": "timo5 003", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 56, + "height": 86, + "rawWidth": 58, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -28, + -43, + 0, + 28, + -43, + 0, + -28, + 43, + 0, + 28, + 43, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 87, + 57, + 87, + 1, + 1, + 57, + 1 + ], + "nuv": [ + 0.017241379310344827, + 0.011363636363636364, + 0.9827586206896551, + 0.011363636363636364, + 0.017241379310344827, + 0.9886363636363636, + 0.9827586206896551, + 0.9886363636363636 + ], + "minPos": [ + -28, + -43, + 0 + ], + "maxPos": [ + 28, + 43, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "53167f35-e100-434f-b671-9abe0bc64531@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "53167f35-e100-434f-b671-9abe0bc64531@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 004.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 004.png new file mode 100644 index 00000000..fc406197 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 004.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 004.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 004.png.meta new file mode 100644 index 00000000..0f6ae6c6 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 004.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "9a740c1b-d991-4428-9549-1017bfb6358e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9a740c1b-d991-4428-9549-1017bfb6358e@6c48a", + "displayName": "timo5 004", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9a740c1b-d991-4428-9549-1017bfb6358e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9a740c1b-d991-4428-9549-1017bfb6358e@f9941", + "displayName": "timo5 004", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 75, + "height": 94, + "rawWidth": 77, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -37.5, + -47, + 0, + 37.5, + -47, + 0, + -37.5, + 47, + 0, + 37.5, + 47, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 95, + 76, + 95, + 1, + 1, + 76, + 1 + ], + "nuv": [ + 0.012987012987012988, + 0.010416666666666666, + 0.987012987012987, + 0.010416666666666666, + 0.012987012987012988, + 0.9895833333333334, + 0.987012987012987, + 0.9895833333333334 + ], + "minPos": [ + -37.5, + -47, + 0 + ], + "maxPos": [ + 37.5, + 47, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9a740c1b-d991-4428-9549-1017bfb6358e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9a740c1b-d991-4428-9549-1017bfb6358e@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 005.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 005.png new file mode 100644 index 00000000..2c3eff69 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 005.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 005.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 005.png.meta new file mode 100644 index 00000000..7da347c4 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 005.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "68dd7e1f-0996-4ac8-9b45-cb68975d7236", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "68dd7e1f-0996-4ac8-9b45-cb68975d7236@6c48a", + "displayName": "timo5 005", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "68dd7e1f-0996-4ac8-9b45-cb68975d7236", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "68dd7e1f-0996-4ac8-9b45-cb68975d7236@f9941", + "displayName": "timo5 005", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 60, + "height": 60, + "rawWidth": 62, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -30, + -30, + 0, + 30, + -30, + 0, + -30, + 30, + 0, + 30, + 30, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 61, + 61, + 61, + 1, + 1, + 61, + 1 + ], + "nuv": [ + 0.016129032258064516, + 0.016129032258064516, + 0.9838709677419355, + 0.016129032258064516, + 0.016129032258064516, + 0.9838709677419355, + 0.9838709677419355, + 0.9838709677419355 + ], + "minPos": [ + -30, + -30, + 0 + ], + "maxPos": [ + 30, + 30, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "68dd7e1f-0996-4ac8-9b45-cb68975d7236@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "68dd7e1f-0996-4ac8-9b45-cb68975d7236@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 006.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 006.png new file mode 100644 index 00000000..c0a7ca34 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 006.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 006.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 006.png.meta new file mode 100644 index 00000000..14443733 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 006.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68@6c48a", + "displayName": "timo5 006", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68@f9941", + "displayName": "timo5 006", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 42, + "height": 28, + "rawWidth": 44, + "rawHeight": 30, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -21, + -14, + 0, + 21, + -14, + 0, + -21, + 14, + 0, + 21, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 29, + 43, + 29, + 1, + 1, + 43, + 1 + ], + "nuv": [ + 0.022727272727272728, + 0.03333333333333333, + 0.9772727272727273, + 0.03333333333333333, + 0.022727272727272728, + 0.9666666666666667, + 0.9772727272727273, + 0.9666666666666667 + ], + "minPos": [ + -21, + -14, + 0 + ], + "maxPos": [ + 21, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 007.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 007.png new file mode 100644 index 00000000..98efba3e Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 007.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 007.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 007.png.meta new file mode 100644 index 00000000..94856be5 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 007.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc@6c48a", + "displayName": "timo5 007", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc@f9941", + "displayName": "timo5 007", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 111, + "height": 129, + "rawWidth": 113, + "rawHeight": 131, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -55.5, + -64.5, + 0, + 55.5, + -64.5, + 0, + -55.5, + 64.5, + 0, + 55.5, + 64.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 130, + 112, + 130, + 1, + 1, + 112, + 1 + ], + "nuv": [ + 0.008849557522123894, + 0.007633587786259542, + 0.9911504424778761, + 0.007633587786259542, + 0.008849557522123894, + 0.9923664122137404, + 0.9911504424778761, + 0.9923664122137404 + ], + "minPos": [ + -55.5, + -64.5, + 0 + ], + "maxPos": [ + 55.5, + 64.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 008.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 008.png new file mode 100644 index 00000000..f5cebfd4 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 008.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 008.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 008.png.meta new file mode 100644 index 00000000..bf9aa3da --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 008.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d@6c48a", + "displayName": "timo5 008", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d@f9941", + "displayName": "timo5 008", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 160, + "height": 146, + "rawWidth": 162, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -80, + -73, + 0, + 80, + -73, + 0, + -80, + 73, + 0, + 80, + 73, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 147, + 161, + 147, + 1, + 1, + 161, + 1 + ], + "nuv": [ + 0.006172839506172839, + 0.006756756756756757, + 0.9938271604938271, + 0.006756756756756757, + 0.006172839506172839, + 0.9932432432432432, + 0.9938271604938271, + 0.9932432432432432 + ], + "minPos": [ + -80, + -73, + 0 + ], + "maxPos": [ + 80, + 73, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 009.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 009.png new file mode 100644 index 00000000..75a88bb4 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 009.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 009.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 009.png.meta new file mode 100644 index 00000000..7255e918 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 009.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "44fca669-aad5-4e22-b846-82f3a296ec1e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "44fca669-aad5-4e22-b846-82f3a296ec1e@6c48a", + "displayName": "timo5 009", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "44fca669-aad5-4e22-b846-82f3a296ec1e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "44fca669-aad5-4e22-b846-82f3a296ec1e@f9941", + "displayName": "timo5 009", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 56, + "height": 86, + "rawWidth": 58, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -28, + -43, + 0, + 28, + -43, + 0, + -28, + 43, + 0, + 28, + 43, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 87, + 57, + 87, + 1, + 1, + 57, + 1 + ], + "nuv": [ + 0.017241379310344827, + 0.011363636363636364, + 0.9827586206896551, + 0.011363636363636364, + 0.017241379310344827, + 0.9886363636363636, + 0.9827586206896551, + 0.9886363636363636 + ], + "minPos": [ + -28, + -43, + 0 + ], + "maxPos": [ + 28, + 43, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "44fca669-aad5-4e22-b846-82f3a296ec1e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "44fca669-aad5-4e22-b846-82f3a296ec1e@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 010.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 010.png new file mode 100644 index 00000000..36675dae Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 010.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 010.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 010.png.meta new file mode 100644 index 00000000..cec7be8e --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 010.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "ad329478-0a3a-4e0f-9951-ea8a178f72a6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ad329478-0a3a-4e0f-9951-ea8a178f72a6@6c48a", + "displayName": "timo5 010", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ad329478-0a3a-4e0f-9951-ea8a178f72a6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ad329478-0a3a-4e0f-9951-ea8a178f72a6@f9941", + "displayName": "timo5 010", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 75, + "height": 94, + "rawWidth": 77, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -37.5, + -47, + 0, + 37.5, + -47, + 0, + -37.5, + 47, + 0, + 37.5, + 47, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 95, + 76, + 95, + 1, + 1, + 76, + 1 + ], + "nuv": [ + 0.012987012987012988, + 0.010416666666666666, + 0.987012987012987, + 0.010416666666666666, + 0.012987012987012988, + 0.9895833333333334, + 0.987012987012987, + 0.9895833333333334 + ], + "minPos": [ + -37.5, + -47, + 0 + ], + "maxPos": [ + 37.5, + 47, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ad329478-0a3a-4e0f-9951-ea8a178f72a6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ad329478-0a3a-4e0f-9951-ea8a178f72a6@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 011.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 011.png new file mode 100644 index 00000000..9c84622b Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 011.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 011.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 011.png.meta new file mode 100644 index 00000000..38ec69c5 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 011.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "679bbb50-f1d5-4ac9-85f1-8aca77b0ca06", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "679bbb50-f1d5-4ac9-85f1-8aca77b0ca06@6c48a", + "displayName": "timo5 011", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "679bbb50-f1d5-4ac9-85f1-8aca77b0ca06", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "679bbb50-f1d5-4ac9-85f1-8aca77b0ca06@f9941", + "displayName": "timo5 011", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 72, + "height": 81, + "rawWidth": 74, + "rawHeight": 83, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -36, + -40.5, + 0, + 36, + -40.5, + 0, + -36, + 40.5, + 0, + 36, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 82, + 73, + 82, + 1, + 1, + 73, + 1 + ], + "nuv": [ + 0.013513513513513514, + 0.012048192771084338, + 0.9864864864864865, + 0.012048192771084338, + 0.013513513513513514, + 0.9879518072289156, + 0.9864864864864865, + 0.9879518072289156 + ], + "minPos": [ + -36, + -40.5, + 0 + ], + "maxPos": [ + 36, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "679bbb50-f1d5-4ac9-85f1-8aca77b0ca06@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "679bbb50-f1d5-4ac9-85f1-8aca77b0ca06@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 012.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 012.png new file mode 100644 index 00000000..dce3cf6f Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 012.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 012.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 012.png.meta new file mode 100644 index 00000000..f5636903 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 012.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "c70b94ef-5ff6-4295-992a-5579a2d6458b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c70b94ef-5ff6-4295-992a-5579a2d6458b@6c48a", + "displayName": "timo5 012", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c70b94ef-5ff6-4295-992a-5579a2d6458b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c70b94ef-5ff6-4295-992a-5579a2d6458b@f9941", + "displayName": "timo5 012", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 112, + "height": 145, + "rawWidth": 114, + "rawHeight": 147, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -56, + -72.5, + 0, + 56, + -72.5, + 0, + -56, + 72.5, + 0, + 56, + 72.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 146, + 113, + 146, + 1, + 1, + 113, + 1 + ], + "nuv": [ + 0.008771929824561403, + 0.006802721088435374, + 0.9912280701754386, + 0.006802721088435374, + 0.008771929824561403, + 0.9931972789115646, + 0.9912280701754386, + 0.9931972789115646 + ], + "minPos": [ + -56, + -72.5, + 0 + ], + "maxPos": [ + 56, + 72.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c70b94ef-5ff6-4295-992a-5579a2d6458b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c70b94ef-5ff6-4295-992a-5579a2d6458b@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 013.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 013.png new file mode 100644 index 00000000..a72e0710 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 013.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 013.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 013.png.meta new file mode 100644 index 00000000..e7c49df7 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 013.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "001fea8b-233c-4830-96aa-5f0d9845668b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "001fea8b-233c-4830-96aa-5f0d9845668b@6c48a", + "displayName": "timo5 013", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "001fea8b-233c-4830-96aa-5f0d9845668b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "001fea8b-233c-4830-96aa-5f0d9845668b@f9941", + "displayName": "timo5 013", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 82, + "height": 83, + "rawWidth": 84, + "rawHeight": 85, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -41, + -41.5, + 0, + 41, + -41.5, + 0, + -41, + 41.5, + 0, + 41, + 41.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 84, + 83, + 84, + 1, + 1, + 83, + 1 + ], + "nuv": [ + 0.011904761904761904, + 0.011764705882352941, + 0.9880952380952381, + 0.011764705882352941, + 0.011904761904761904, + 0.9882352941176471, + 0.9880952380952381, + 0.9882352941176471 + ], + "minPos": [ + -41, + -41.5, + 0 + ], + "maxPos": [ + 41, + 41.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "001fea8b-233c-4830-96aa-5f0d9845668b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "001fea8b-233c-4830-96aa-5f0d9845668b@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 014.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 014.png new file mode 100644 index 00000000..13d164a1 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 014.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 014.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 014.png.meta new file mode 100644 index 00000000..bfe30d6b --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 014.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "e6fbdb93-2cbb-410c-aad3-4a7e26cd3b3f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e6fbdb93-2cbb-410c-aad3-4a7e26cd3b3f@6c48a", + "displayName": "timo5 014", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e6fbdb93-2cbb-410c-aad3-4a7e26cd3b3f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e6fbdb93-2cbb-410c-aad3-4a7e26cd3b3f@f9941", + "displayName": "timo5 014", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 104, + "height": 127, + "rawWidth": 106, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -52, + -63.5, + 0, + 52, + -63.5, + 0, + -52, + 63.5, + 0, + 52, + 63.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 128, + 105, + 128, + 1, + 1, + 105, + 1 + ], + "nuv": [ + 0.009433962264150943, + 0.007751937984496124, + 0.9905660377358491, + 0.007751937984496124, + 0.009433962264150943, + 0.9922480620155039, + 0.9905660377358491, + 0.9922480620155039 + ], + "minPos": [ + -52, + -63.5, + 0 + ], + "maxPos": [ + 52, + 63.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e6fbdb93-2cbb-410c-aad3-4a7e26cd3b3f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e6fbdb93-2cbb-410c-aad3-4a7e26cd3b3f@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 015.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 015.png new file mode 100644 index 00000000..80732319 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 015.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 015.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 015.png.meta new file mode 100644 index 00000000..04ed72d9 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 015.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "78a2ff6d-18fa-4a97-b5d4-8efc3975682c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "78a2ff6d-18fa-4a97-b5d4-8efc3975682c@6c48a", + "displayName": "timo5 015", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "78a2ff6d-18fa-4a97-b5d4-8efc3975682c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "78a2ff6d-18fa-4a97-b5d4-8efc3975682c@f9941", + "displayName": "timo5 015", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 86, + "height": 61, + "rawWidth": 88, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -43, + -30.5, + 0, + 43, + -30.5, + 0, + -43, + 30.5, + 0, + 43, + 30.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 62, + 87, + 62, + 1, + 1, + 87, + 1 + ], + "nuv": [ + 0.011363636363636364, + 0.015873015873015872, + 0.9886363636363636, + 0.015873015873015872, + 0.011363636363636364, + 0.9841269841269841, + 0.9886363636363636, + 0.9841269841269841 + ], + "minPos": [ + -43, + -30.5, + 0 + ], + "maxPos": [ + 43, + 30.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "78a2ff6d-18fa-4a97-b5d4-8efc3975682c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "78a2ff6d-18fa-4a97-b5d4-8efc3975682c@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 016.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 016.png new file mode 100644 index 00000000..56742e80 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 016.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 016.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 016.png.meta new file mode 100644 index 00000000..17d48bac --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 016.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "24b3fb75-7e7d-48bd-9dab-f88850c70be0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "24b3fb75-7e7d-48bd-9dab-f88850c70be0@6c48a", + "displayName": "timo5 016", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "24b3fb75-7e7d-48bd-9dab-f88850c70be0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "24b3fb75-7e7d-48bd-9dab-f88850c70be0@f9941", + "displayName": "timo5 016", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 60, + "height": 60, + "rawWidth": 62, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -30, + -30, + 0, + 30, + -30, + 0, + -30, + 30, + 0, + 30, + 30, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 61, + 61, + 61, + 1, + 1, + 61, + 1 + ], + "nuv": [ + 0.016129032258064516, + 0.016129032258064516, + 0.9838709677419355, + 0.016129032258064516, + 0.016129032258064516, + 0.9838709677419355, + 0.9838709677419355, + 0.9838709677419355 + ], + "minPos": [ + -30, + -30, + 0 + ], + "maxPos": [ + 30, + 30, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "24b3fb75-7e7d-48bd-9dab-f88850c70be0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "24b3fb75-7e7d-48bd-9dab-f88850c70be0@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 017.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 017.png new file mode 100644 index 00000000..f2918011 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 017.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 017.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 017.png.meta new file mode 100644 index 00000000..1cc86365 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/pic/guaiA4e/timo5 017.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "7a2c2e3c-e4e6-4eb6-a353-7acda3a75f58", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7a2c2e3c-e4e6-4eb6-a353-7acda3a75f58@6c48a", + "displayName": "timo5 017", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7a2c2e3c-e4e6-4eb6-a353-7acda3a75f58", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7a2c2e3c-e4e6-4eb6-a353-7acda3a75f58@f9941", + "displayName": "timo5 017", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 41, + "height": 29, + "rawWidth": 43, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -20.5, + -14.5, + 0, + 20.5, + -14.5, + 0, + -20.5, + 14.5, + 0, + 20.5, + 14.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 30, + 42, + 30, + 1, + 1, + 42, + 1 + ], + "nuv": [ + 0.023255813953488372, + 0.03225806451612903, + 0.9767441860465116, + 0.03225806451612903, + 0.023255813953488372, + 0.967741935483871, + 0.9767441860465116, + 0.967741935483871 + ], + "minPos": [ + -20.5, + -14.5, + 0 + ], + "maxPos": [ + 20.5, + 14.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7a2c2e3c-e4e6-4eb6-a353-7acda3a75f58@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7a2c2e3c-e4e6-4eb6-a353-7acda3a75f58@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine.meta new file mode 100644 index 00000000..bb4695ef --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "366b6b91-3a54-4fb2-a0ba-71d9d40591a9", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.atlas b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.atlas new file mode 100644 index 00000000..27fbb9ba --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.atlas @@ -0,0 +1,118 @@ + +guaiA4e.png +size: 165,816 +format: RGBA8888 +filter: Linear,Linear +repeat: none +guaiA4e/timo5 002 + rotate: true + xy: 2, 263 + size: 52, 97 + orig: 52, 97 + offset: 0, 0 + index: -1 +guaiA4e/timo5 003 + rotate: false + xy: 103, 267 + size: 58, 88 + orig: 58, 88 + offset: 0, 0 + index: -1 +guaiA4e/timo5 004 + rotate: true + xy: 2, 184 + size: 77, 96 + orig: 77, 96 + offset: 0, 0 + index: -1 +guaiA4e/timo5 005 + rotate: false + xy: 103, 419 + size: 60, 60 + orig: 62, 62 + offset: 1, 1 + index: -1 +guaiA4e/timo5 006 + rotate: true + xy: 133, 615 + size: 42, 28 + orig: 44, 30 + offset: 1, 1 + index: -1 +guaiA4e/timo5 007 + rotate: true + xy: 2, 589 + size: 111, 129 + orig: 113, 131 + offset: 1, 1 + index: -1 +guaiA4e/timo5 008 + rotate: true + xy: 2, 317 + size: 162, 99 + orig: 162, 148 + offset: 0, 10 + index: -1 +guaiA4e/timo5 009 + rotate: false + xy: 101, 177 + size: 58, 88 + orig: 58, 88 + offset: 0, 0 + index: -1 +guaiA4e/timo5 010 + rotate: true + xy: 2, 105 + size: 77, 96 + orig: 77, 96 + offset: 0, 0 + index: -1 +guaiA4e/timo5 011 + rotate: false + xy: 89, 2 + size: 74, 83 + orig: 74, 83 + offset: 0, 0 + index: -1 +guaiA4e/timo5 012 + rotate: true + xy: 2, 702 + size: 112, 145 + orig: 114, 147 + offset: 1, 1 + index: -1 +guaiA4e/timo5 013 + rotate: true + xy: 2, 19 + size: 84, 85 + orig: 84, 85 + offset: 0, 0 + index: -1 +guaiA4e/timo5 014 + rotate: true + xy: 2, 481 + size: 106, 129 + orig: 106, 129 + offset: 0, 0 + index: -1 +guaiA4e/timo5 015 + rotate: true + xy: 100, 87 + size: 88, 63 + orig: 88, 63 + offset: 0, 0 + index: -1 +guaiA4e/timo5 016 + rotate: false + xy: 103, 357 + size: 60, 60 + orig: 62, 62 + offset: 1, 1 + index: -1 +guaiA4e/timo5 017 + rotate: true + xy: 133, 659 + size: 41, 29 + orig: 43, 31 + offset: 1, 1 + index: -1 diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.atlas.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.atlas.meta new file mode 100644 index 00000000..e6a8b0af --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.1", + "importer": "*", + "imported": true, + "uuid": "2cf6c696-6824-46d4-b0e4-25cd69fa7703", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.json b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.json new file mode 100644 index 00000000..2f5de4a0 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"qwZh7b3w7gv2Su9Qvk7eCGWuBEk","spine":"3.8.75","x":-81.37,"y":-9.21,"width":162.37,"height":188.56,"images":"./pic/","audio":""},"bones":[{"name":"root","scaleX":0.6,"scaleY":0.6},{"name":"scale","parent":"root","x":-0.23,"y":0.3},{"name":"jifei","parent":"scale","x":1.4,"y":109.51},{"name":"IK1","parent":"jifei","x":-50.81,"y":-93.29,"color":"ff3f00ff"},{"name":"IK2","parent":"jifei","x":-30.48,"y":-93.29,"color":"ff3f00ff"},{"name":"IK3","parent":"jifei","x":29.58,"y":-110.85,"color":"ff3f00ff"},{"name":"IK4","parent":"jifei","x":39.74,"y":-109.46,"color":"ff3f00ff"},{"name":"timo5 008","parent":"jifei","length":51.06,"rotation":-11.58,"x":-54.21,"y":-29.67},{"name":"bone","parent":"timo5 008","length":43.08,"rotation":20.9,"x":51.06},{"name":"timo5 002","parent":"timo5 008","length":24.44,"rotation":154.43,"x":-0.92,"y":-1.28},{"name":"bone2","parent":"timo5 002","length":29.44,"rotation":-14.65,"x":24.44},{"name":"bone3","parent":"bone2","length":28.1,"rotation":52.71,"x":29.44},{"name":"timo5 010","parent":"timo5 008","length":37.71,"rotation":-31.66,"x":1.71,"y":-4.25},{"name":"bone4","parent":"timo5 010","length":33.55,"rotation":-94.77,"x":37.71},{"name":"bone5","parent":"bone4","length":26.25,"rotation":67.68,"x":33.04,"y":0.64},{"name":"timo5 004","parent":"timo5 008","length":36.02,"rotation":-29.73,"x":15.6,"y":-0.57},{"name":"bone6","parent":"timo5 004","length":35.82,"rotation":-82.02,"x":36.02},{"name":"bone7","parent":"bone6","length":20.7,"rotation":41.3,"x":35.82},{"name":"timo5 009","parent":"bone","length":39.5,"rotation":-107.77,"x":27.13,"y":-4.33},{"name":"bone8","parent":"timo5 009","length":37.05,"rotation":34.42,"x":39.5},{"name":"timo5 003","parent":"bone","length":38.91,"rotation":-106.08,"x":38.26,"y":-4.69},{"name":"bone9","parent":"timo5 003","length":36.49,"rotation":35.3,"x":38.91},{"name":"timo5 013","parent":"timo5 008","length":31.76,"rotation":112.75,"x":45.24,"y":5.92},{"name":"bone10","parent":"timo5 013","length":32.8,"rotation":-15.37,"x":31.76},{"name":"timo5 014","parent":"bone10","length":63.63,"rotation":-3.67,"x":38.13,"y":-0.48},{"name":"bone11","parent":"timo5 014","length":41.76,"rotation":-11.38,"x":70.79,"y":-3.33},{"name":"timo5 015","parent":"timo5 014","length":28.44,"rotation":68.24,"x":45.54,"y":32.32},{"name":"bone12","parent":"timo5 015","length":33.33,"rotation":3.05,"x":28.44},{"name":"bone13","parent":"bone12","length":27.31,"rotation":-3.91,"x":33.33},{"name":"timo5 011","parent":"timo5 014","length":26.4,"rotation":49.84,"x":40.22,"y":8.23},{"name":"bone14","parent":"timo5 011","length":34.29,"rotation":-5.7,"x":26.4},{"name":"bone15","parent":"bone14","length":28.55,"rotation":-6.06,"x":34.29},{"name":"timo5 005","parent":"bone10","length":45.87,"rotation":-87.68,"x":30.27,"y":-6.12},{"name":"timo5 006","parent":"timo5 005","length":30.24,"rotation":56.91,"x":43.58,"y":-0.7},{"name":"timo5 007","parent":"timo5 006","rotation":-90.1,"x":63.67,"y":40.09},{"name":"timo5 012","parent":"bone","length":60.86,"rotation":27.2,"x":44.18,"y":-0.99},{"name":"timo5 016","parent":"bone10","length":47.14,"rotation":-140.66,"x":25.22,"y":16.5},{"name":"timo5 017","parent":"timo5 016","length":30.07,"rotation":38.94,"x":45.04,"y":0.69}],"slots":[{"name":"timo5 002","bone":"timo5 002","attachment":"guaiA4e/timo5 002"},{"name":"timo5 003","bone":"timo5 003","attachment":"guaiA4e/timo5 003"},{"name":"timo5 004","bone":"timo5 004","attachment":"guaiA4e/timo5 004"},{"name":"timo5 005","bone":"timo5 005","attachment":"guaiA4e/timo5 005"},{"name":"timo5 006","bone":"timo5 006","attachment":"guaiA4e/timo5 006"},{"name":"timo5 007","bone":"timo5 007","attachment":"guaiA4e/timo5 007"},{"name":"timo5 008","bone":"timo5 008","attachment":"guaiA4e/timo5 008"},{"name":"timo5 009","bone":"timo5 009","attachment":"guaiA4e/timo5 009"},{"name":"timo5 010","bone":"timo5 010","attachment":"guaiA4e/timo5 010"},{"name":"timo5 011","bone":"timo5 011","attachment":"guaiA4e/timo5 011"},{"name":"timo5 012","bone":"timo5 012","attachment":"guaiA4e/timo5 012"},{"name":"timo5 013","bone":"timo5 013","attachment":"guaiA4e/timo5 013"},{"name":"timo5 014","bone":"timo5 014","attachment":"guaiA4e/timo5 014"},{"name":"timo5 015","bone":"timo5 015","attachment":"guaiA4e/timo5 015"},{"name":"timo5 016","bone":"timo5 016","attachment":"guaiA4e/timo5 016"},{"name":"timo5 017","bone":"timo5 017","attachment":"guaiA4e/timo5 017"},{"name":"atkbox","bone":"timo5 006","attachment":"atkbox"}],"ik":[{"name":"IK1","bones":["timo5 010","bone4"],"target":"IK1","bendPositive":false},{"name":"IK2","order":1,"bones":["timo5 004","bone6"],"target":"IK2","bendPositive":false},{"name":"IK3","order":2,"bones":["timo5 009","bone8"],"target":"IK3"},{"name":"IK4","order":3,"bones":["timo5 003","bone9"],"target":"IK4"}],"skins":[{"name":"default","attachments":{"timo5 002":{"guaiA4e/timo5 002":{"type":"mesh","uvs":[0.09465,0.00554,0.1358,0.22065,0,0.51848,0,0.68946,0.06378,0.90456,0.35186,1,0.81484,1,1,0.85492,0.88686,0.69498,1,0.50193,1,0.24271,0.88686,0.0607,0.54734,0,0.61936,0.38059,0.4959,0.67843,0.53705,0.524,0.4033,0.30889,0.81484,0.44126,0.25926,0.52951,0.70167,0.5957,0.44446,0.83286,0.74282,0.78874],"triangles":[1,0,12,16,1,12,13,12,11,16,12,13,10,17,11,18,1,16,17,13,11,17,10,9,15,16,13,18,16,15,2,1,18,19,13,17,15,13,19,14,18,15,14,15,19,3,2,18,8,17,9,19,17,8,21,19,8,14,19,21,20,18,14,20,14,21,4,3,18,20,4,18,5,4,20,7,6,21,7,21,8,20,21,6,5,20,6],"vertices":[1,11,43.91,11.27,1,2,10,38.43,28.23,0.10769,11,23.89,17.52,0.89231,3,9,48.19,18.27,0.08108,10,8.69,28.67,0.77388,11,0.11,35.39,0.14505,3,9,32.89,24.66,0.47816,10,-7.48,24.98,0.50674,11,-15.13,41.92,0.01509,2,9,12.36,29.65,0.94026,10,-27.08,17.09,0.05974,2,9,-1.96,19.41,1,10,-32.76,0.43,0,1,9,-11.25,-2.81,1,2,9,-1.98,-17.12,0.98729,10,-11.54,-29.29,0.01271,2,9,14.6,-17.68,0.61784,10,2.28,-20.1,0.38216,3,9,29.61,-30.33,0.04048,10,21.84,-21.66,0.89882,11,-18.9,-13.04,0.0607,2,10,46.36,-16.06,0.13392,11,4.22,-22.94,0.86608,2,10,62.26,-6.39,2.0E-5,11,22.76,-24.49,0.99998,1,11,35.13,-10.58,1,2,10,28.91,0.26,0.70984,11,-0.28,0.52,0.29016,3,9,23.93,0.46,0.76041,10,-0.69,0.08,0.23958,11,-24.31,17.8,0,2,10,14.39,1.33,0.99706,11,-11.38,9.93,0.00294,2,10,33.18,12.76,0.16355,11,10.54,8.11,0.83645,3,9,38.75,-23.71,0.0069,10,25.44,-10.97,0.87093,11,-9.69,-6.5,0.12217,3,9,42,6.24,0.04045,10,10.65,15.29,0.85424,11,-6.18,23.42,0.10531,2,9,27.2,-12.51,0.15096,10,9.52,-8.57,0.84904,2,9,11.14,8.71,0.99728,10,-15.89,-0.65,0.00272,2,9,9.1,-7.26,0.94826,10,-8.26,-14.82,0.05174],"hull":13,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,0,24],"width":52,"height":97}},"timo5 003":{"guaiA4e/timo5 003":{"type":"mesh","uvs":[0.18855,0,0,0.05771,0,0.29952,0.1309,0.48952,0.20427,0.68298,0.34055,0.86952,0.55021,1,0.72317,1,1,1,0.93807,0.76243,1,0.57589,1,0.32025,0.93807,0.08534,0.69172,0,0.39821,0,0.4483,0.5787,0.51819,0.34118,0.57937,0.75659,0.73926,0.48912],"triangles":[17,15,18,4,3,16,15,4,16,2,0,16,15,16,18,14,16,0,18,11,10,16,3,2,16,13,18,18,12,11,18,13,12,16,14,13,2,1,0,7,9,8,6,17,7,7,17,9,6,5,17,5,15,17,5,4,15,17,18,9,9,18,10],"vertices":[1,20,-10.08,-21.85,1,1,20,-3.55,-31.99,1,1,20,17.53,-29.08,1,2,21,-15.91,-12.34,0.07043,20,33.05,-19.27,0.92957,2,21,1.16,-16.4,0.79997,20,49.33,-12.72,0.20003,1,21,19.37,-16.95,1,1,21,35.16,-11.45,1,1,21,39.79,-2.54,1,1,21,47.18,11.71,1,2,21,26.97,18.15,0.91082,20,50.43,30.4,0.08918,2,21,14.06,28.9,0.50738,20,33.68,31.71,0.49262,2,21,-5.91,39.26,0.07254,20,11.39,28.63,0.92746,2,21,-25.91,45.6,2.9E-4,20,-8.59,22.24,0.99971,1,20,-14.07,7.05,1,1,20,-11.74,-9.81,1,2,21,-0.47,0.38,0.23318,20,38.3,0.04,0.76682,2,21,-17.15,13.61,5.9E-4,20,17.05,1.2,0.99941,1,21,16.93,-0.08,1,2,21,0.31,18.99,0.24853,20,28.18,15.68,0.75147],"hull":15,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28],"width":58,"height":88}},"timo5 004":{"guaiA4e/timo5 004":{"type":"mesh","uvs":[0.00959,0,0,0.17092,0,0.44325,0.12408,0.63642,0.10829,0.73142,0.20699,0.88025,0.47151,1,0.62154,1,0.7992,1,0.85053,0.82959,1,0.71242,1,0.43375,0.92949,0.18359,0.65312,0.01259,0.33333,0,0.72814,0.41792,0.61759,0.55409,0.58206,0.30709,0.47546,0.72509,0.49915,0.84859],"triangles":[17,14,13,17,13,12,15,17,12,15,12,11,14,2,1,0,14,1,17,2,14,17,3,2,16,17,15,3,17,16,15,11,10,16,15,10,18,3,16,4,3,18,9,16,10,18,16,9,19,18,9,5,4,18,5,18,19,6,5,19,7,19,9,6,19,7,8,7,9],"vertices":[2,16,-3.14,-68.05,0.00523,15,-31.81,-6.34,0.99477,2,16,10.97,-59.66,0.06266,15,-21.53,-19.15,0.93734,3,17,-32.15,-32.05,0.02746,16,32.82,-45.29,0.35435,15,-4.27,-38.79,0.61819,3,17,-12.46,-25.16,0.30286,16,43.06,-27.12,0.48005,15,15.15,-46.41,0.21709,3,17,-3.59,-27.62,0.56934,16,51.35,-23.13,0.34017,15,20.25,-54.06,0.09049,3,17,11.61,-22.08,0.91807,16,59.11,-8.93,0.07067,15,35.39,-59.78,0.01126,1,17,25.82,-3.5,1,2,17,27.42,7.94,0.9586,16,51.18,24.06,0.0414,2,17,29.32,21.49,0.85655,16,43.67,35.49,0.14345,2,17,13.66,27.67,0.48628,16,27.83,29.81,0.51372,3,17,4.12,40.63,0.1535,16,12.1,33.24,0.8465,15,70.62,-7.37,0,3,17,-22.37,44.34,0.00469,16,-10.25,18.54,0.69736,15,52.97,12.72,0.29795,2,16,-27.33,0.81,0.02542,15,33.03,27.18,0.97458,1,15,6.21,25.46,1,1,15,-13.08,10.12,1,3,17,-26.78,23.82,1.0E-5,16,-0.02,0.22,0.54415,15,36.24,0.05,0.45584,2,17,-15.02,13.57,2.7E-4,16,15.58,0.29,0.99973,1,15,20.76,0.62,1,2,17,-0.28,0.46,0.30949,16,35.31,0.16,0.69051,2,17,11.72,0.62,0.99682,16,44.21,8.2,0.00318],"hull":15,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28],"width":77,"height":96}},"timo5 005":{"guaiA4e/timo5 005":{"x":21.26,"y":-1.34,"rotation":47.9,"width":62,"height":62}},"timo5 006":{"guaiA4e/timo5 006":{"x":13.21,"y":3.06,"rotation":12.53,"width":44,"height":30}},"timo5 007":{"guaiA4e/timo5 007":{"x":1.15,"y":8.12,"rotation":12.53,"width":113,"height":131}},"timo5 008":{"guaiA4e/timo5 008":{"type":"mesh","uvs":[0.09737,0.31598,0,0.41017,0,0.56254,0.02398,0.72044,0.13027,0.8645,0.3049,0.93098,0.56052,0.92821,0.74021,0.91159,0.93003,0.79801,1,0.6401,1,0.43233,0.82879,0.31321,0.62126,0.26612,0.36058,0.29105,0.42132,0.54314,0.5428,0.53483,0.28719,0.51821,0.42638,0.73429,0.38842,0.41294],"triangles":[5,17,6,6,17,7,17,15,7,8,7,15,9,8,15,11,15,12,9,15,11,17,14,15,11,10,9,14,18,15,15,18,12,18,13,12,5,4,17,17,16,14,17,4,16,4,3,16,3,2,16,2,1,16,16,18,14,1,0,16,16,13,18,16,0,13],"vertices":[2,7,-7.59,22.72,1,8,-47.49,41.23,0,1,7,-20.24,5.9,1,1,7,-15.71,-16.19,1,2,7,-7.22,-38.31,0.99852,8,-67.8,-16.32,0.00148,2,7,13.93,-55.74,0.94193,8,-53.8,-39.88,0.05807,2,7,43.62,-59.7,0.70784,8,-27.21,-53.66,0.29216,2,7,84.11,-50.98,0.16273,8,13.84,-59.16,0.83727,2,7,112.13,-42.73,0.01367,8,43,-60.88,0.98633,1,8,75.83,-48.63,1,1,8,90.39,-27.12,1,1,8,94.78,3.31,1,1,8,69.84,24.72,1,2,7,74.08,46.99,0.04552,8,37.56,36.42,0.95448,2,7,33.45,34.89,0.73613,8,-4.76,38.8,0.26387,2,7,50.58,0.32,0.61139,8,-0.35,0.46,0.38861,1,8,19.31,-1.13,1,1,7,28.55,-0.43,1,2,7,57.06,-27.23,0.44046,8,-3.57,-27.65,0.55954,2,7,41.49,18.13,0.70901,8,-2.87,20.3,0.29099],"hull":14,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,0,26],"width":162,"height":148}},"timo5 009":{"guaiA4e/timo5 009":{"type":"mesh","uvs":[0.24731,0.00271,0,0.0718,0,0.24798,0.08483,0.4138,0.16869,0.62453,0.27876,0.80762,0.4989,1,0.73476,1,0.98635,1,0.93918,0.77307,0.98635,0.60725,1,0.37234,1,0.1478,0.75573,0,0.47269,0,0.43438,0.55461,0.55548,0.71509,0.50428,0.31709,0.69752,0.51996,0.25111,0.36914,0.75391,0.74182],"triangles":[4,19,15,4,3,19,10,18,11,15,17,18,15,19,17,18,17,11,3,2,19,17,13,11,13,12,11,2,0,19,17,0,14,17,19,0,17,14,13,2,1,0,7,9,8,6,16,7,7,20,9,7,16,20,6,5,16,5,15,16,5,4,15,9,20,10,16,18,20,20,18,10,16,15,18],"vertices":[1,18,-6.87,-19.2,1,1,18,1.5,-32.33,1,1,18,16.79,-29.76,1,2,19,-20.24,-13.38,0.02906,18,30.36,-22.48,0.97094,2,19,-1.37,-16.77,0.66829,18,47.84,-14.61,0.33171,2,19,15.93,-17.75,0.99987,18,62.67,-5.64,1.3E-4,1,19,36.66,-13.28,1,1,19,42.41,-0.87,1,1,19,48.54,12.37,1,2,19,29.28,18.28,0.94604,18,53.31,31.63,0.05396,2,19,17.19,26.9,0.66285,18,38.47,31.91,0.33715,2,19,-1.24,36.31,0.15894,18,17.95,29.25,0.84106,2,19,-19.16,44.62,0.00912,18,-1.53,25.97,0.99088,1,18,-12.01,9.84,1,1,18,-9.28,-6.35,1,2,19,-0.48,-0.2,0.3349,18,39.22,-0.43,0.6651,2,19,15.29,0.24,0.99956,18,51.98,8.84,4.4E-4,2,19,-17.74,12.27,3.0E-5,18,17.93,0.09,0.99997,2,19,3.17,14.93,0.41627,18,33.68,14.11,0.58373,2,19,-19.75,-2.98,0.00399,18,24.89,-13.63,0.99601,2,19,22.26,9.69,0.95432,18,52.38,20.58,0.04568],"hull":15,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28],"width":58,"height":88}},"timo5 010":{"guaiA4e/timo5 010":{"type":"mesh","uvs":[0.1733,0.00787,0,0.02495,0,0.18724,0,0.45204,0.09876,0.60579,0.19993,0.82787,0.32772,1,0.65252,1,0.84954,1,0.86551,0.84068,1,0.67839,1,0.40079,0.87616,0.16162,0.69512,0,0.42356,0,0.70632,0.40475,0.50497,0.28442,0.59182,0.52825,0.4418,0.68342,0.46944,0.80059,0.36679,0.51559,0.68263,0.81959,0.27755,0.24889,0.80767,0.60911,0.12468,0.35004,0.25292,0.70497],"triangles":[17,16,15,24,22,20,20,22,16,3,2,24,15,12,11,15,16,12,24,2,22,22,14,16,16,13,12,16,14,13,2,0,22,22,0,14,2,1,0,9,23,10,5,4,25,21,17,23,25,4,20,18,20,17,23,11,10,17,15,23,23,15,11,4,24,20,4,3,24,20,16,17,7,21,8,8,21,9,6,19,7,7,19,21,6,5,19,19,25,18,25,19,5,21,23,9,21,18,17,21,19,18,25,20,18],"vertices":[2,13,-4.52,-55.51,0.00401,12,-17.98,-0.03,0.99599,2,13,5.07,-64.92,0.01723,12,-26.58,-10.36,0.98277,2,13,17.26,-55.21,0.10852,12,-15.91,-21.71,0.89148,2,13,37.14,-39.37,0.5208,12,1.5,-40.23,0.4792,2,13,43.94,-24.22,0.83065,12,17.15,-45.78,0.16935,3,14,9.28,-21.45,0.32397,13,55.76,-4.84,0.66692,12,37.43,-55.97,0.0091,2,14,27.74,-16.05,0.91256,13,62.55,13.15,0.08744,2,14,33.99,8.16,0.98314,13,46.97,32.71,0.01686,2,14,37.78,22.85,0.9303,13,37.51,44.57,0.0697,2,14,23.28,27.87,0.72385,13,24.78,36,0.27615,3,14,10.78,41.79,0.31475,13,6.15,34.39,0.6824,12,72.49,-3.32,0.00285,3,14,-15.02,48.45,0.03142,13,-14.7,17.78,0.55151,12,54.23,16.1,0.41707,2,13,-26.71,-3.98,0.00782,12,31.55,26.29,0.99218,1,12,10.77,28.05,1,1,12,-4.46,13.72,1,3,14,-20.3,26.45,2.8E-4,13,-0.3,0.34,0.47589,12,38.02,0.33,0.52382,2,13,0.32,-18.99,0.01685,12,18.81,-1.87,0.98315,2,14,-11.03,14.96,0.00382,13,14.46,0.83,0.99618,1,14,0.51,0.05,1,2,14,11.93,-0.7,0.99171,13,40.78,9.75,0.00829,2,13,24.31,-13.48,0.78908,12,26.26,-25.33,0.21092,2,14,17.8,14.74,0.85073,13,31.98,23.73,0.14927,2,13,13.67,-33.21,0.08202,12,3.48,-10.86,0.91798,3,14,6.27,28.71,0.17265,13,8.87,17.34,0.82585,12,54.25,-10.28,0.0015,2,13,27.57,-35.49,0.30697,12,0.05,-24.52,0.69303,3,14,-3.69,-13.58,0.45877,13,44.2,-7.93,0.48359,12,26.13,-43.39,0.05764],"hull":15,"edges":[0,2,2,4,4,6,6,8,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28,8,10],"width":77,"height":96}},"timo5 011":{"guaiA4e/timo5 011":{"type":"mesh","uvs":[1,0.85557,1,0.64591,0.85739,0.44714,0.59474,0.22931,0.39735,0.04801,0.13165,0,0,0.07796,0,0.29852,0.03697,0.54358,0.17135,0.81042,0.48897,0.94112,0.72719,1,0.95014,1,0.61924,0.66438,0.31644,0.37338,0.45014,0.54517],"triangles":[7,6,5,14,5,4,7,5,14,14,4,3,8,7,14,15,14,3,15,3,2,13,15,2,15,9,8,15,8,14,10,15,13,9,15,10,13,2,1,13,1,0,11,10,13,0,11,13,12,11,0],"vertices":[1,29,-4.67,-8.39,1,2,29,7.22,-21.1,0.93172,30,-16.96,-22.92,0.06828,3,29,26.2,-25.93,0.44663,30,2.41,-25.82,0.55336,31,-28.97,-29.04,1.0E-5,3,29,52.75,-25.84,0.00691,30,28.81,-23.06,0.71184,31,-3.01,-23.51,0.28125,2,30,49.75,-21.96,0.08306,31,17.7,-20.2,0.91694,1,31,32.25,-6.4,1,1,31,32.55,5.3,1,2,30,53.43,13.87,0.04835,31,17.57,15.81,0.95165,3,29,65.05,21.41,4.0E-5,30,36.31,25.18,0.64277,31,-0.65,25.26,0.35719,3,29,42.65,30.78,0.09004,30,13.08,32.26,0.89918,31,-24.49,29.84,0.01078,2,29,18.08,22.64,0.72127,30,-10.55,21.69,0.27873,2,29,1.87,14.16,0.99765,30,-25.82,11.62,0.00235,1,29,-10.17,2.88,1,2,29,26.74,-0.72,0.34213,30,0.42,-0.68,0.65787,2,30,33.35,0.31,0.95226,31,-0.97,0.21,0.04774,1,30,16.1,2.24,1],"hull":13,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,0],"width":74,"height":83}},"timo5 012":{"guaiA4e/timo5 012":{"x":47.66,"y":4.11,"rotation":-35.4,"width":114,"height":147}},"timo5 013":{"guaiA4e/timo5 013":{"type":"mesh","uvs":[0.12355,0,0,0.0324,0,0.18226,0.04543,0.33666,0.07759,0.55009,0,0.64092,0.08219,0.87706,0.32574,1,0.62443,1,0.91852,0.96334,1,0.74537,1,0.47744,1,0.12322,0.77147,0,0.44062,0,0.51414,0.55464,0.52333,0.37299,0.56009,0.75899,0.32574,0.54101,0.75309,0.52285,0.266,0.34574,0.77147,0.36391],"triangles":[15,16,19,15,18,16,4,20,18,4,3,20,18,20,16,19,21,11,19,16,21,21,12,11,13,21,16,16,20,14,21,13,12,13,16,14,20,2,0,20,0,14,20,3,2,2,1,0,7,17,8,8,17,9,6,18,7,17,18,15,17,7,18,9,17,10,5,4,6,6,4,18,17,19,10,17,15,19,19,11,10],"vertices":[1,23,48.08,33.03,1,2,22,84.34,34.48,1.9E-4,23,45.46,43.44,0.99981,2,22,71.85,36.94,0.01414,23,32.72,43.6,0.98586,2,22,58.23,35.74,0.09377,23,19.55,39.95,0.90623,2,22,39.91,36.6,0.46903,23,1.38,37.47,0.53097,2,22,33.6,44.49,0.6473,23,-6.26,44.09,0.3527,2,22,12.57,41.6,0.86033,23,-26.42,37.43,0.13967,2,22,-1.64,23.56,0.98934,23,-37.12,17.11,0.01066,1,22,-6.5,-1.06,1,2,22,-8.23,-25.9,0.98356,23,-34.63,-32.72,0.01644,2,22,8.62,-36.2,0.84401,23,-16.19,-39.8,0.15599,2,22,30.97,-40.61,0.40558,23,6.58,-40.08,0.59442,2,22,60.5,-46.44,0.04077,23,36.69,-40.46,0.95923,2,22,74.5,-29.64,0.00126,23,47.4,-21.39,0.99874,1,23,47.75,6.4,1,2,22,32.43,0.7,0.29784,23,0.53,0.81,0.70216,2,22,47.43,-3.05,5.0E-5,23,15.96,-0.16,0.99995,1,22,14.64,0.28,1,2,22,36.63,16,0.38641,23,1.89,16.62,0.61359,2,22,31.19,-19.52,0.45702,23,2.98,-19.29,0.54298,2,22,53.89,17.71,0.07101,23,18.55,21.43,0.92899,2,22,44.15,-23.65,0.14351,23,16.47,-21.01,0.85649],"hull":15,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28],"width":84,"height":85}},"timo5 014":{"guaiA4e/timo5 014":{"type":"mesh","uvs":[0.00168,0.8872,0.27896,1,0.78409,1,0.99547,0.83306,0.8637,0.58492,0.9241,0.4586,1,0.36385,1,0.19467,0.90488,0.05255,0.78683,0,0.58643,0,0.42995,0.05932,0.34759,0.19241,0.14444,0.31423,0,0.51274,0.56172,0.43153,0.63584,0.2849,0.68251,0.15406,0.44642,0.22174,0.76762,0.31874,0.62761,0.10444,0.8088,0.10895,0.32837,0.35483,0.80605,0.44055],"triangles":[20,10,9,21,9,8,17,20,9,21,17,9,20,18,11,20,11,10,12,11,18,16,20,17,18,20,16,19,17,21,16,17,19,21,8,7,22,12,18,19,21,7,6,19,7,15,18,16,5,23,19,6,5,19,4,23,5,23,16,19,23,15,16,15,23,4,22,18,15,22,13,12,14,1,0,22,14,13,22,1,14,1,22,15,2,4,3,1,15,2,2,15,4],"vertices":[1,24,8.35,53.33,1,1,24,-4.67,23.23,1,2,24,-1.91,-30.25,0.9998,25,-62.02,-46.51,2.0E-4,1,24,20.75,-51.51,1,1,24,52,-35.92,1,2,24,68.6,-41.47,0.15205,25,8.77,-37.18,0.84795,2,24,81.23,-48.87,0.02414,25,22.98,-40.69,0.97586,1,25,43.55,-33.4,1,1,25,57.47,-17.78,1,1,25,59.68,-3.72,1,1,25,52.59,16.31,1,1,25,39.84,29.39,1,2,24,99.75,21.33,0.24,25,20.74,31.88,0.76,1,24,82.94,42.02,1,1,24,56.58,56,1,1,24,70.11,-2.93,1,1,25,19.69,-0.9,1,1,25,37.26,0.07,1,2,24,96.51,10.67,0.04,25,20.67,20.75,0.96,1,25,20.24,-15.53,1,2,24,112.61,-7.73,9.0E-5,25,41.35,7.69,0.99991,1,25,47.21,-10.61,1,1,24,78.72,22.28,1,1,25,6.79,-24.61,1],"hull":15,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28],"width":106,"height":129}},"timo5 015":{"guaiA4e/timo5 015":{"type":"mesh","uvs":[0.0041,0,0.28553,0,0.58542,0.12615,0.82532,0.28726,1,0.56437,1,0.93171,0.83916,1,0.52544,1,0.23017,0.89304,0.05946,0.66104,0,0.33882,0.67439,0.66087,0.79712,0.73706,0.54485,0.55611,0.33008,0.37992,0.20394,0.23706,0.41189,0.71325,0.57553,0.3323,0.20735,0.52754,0.4869,0.24658,0.79366,0.48956,0.58885,0.83714],"triangles":[9,10,18,10,15,18,18,15,14,14,15,19,10,0,15,19,15,1,15,0,1,8,16,7,7,16,21,8,9,16,16,9,18,11,16,13,16,18,13,13,18,14,13,14,17,13,17,20,17,14,19,20,17,3,17,2,3,17,19,2,2,19,1,7,21,6,21,12,6,6,12,5,12,4,5,21,16,11,21,11,12,11,20,12,12,20,4,11,13,20,20,3,4],"vertices":[1,28,37.96,-2.02,1,2,27,50.05,-17.7,0.04656,28,17.89,-16.52,0.95344,3,26,48.57,-27.66,0.04117,27,23.45,-24.91,0.81599,28,-8.16,-25.53,0.14284,3,26,25.15,-27.27,0.50821,27,0.17,-27.47,0.49177,28,-31.22,-29.66,2.0E-5,2,26,3.89,-17.84,0.9746,27,-22.11,-20.78,0.0254,1,26,-5.79,3.18,1,2,26,5.27,13.01,0.99843,27,-24.61,10,0.00157,3,26,30.35,24.55,0.35353,27,-1.18,24.6,0.64422,28,-36.11,22.19,0.00224,3,26,56.77,29.3,0.004,27,24.43,32.62,0.77312,28,-11.1,31.94,0.22289,2,27,44.91,28.16,0.32329,28,9.63,28.89,0.67671,2,27,60.09,13.7,0.01486,28,25.76,15.5,0.98514,2,26,27.38,-0.33,0.95654,27,-1.01,-0.46,0.04346,2,26,15.56,-0.49,0.99987,27,-12.71,-2.1,1.3E-4,2,26,40.49,-1.56,1.0E-5,27,12.16,-0.04,0.99999,2,27,34.07,0.54,0.21535,28,0.7,0.59,0.78465,1,28,14.96,-0.21,1,3,26,46.98,12.32,0.01932,27,16.85,14.55,0.93771,28,-17.44,13.4,0.04296,3,26,43.93,-15.5,0.05085,27,17.32,-13.43,0.91392,28,-15.06,-14.49,0.03523,2,27,38.31,14.14,0.33193,28,4.01,14.45,0.66807,3,26,53.28,-17.14,0.00714,27,26.8,-13.89,0.77816,28,-5.57,-14.3,0.2147,3,26,26.76,-13.29,0.77435,27,-9.86,-9.07,0.22565,28,-42.48,-11.99,1.0E-5,3,26,22.28,10.52,0.61449,27,3.16,11.77,0.3829,28,-30.91,9.69,0.00261],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":88,"height":63}},"timo5 016":{"guaiA4e/timo5 016":{"x":24.98,"y":-0.35,"rotation":49.94,"width":62,"height":62}},"timo5 017":{"guaiA4e/timo5 017":{"x":13.09,"y":-0.32,"rotation":11,"width":43,"height":31}},"atkbox":{"atkbox":{"type":"boundingbox","vertexCount":4,"vertices":[65.1,31.69,27.77,6.71,52.41,-26.91,87.54,-1.21]}}}}],"events":{"attack":{}},"animations":{"atk":{"slots":{"timo5 007":{"color":[{"time":0.6,"color":"ffffffff"},{"time":0.6333,"color":"ffffff00"}]}},"bones":{"timo5 002":{"rotate":[{"angle":-12.33},{"time":0.5,"angle":-17.07},{"time":0.6333,"angle":25.15},{"time":1,"angle":-12.33}]},"bone2":{"rotate":[{"angle":-12.33},{"time":0.5,"angle":-28.46},{"time":0.6333,"angle":4.02},{"time":1,"angle":-12.33}]},"bone3":{"rotate":[{"angle":-12.33},{"time":0.5,"angle":-19.37},{"time":0.6333,"angle":16.85},{"time":1,"angle":-12.33}]},"bone5":{"rotate":[{"angle":-4.7},{"time":0.5,"angle":-27.27},{"time":0.6333,"angle":16.51},{"time":1,"angle":-4.7}]},"bone7":{"rotate":[{"angle":1.48},{"time":0.5,"angle":-26.24},{"time":0.6333,"angle":24.38},{"time":1,"angle":1.48}]},"IK1":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"IK2":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"IK3":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"IK4":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"timo5 008":{"rotate":[{"angle":0.01},{"time":0.5,"angle":-6.93},{"time":0.6333,"angle":1.48},{"time":1,"angle":0.01}],"translate":[{"y":-0.6},{"time":0.5,"x":-23.3,"y":-5.69},{"time":0.6333,"x":20.32,"y":-2.83},{"time":1,"y":-0.6}]},"bone":{"rotate":[{"angle":0.44,"curve":"stepped"},{"time":1,"angle":0.44}]},"timo5 012":{"rotate":[{"angle":-1.63},{"time":0.5,"angle":-14.26},{"time":0.6333,"angle":-6.27},{"time":1,"angle":-1.63}]},"timo5 013":{"rotate":[{"angle":0.47},{"time":0.5,"angle":2.12},{"time":0.6333,"angle":-17.55},{"time":1,"angle":0.47}],"translate":[{"x":-0.24,"y":1.17,"curve":"stepped"},{"time":1,"x":-0.24,"y":1.17}]},"bone10":{"rotate":[{"angle":0.47},{"time":0.5,"angle":15.12},{"time":0.6333,"angle":2.95},{"time":1,"angle":0.47}]},"timo5 016":{"rotate":[{"angle":0.1},{"time":0.5,"angle":35.01},{"time":0.6333,"angle":295.79},{"time":1,"angle":0.1}]},"timo5 017":{"rotate":[{"angle":2.77},{"time":0.6333,"angle":63.26},{"time":1,"angle":2.77}]},"timo5 005":{"rotate":[{"angle":-2.44},{"time":0.5,"angle":110.71},{"time":0.6333,"angle":3.83},{"time":1,"angle":-2.44}]},"timo5 006":{"rotate":[{"angle":-0.03},{"time":0.5,"angle":-56.43},{"time":0.6333,"angle":-34.95},{"time":1,"angle":-0.03}]},"timo5 007":{"rotate":[{"angle":-1.55,"curve":"stepped"},{"time":1,"angle":-1.55}],"translate":[{"x":1.06,"y":-1.43},{"time":0.6,"x":12.73,"y":-23.97},{"time":0.6333,"x":108.87,"y":-22},{"time":1,"x":1.06,"y":-1.43}]},"timo5 014":{"rotate":[{"angle":0.29},{"time":0.6333,"angle":11.66},{"time":1,"angle":0.29}]},"bone11":{"rotate":[{"angle":-2.23},{"time":0.5,"angle":-16.98},{"time":0.6,"angle":20.94},{"time":0.7667,"angle":-8.72},{"time":1,"angle":-2.23}]},"timo5 015":{"rotate":[{"angle":0.95},{"time":0.5,"angle":16.33},{"time":0.6,"angle":-34.94},{"time":0.8333,"angle":5.32},{"time":1,"angle":0.95}]},"bone12":{"rotate":[{"angle":0.95},{"time":0.5,"angle":16.33},{"time":0.6,"angle":-30.28},{"time":0.8333,"angle":7.26},{"time":1,"angle":0.95}]},"bone13":{"rotate":[{"angle":0.95},{"time":0.5,"angle":16.33},{"time":0.6,"angle":-29.98},{"time":0.8333,"angle":7.39},{"time":1,"angle":0.95}]},"timo5 011":{"rotate":[{"angle":0.95},{"time":0.5,"angle":15.19},{"time":0.6,"angle":-25.32},{"time":0.8333,"angle":4.98},{"time":1,"angle":0.95}]},"bone14":{"rotate":[{"angle":0.95},{"time":0.5,"angle":15.19},{"time":0.6,"angle":-17.43},{"time":0.8333,"angle":8.26},{"time":1,"angle":0.95}]},"bone15":{"rotate":[{"angle":0.95},{"time":0.5,"angle":15.19},{"time":0.6,"angle":-12.77},{"time":0.8333,"angle":10.21},{"time":1,"angle":0.95}]}},"events":[{"time":0.6333,"name":"attack"}]},"jifei":{"bones":{"jifei":{"rotate":[{},{"time":0.0667,"angle":59.02},{"time":0.1333,"angle":149.8},{"time":0.2,"angle":-94.21},{"time":0.2667}]}}},"std":{"bones":{"timo5 002":{"rotate":[{"angle":-12.33},{"time":0.5,"angle":-13.35},{"time":1,"angle":-12.33}]},"bone2":{"rotate":[{"angle":-12.33},{"time":0.5,"angle":-37.27},{"time":1,"angle":-12.33}]},"bone3":{"rotate":[{"angle":-12.33},{"time":0.5,"angle":15.14},{"time":1,"angle":-12.33}]},"bone5":{"rotate":[{"angle":-4.7},{"time":0.5,"angle":7},{"time":1,"angle":-4.7}]},"bone7":{"rotate":[{"angle":1.48},{"time":0.5,"angle":9.55},{"time":1,"angle":1.48}]},"IK1":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"IK2":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"IK3":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"IK4":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"timo5 008":{"rotate":[{"angle":0.01},{"time":0.5,"angle":-2.8},{"time":1,"angle":0.01}],"translate":[{"y":-0.6},{"time":0.5,"y":-10.71},{"time":1,"y":-0.6}]},"bone":{"rotate":[{"angle":0.44,"curve":"stepped"},{"time":1,"angle":0.44}]},"timo5 012":{"rotate":[{"angle":-1.63},{"time":0.5,"angle":-8.21},{"time":1,"angle":-1.63}]},"timo5 013":{"rotate":[{"angle":0.47},{"time":0.5,"angle":-1.92},{"time":1,"angle":0.47}],"translate":[{"x":-0.24,"y":1.17,"curve":"stepped"},{"time":1,"x":-0.24,"y":1.17}]},"bone10":{"rotate":[{"angle":0.47},{"time":0.5,"angle":-2.93},{"time":1,"angle":0.47}]},"timo5 016":{"rotate":[{"angle":0.1},{"time":0.5,"angle":4.56},{"time":1,"angle":0.1}]},"timo5 017":{"rotate":[{"angle":2.77},{"time":0.5,"angle":23.81},{"time":1,"angle":2.77}]},"timo5 005":{"rotate":[{"angle":-2.44,"curve":"stepped"},{"time":1,"angle":-2.44}]},"timo5 006":{"rotate":[{"angle":-0.03},{"time":0.5,"angle":-13.84},{"time":1,"angle":-0.03}]},"timo5 007":{"rotate":[{"angle":-1.55},{"time":0.5,"angle":14.7},{"time":1,"angle":-1.55}],"translate":[{"x":1.06,"y":-1.43,"curve":"stepped"},{"time":1,"x":1.06,"y":-1.43}]},"timo5 014":{"rotate":[{"angle":0.29,"curve":"stepped"},{"time":1,"angle":0.29}]},"bone11":{"rotate":[{"angle":-2.23},{"time":0.3333,"angle":19.66},{"time":0.7667,"angle":-10.27},{"time":1,"angle":-2.23}]},"timo5 015":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":10.41},{"time":0.7333,"angle":-14.08},{"time":1,"angle":0.95}]},"bone12":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":10.41},{"time":0.7333,"angle":-14.08},{"time":1,"angle":0.95}]},"bone13":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":10.41},{"time":0.7333,"angle":-14.08},{"time":1,"angle":0.95}]},"timo5 011":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":13.21},{"time":0.7333,"angle":-4.72},{"time":1,"angle":0.95}]},"bone14":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":13.21},{"time":0.7333,"angle":-4.72},{"time":1,"angle":0.95}]},"bone15":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":13.21},{"time":0.7333,"angle":-4.72},{"time":1,"angle":0.95}]}}},"std2":{"bones":{"timo5 002":{"rotate":[{"angle":-12.33},{"time":0.5,"angle":-13.35},{"time":1,"angle":-12.33}]},"bone2":{"rotate":[{"angle":-12.33},{"time":0.5,"angle":-37.27},{"time":1,"angle":-12.33}]},"bone3":{"rotate":[{"angle":-12.33},{"time":0.5,"angle":15.14},{"time":1,"angle":-12.33}]},"bone5":{"rotate":[{"angle":-4.7},{"time":0.5,"angle":7},{"time":1,"angle":-4.7}]},"bone7":{"rotate":[{"angle":1.48},{"time":0.5,"angle":9.55},{"time":1,"angle":1.48}]},"IK1":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"IK2":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"IK3":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"IK4":{"translate":[{"y":-0.6,"curve":"stepped"},{"time":1,"y":-0.6}]},"timo5 008":{"rotate":[{"angle":0.01},{"time":0.5,"angle":-2.8},{"time":1,"angle":0.01}],"translate":[{"y":-0.6},{"time":0.5,"y":-10.71},{"time":1,"y":-0.6}]},"bone":{"rotate":[{"angle":0.44,"curve":"stepped"},{"time":1,"angle":0.44}]},"timo5 012":{"rotate":[{"angle":-1.63},{"time":0.5,"angle":-8.21},{"time":1,"angle":-1.63}]},"timo5 013":{"rotate":[{"angle":0.47},{"time":0.5,"angle":-1.92},{"time":1,"angle":0.47}],"translate":[{"x":-0.24,"y":1.17,"curve":"stepped"},{"time":1,"x":-0.24,"y":1.17}]},"bone10":{"rotate":[{"angle":0.47},{"time":0.5,"angle":-2.93},{"time":1,"angle":0.47}]},"timo5 016":{"rotate":[{"angle":0.1},{"time":0.5,"angle":4.56},{"time":1,"angle":0.1}]},"timo5 017":{"rotate":[{"angle":2.77},{"time":0.5,"angle":23.81},{"time":1,"angle":2.77}]},"timo5 005":{"rotate":[{"angle":-2.44,"curve":"stepped"},{"time":1,"angle":-2.44}]},"timo5 006":{"rotate":[{"angle":-0.03},{"time":0.5,"angle":-13.84},{"time":1,"angle":-0.03}]},"timo5 007":{"rotate":[{"angle":-1.55},{"time":0.5,"angle":14.7},{"time":1,"angle":-1.55}],"translate":[{"x":1.06,"y":-1.43,"curve":"stepped"},{"time":1,"x":1.06,"y":-1.43}]},"timo5 014":{"rotate":[{"angle":0.29,"curve":"stepped"},{"time":1,"angle":0.29}]},"bone11":{"rotate":[{"angle":-2.23},{"time":0.3333,"angle":19.66},{"time":0.7667,"angle":-10.27},{"time":1,"angle":-2.23}]},"timo5 015":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":10.41},{"time":0.7333,"angle":-14.08},{"time":1,"angle":0.95}]},"bone12":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":10.41},{"time":0.7333,"angle":-14.08},{"time":1,"angle":0.95}]},"bone13":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":10.41},{"time":0.7333,"angle":-14.08},{"time":1,"angle":0.95}]},"timo5 011":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":13.21},{"time":0.7333,"angle":-4.72},{"time":1,"angle":0.95}]},"bone14":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":13.21},{"time":0.7333,"angle":-4.72},{"time":1,"angle":0.95}]},"bone15":{"rotate":[{"angle":0.95},{"time":0.2667,"angle":13.21},{"time":0.7333,"angle":-4.72},{"time":1,"angle":0.95}]},"scale":{"scale":[{"x":0.42,"y":0.42,"curve":"stepped"},{"time":1,"x":0.42,"y":0.42}]}}},"walk":{"bones":{"timo5 002":{"rotate":[{"angle":-28.49},{"time":0.2,"angle":-12.31},{"time":0.6333,"angle":4.05},{"time":0.8333,"angle":-28.49}]},"bone2":{"rotate":[{"angle":-37.06},{"time":0.2,"angle":-10.04},{"time":0.6333,"angle":25.22},{"time":0.8333,"angle":-37.06}]},"bone3":{"rotate":[{"angle":18.35},{"time":0.2,"angle":33.75},{"time":0.8333,"angle":18.35}]},"bone5":{"rotate":[{"angle":-4.7,"curve":"stepped"},{"time":0.8333,"angle":-4.7}]},"bone7":{"rotate":[{"angle":1.48,"curve":"stepped"},{"time":0.8333,"angle":1.48}]},"IK1":{"translate":[{"x":11.2,"y":-10.55},{"time":0.2,"x":-32.36,"y":56.29},{"time":0.4333,"x":-46.86,"y":116.85},{"time":0.6333,"x":-3.36,"y":46.06},{"time":0.8333,"x":11.2,"y":-10.55}]},"IK2":{"translate":[{"x":8.09,"y":-12.41},{"time":0.2,"x":-19.7,"y":48.42},{"time":0.4333,"x":-52.11,"y":91.07},{"time":0.6333,"x":-11.17,"y":34.77},{"time":0.8333,"x":8.09,"y":-12.41}]},"IK3":{"translate":[{"x":-22.39,"y":-13.66},{"time":0.2,"x":40.69,"y":105.75},{"time":0.4333,"x":-13.9,"y":45.19},{"time":0.6333,"x":-13.9,"y":5.1},{"time":0.8333,"x":-22.39,"y":-13.66}]},"IK4":{"translate":[{"x":-27.99,"y":-16.15},{"time":0.2,"x":43.35,"y":112.28},{"time":0.4333,"x":6.68,"y":37.21},{"time":0.6333,"x":6.68,"y":-2.88},{"time":0.8333,"x":-27.99,"y":-16.15}]},"timo5 008":{"rotate":[{"angle":-9.86},{"time":0.2,"angle":29.5},{"time":0.4333,"angle":-28.71},{"time":0.8333,"angle":-9.86}],"translate":[{"y":-23.61},{"time":0.2,"y":25.96},{"time":0.4333,"y":71.17},{"time":0.6333,"y":31.07},{"time":0.8333,"y":-23.61}]},"bone":{"rotate":[{"angle":0.44},{"time":0.2,"angle":9.81},{"time":0.8333,"angle":0.44}]},"timo5 012":{"rotate":[{"angle":-14.12},{"time":0.6333,"angle":-4.03},{"time":0.8333,"angle":-14.12}]},"timo5 013":{"rotate":[{"angle":0.47},{"time":0.2,"angle":-14.87},{"time":0.4333,"angle":-3.17},{"time":0.6333,"angle":-10.57},{"time":0.8333,"angle":0.47}],"translate":[{"x":-0.24,"y":1.17,"curve":"stepped"},{"time":0.8333,"x":-0.24,"y":1.17}]},"bone10":{"rotate":[{"angle":0.47},{"time":0.4333,"angle":13.8},{"time":0.6333,"angle":18.43},{"time":0.8333,"angle":0.47}]},"timo5 016":{"rotate":[{"angle":8.99,"curve":"stepped"},{"time":0.8333,"angle":8.99}]},"timo5 017":{"rotate":[{"angle":21.19},{"time":0.2,"angle":37.59},{"time":0.8333,"angle":21.19}]},"timo5 005":{"rotate":[{"angle":-18.01,"curve":"stepped"},{"time":0.8333,"angle":-18.01}]},"timo5 006":{"rotate":[{"angle":9.68,"curve":"stepped"},{"time":0.8333,"angle":9.68}]},"timo5 007":{"rotate":[{"angle":-1.55,"curve":"stepped"},{"time":0.8333,"angle":-1.55}],"translate":[{"x":1.06,"y":-1.43,"curve":"stepped"},{"time":0.8333,"x":1.06,"y":-1.43}]},"timo5 014":{"rotate":[{"angle":-4.67},{"time":0.2,"angle":-5.99},{"time":0.4333,"angle":3},{"time":0.6333,"angle":8.58},{"time":0.8333,"angle":-4.67}]},"bone11":{"rotate":[{"angle":19.48},{"time":0.2,"angle":44.72},{"time":0.4333,"angle":11.47},{"time":0.6333,"angle":22.96},{"time":0.8333,"angle":19.48}]},"timo5 015":{"rotate":[{"angle":-12.74},{"time":0.2,"angle":14.43},{"time":0.6333,"angle":-16.86},{"time":0.8333,"angle":-12.74}]},"bone12":{"rotate":[{"angle":-12.74},{"time":0.2,"angle":14.43},{"time":0.6333,"angle":-16.86},{"time":0.8333,"angle":-12.74}]},"bone13":{"rotate":[{"angle":-12.74},{"time":0.2,"angle":14.43},{"time":0.6333,"angle":-16.86},{"time":0.8333,"angle":-12.74}]},"timo5 011":{"rotate":[{"angle":-7.61},{"time":0.2,"angle":14.15},{"time":0.6333,"angle":-8.41},{"time":0.8333,"angle":-7.61}]},"bone14":{"rotate":[{"angle":-7.61},{"time":0.2,"angle":14.15},{"time":0.6333,"angle":-8.41},{"time":0.8333,"angle":-7.61}]},"bone15":{"rotate":[{"angle":-7.61},{"time":0.2,"angle":14.15},{"time":0.6333,"angle":-8.41},{"time":0.8333,"angle":-7.61}]}}}}} \ No newline at end of file diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.json.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.json.meta new file mode 100644 index 00000000..bc7e7b23 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.json.meta @@ -0,0 +1,11 @@ +{ + "ver": "1.2.6", + "importer": "spine-data", + "imported": true, + "uuid": "51104c05-e5db-4274-a66e-1de9ab511e4f", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.png new file mode 100644 index 00000000..23526836 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.png.meta new file mode 100644 index 00000000..02cbf463 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "179a2053-b80c-4b5d-ab83-e75934fd66d2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "179a2053-b80c-4b5d-ab83-e75934fd66d2@6c48a", + "displayName": "guaiA4e", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "179a2053-b80c-4b5d-ab83-e75934fd66d2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "179a2053-b80c-4b5d-ab83-e75934fd66d2@f9941", + "displayName": "guaiA4e", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -0.5, + "trimX": 2, + "trimY": 3, + "width": 161, + "height": 811, + "rawWidth": 165, + "rawHeight": 816, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -80.5, + -405.5, + 0, + 80.5, + -405.5, + 0, + -80.5, + 405.5, + 0, + 80.5, + 405.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 813, + 163, + 813, + 2, + 2, + 163, + 2 + ], + "nuv": [ + 0.012121212121212121, + 0.0024509803921568627, + 0.9878787878787879, + 0.0024509803921568627, + 0.012121212121212121, + 0.9963235294117647, + 0.9878787878787879, + 0.9963235294117647 + ], + "minPos": [ + -80.5, + -405.5, + 0 + ], + "maxPos": [ + 80.5, + 405.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "179a2053-b80c-4b5d-ab83-e75934fd66d2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "179a2053-b80c-4b5d-ab83-e75934fd66d2@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2.meta new file mode 100644 index 00000000..112c5bdf --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "f1e5199d-dfa8-41d2-9940-d716d3d16ef5", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.atlas b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.atlas new file mode 100644 index 00000000..059de351 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.atlas @@ -0,0 +1,174 @@ + +guaiA4es.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +guaiA4es/01 + rotate: false + xy: 806, 918 + size: 100, 97 + orig: 100, 97 + offset: 0, 0 + index: -1 +guaiA4es/02 + rotate: false + xy: 118, 84 + size: 100, 97 + orig: 100, 97 + offset: 0, 0 + index: -1 +guaiA4es/03 + rotate: false + xy: 322, 229 + size: 100, 97 + orig: 100, 97 + offset: 0, 0 + index: -1 +guaiA4es/04 + rotate: false + xy: 2, 739 + size: 318, 276 + orig: 318, 276 + offset: 0, 0 + index: -1 +guaiA4es/05 + rotate: false + xy: 2, 461 + size: 318, 276 + orig: 318, 276 + offset: 0, 0 + index: -1 +guaiA4es/06 + rotate: false + xy: 322, 739 + size: 318, 276 + orig: 318, 276 + offset: 0, 0 + index: -1 +guaiA4es/07 + rotate: false + xy: 2, 183 + size: 318, 276 + orig: 318, 276 + offset: 0, 0 + index: -1 +guaiA4es/08 + rotate: false + xy: 322, 461 + size: 318, 276 + orig: 318, 276 + offset: 0, 0 + index: -1 +guaiA4es/timo5 002 + rotate: false + xy: 750, 768 + size: 52, 97 + orig: 52, 97 + offset: 0, 0 + index: -1 +guaiA4es/timo5 003 + rotate: false + xy: 642, 548 + size: 58, 88 + orig: 58, 88 + offset: 0, 0 + index: -1 +guaiA4es/timo5 004 + rotate: false + xy: 437, 363 + size: 77, 96 + orig: 77, 96 + offset: 0, 0 + index: -1 +guaiA4es/timo5 005 + rotate: false + xy: 806, 854 + size: 62, 62 + orig: 62, 62 + offset: 0, 0 + index: -1 +guaiA4es/timo5 006 + rotate: false + xy: 2, 2 + size: 44, 30 + orig: 44, 30 + offset: 0, 0 + index: -1 +guaiA4es/timo5 007 + rotate: false + xy: 322, 328 + size: 113, 131 + orig: 113, 131 + offset: 0, 0 + index: -1 +guaiA4es/timo5 008 + rotate: false + xy: 642, 867 + size: 162, 148 + orig: 162, 148 + offset: 0, 0 + index: -1 +guaiA4es/timo5 009 + rotate: false + xy: 642, 458 + size: 58, 88 + orig: 58, 88 + offset: 0, 0 + index: -1 +guaiA4es/timo5 010 + rotate: false + xy: 642, 638 + size: 77, 96 + orig: 77, 96 + offset: 0, 0 + index: -1 +guaiA4es/timo5 011 + rotate: false + xy: 220, 98 + size: 74, 83 + orig: 74, 83 + offset: 0, 0 + index: -1 +guaiA4es/timo5 012 + rotate: false + xy: 2, 34 + size: 114, 147 + orig: 114, 147 + offset: 0, 0 + index: -1 +guaiA4es/timo5 013 + rotate: false + xy: 908, 930 + size: 84, 85 + orig: 84, 85 + offset: 0, 0 + index: -1 +guaiA4es/timo5 014 + rotate: false + xy: 642, 736 + size: 106, 129 + orig: 106, 129 + offset: 0, 0 + index: -1 +guaiA4es/timo5 015 + rotate: false + xy: 516, 396 + size: 88, 63 + orig: 88, 63 + offset: 0, 0 + index: -1 +guaiA4es/timo5 016 + rotate: false + xy: 804, 790 + size: 62, 62 + orig: 62, 62 + offset: 0, 0 + index: -1 +guaiA4es/timo5 017 + rotate: false + xy: 118, 51 + size: 43, 31 + orig: 43, 31 + offset: 0, 0 + index: -1 diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.atlas.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.atlas.meta new file mode 100644 index 00000000..f95db746 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.1", + "importer": "*", + "imported": true, + "uuid": "fe006121-94b6-4567-befa-d5d7c12fb3aa", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.json b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.json new file mode 100644 index 00000000..ed8e32dd --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"7qPdQsHO/JKTw3doo3KhhRj26gE","spine":"3.5.51","width":270.62,"height":314.27,"images":"./pic/"},"bones":[{"name":"root"},{"name":"scale","parent":"root","x":-0.23,"y":0.3},{"name":"jifei","parent":"scale","x":1.4,"y":109.51},{"name":"IK1","parent":"jifei","x":-50.81,"y":-93.29,"color":"ff3f00ff"},{"name":"IK2","parent":"jifei","x":-30.48,"y":-93.29,"color":"ff3f00ff"},{"name":"IK3","parent":"jifei","x":29.58,"y":-110.85,"color":"ff3f00ff"},{"name":"IK4","parent":"jifei","x":39.74,"y":-109.46,"color":"ff3f00ff"},{"name":"timo5 008","parent":"jifei","length":51.06,"rotation":-11.58,"x":-54.21,"y":-29.67},{"name":"bone","parent":"timo5 008","length":43.08,"rotation":20.9,"x":51.06},{"name":"timo5 002","parent":"timo5 008","length":24.44,"rotation":154.43,"x":-0.92,"y":-1.28},{"name":"bone2","parent":"timo5 002","length":29.44,"rotation":-14.65,"x":24.44},{"name":"bone3","parent":"bone2","length":28.1,"rotation":52.71,"x":29.44},{"name":"timo5 010","parent":"timo5 008","length":37.71,"rotation":-31.66,"x":1.71,"y":-4.25},{"name":"bone4","parent":"timo5 010","length":33.55,"rotation":-94.77,"x":37.71},{"name":"bone5","parent":"bone4","length":26.25,"rotation":67.68,"x":33.04,"y":0.64},{"name":"timo5 004","parent":"timo5 008","length":36.02,"rotation":-29.73,"x":15.6,"y":-0.57},{"name":"bone6","parent":"timo5 004","length":35.82,"rotation":-82.02,"x":36.02},{"name":"bone7","parent":"bone6","length":20.7,"rotation":41.3,"x":35.82},{"name":"timo5 009","parent":"bone","length":39.5,"rotation":-107.77,"x":27.13,"y":-4.33},{"name":"bone8","parent":"timo5 009","length":37.05,"rotation":34.42,"x":39.5},{"name":"timo5 003","parent":"bone","length":38.91,"rotation":-106.08,"x":38.26,"y":-4.69},{"name":"bone9","parent":"timo5 003","length":36.49,"rotation":35.3,"x":38.91},{"name":"timo5 013","parent":"timo5 008","length":31.76,"rotation":112.75,"x":45.24,"y":5.92},{"name":"bone10","parent":"timo5 013","length":32.8,"rotation":-15.37,"x":31.76},{"name":"timo5 014","parent":"bone10","length":63.63,"rotation":-3.67,"x":38.13,"y":-0.48},{"name":"bone11","parent":"timo5 014","length":41.76,"rotation":-11.38,"x":70.79,"y":-3.33},{"name":"timo5 015","parent":"timo5 014","length":28.44,"rotation":68.24,"x":45.54,"y":32.32},{"name":"bone12","parent":"timo5 015","length":33.33,"rotation":3.05,"x":28.44},{"name":"bone13","parent":"bone12","length":27.31,"rotation":-3.91,"x":33.33},{"name":"timo5 011","parent":"timo5 014","length":26.4,"rotation":49.84,"x":40.22,"y":8.23},{"name":"bone14","parent":"timo5 011","length":34.29,"rotation":-5.7,"x":26.4},{"name":"bone15","parent":"bone14","length":28.55,"rotation":-6.06,"x":34.29},{"name":"timo5 005","parent":"bone10","length":45.87,"rotation":-87.68,"x":30.27,"y":-6.12},{"name":"timo5 006","parent":"timo5 005","length":30.24,"rotation":56.91,"x":43.58,"y":-0.7},{"name":"timo5 007","parent":"timo5 006","rotation":-90.1,"x":63.67,"y":40.09},{"name":"texiao1","parent":"timo5 007","x":7.51,"y":15.41},{"name":"texiao2","parent":"scale","x":42.07,"y":-27.82},{"name":"timo5 012","parent":"bone","length":60.86,"rotation":27.2,"x":44.18,"y":-0.99},{"name":"timo5 016","parent":"bone10","length":47.14,"rotation":-140.66,"x":25.22,"y":16.5},{"name":"timo5 017","parent":"timo5 016","length":30.07,"rotation":38.94,"x":45.04,"y":0.69}],"slots":[{"name":"timo5 002","bone":"timo5 002","attachment":"guaiA4es/timo5 002"},{"name":"timo5 003","bone":"timo5 003","attachment":"guaiA4es/timo5 003"},{"name":"timo5 004","bone":"timo5 004","attachment":"guaiA4es/timo5 004"},{"name":"timo5 005","bone":"timo5 005","attachment":"guaiA4es/timo5 005"},{"name":"timo5 006","bone":"timo5 006","attachment":"guaiA4es/timo5 006"},{"name":"timo5 007","bone":"timo5 007","attachment":"guaiA4es/timo5 007"},{"name":"timo5 008","bone":"timo5 008","attachment":"guaiA4es/timo5 008"},{"name":"timo5 009","bone":"timo5 009","attachment":"guaiA4es/timo5 009"},{"name":"timo5 010","bone":"timo5 010","attachment":"guaiA4es/timo5 010"},{"name":"timo5 011","bone":"timo5 011","attachment":"guaiA4es/timo5 011"},{"name":"timo5 012","bone":"timo5 012","attachment":"guaiA4es/timo5 012"},{"name":"timo5 013","bone":"timo5 013","attachment":"guaiA4es/timo5 013"},{"name":"timo5 014","bone":"timo5 014","attachment":"guaiA4es/timo5 014"},{"name":"timo5 015","bone":"timo5 015","attachment":"guaiA4es/timo5 015"},{"name":"timo5 016","bone":"timo5 016","attachment":"guaiA4es/timo5 016"},{"name":"timo5 017","bone":"timo5 017","attachment":"guaiA4es/timo5 017"},{"name":"atkbox","bone":"timo5 006","attachment":"atkbox"},{"name":"guaiA4es/01","bone":"texiao1"},{"name":"guaiA4es/04","bone":"texiao2"}],"ik":[{"name":"IK1","order":0,"bones":["timo5 010","bone4"],"target":"IK1","bendPositive":false},{"name":"IK2","order":1,"bones":["timo5 004","bone6"],"target":"IK2","bendPositive":false},{"name":"IK3","order":2,"bones":["timo5 009","bone8"],"target":"IK3"},{"name":"IK4","order":3,"bones":["timo5 003","bone9"],"target":"IK4"}],"skins":{"default":{"atkbox":{"atkbox":{"type":"boundingbox","vertexCount":4,"vertices":[65.1,31.69,27.77,6.71,52.41,-26.91,87.54,-1.21]}},"guaiA4es/01":{"guaiA4es/01":{"scaleX":2.527,"scaleY":2.527,"rotation":46.04,"width":100,"height":97},"guaiA4es/02":{"scaleX":2.527,"scaleY":2.527,"rotation":46.04,"width":100,"height":97},"guaiA4es/03":{"scaleX":2.527,"scaleY":2.527,"rotation":46.04,"width":100,"height":97}},"guaiA4es/04":{"guaiA4es/04":{"y":144.33,"width":318,"height":276},"guaiA4es/05":{"y":144.33,"width":318,"height":276},"guaiA4es/06":{"y":144.33,"width":318,"height":276},"guaiA4es/07":{"y":144.33,"width":318,"height":276},"guaiA4es/08":{"y":144.33,"width":318,"height":276}},"timo5 002":{"guaiA4es/timo5 002":{"type":"mesh","uvs":[0.09465,0.00554,0.1358,0.22065,0,0.51848,0,0.68946,0.06378,0.90456,0.35186,1,0.81484,1,1,0.85492,0.88686,0.69498,1,0.50193,1,0.24271,0.88686,0.0607,0.54734,0,0.61936,0.38059,0.4959,0.67843,0.53705,0.524,0.4033,0.30889,0.81484,0.44126,0.25926,0.52951,0.70167,0.5957,0.44446,0.83286,0.74282,0.78874],"triangles":[18,1,16,10,17,11,16,12,13,13,12,11,16,1,12,1,0,12,19,17,8,8,17,9,3,2,18,14,15,19,14,18,15,15,13,19,19,13,17,2,1,18,18,16,15,15,16,13,17,10,9,17,13,11,5,20,6,20,21,6,7,21,8,7,6,21,5,4,20,20,4,18,4,3,18,20,14,21,20,18,14,14,19,21,21,19,8],"vertices":[1,11,43.91,11.27,1,2,10,38.43,28.23,0.10769,11,23.89,17.52,0.89231,3,9,48.19,18.27,0.08108,10,8.69,28.67,0.77388,11,0.11,35.39,0.14505,3,9,32.89,24.66,0.47816,10,-7.48,24.98,0.50674,11,-15.13,41.92,0.01509,2,9,12.36,29.65,0.94026,10,-27.08,17.09,0.05974,2,9,-1.96,19.41,1,10,-32.76,0.43,0,1,9,-11.25,-2.81,1,2,9,-1.98,-17.12,0.98729,10,-11.54,-29.29,0.01271,2,9,14.6,-17.68,0.61784,10,2.28,-20.1,0.38216,3,9,29.61,-30.33,0.04048,10,21.84,-21.66,0.89882,11,-18.9,-13.04,0.0607,2,10,46.36,-16.06,0.13392,11,4.22,-22.94,0.86608,2,10,62.26,-6.39,2.0E-5,11,22.76,-24.49,0.99998,1,11,35.13,-10.58,1,2,10,28.91,0.26,0.70984,11,-0.28,0.52,0.29016,3,9,23.93,0.46,0.76041,10,-0.69,0.08,0.23958,11,-24.31,17.8,0,2,10,14.39,1.33,0.99706,11,-11.38,9.93,0.00294,2,10,33.18,12.76,0.16355,11,10.54,8.11,0.83645,3,9,38.75,-23.71,0.0069,10,25.44,-10.97,0.87093,11,-9.69,-6.5,0.12217,3,9,42,6.24,0.04045,10,10.65,15.29,0.85424,11,-6.18,23.42,0.10531,2,9,27.2,-12.51,0.15096,10,9.52,-8.57,0.84904,2,9,11.14,8.71,0.99728,10,-15.89,-0.65,0.00272,2,9,9.1,-7.26,0.94826,10,-8.26,-14.82,0.05174],"hull":13,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,0,24],"width":52,"height":97}},"timo5 003":{"guaiA4es/timo5 003":{"type":"mesh","uvs":[0.18855,0,0,0.05771,0,0.29952,0.1309,0.48952,0.20427,0.68298,0.34055,0.86952,0.55021,1,0.72317,1,1,1,0.93807,0.76243,1,0.57589,1,0.32025,0.93807,0.08534,0.69172,0,0.39821,0,0.4483,0.5787,0.51819,0.34118,0.57937,0.75659,0.73926,0.48912],"triangles":[2,1,0,16,14,13,18,13,12,18,12,11,16,13,18,16,3,2,18,11,10,14,16,0,15,16,18,2,0,16,15,4,16,4,3,16,17,15,18,9,18,10,17,18,9,5,4,15,5,15,17,6,5,17,7,17,9,6,17,7,7,9,8],"vertices":[1,20,-10.08,-21.85,1,1,20,-3.55,-31.99,1,1,20,17.53,-29.08,1,2,21,-15.91,-12.34,0.07043,20,33.05,-19.27,0.92957,2,21,1.16,-16.4,0.79997,20,49.33,-12.72,0.20003,1,21,19.37,-16.95,1,1,21,35.16,-11.45,1,1,21,39.79,-2.54,1,1,21,47.18,11.71,1,2,21,26.97,18.15,0.91082,20,50.43,30.4,0.08918,2,21,14.06,28.9,0.50738,20,33.68,31.71,0.49262,2,21,-5.91,39.26,0.07254,20,11.39,28.63,0.92746,2,21,-25.91,45.6,2.9E-4,20,-8.59,22.24,0.99971,1,20,-14.07,7.05,1,1,20,-11.74,-9.81,1,2,21,-0.47,0.38,0.23318,20,38.3,0.04,0.76682,2,21,-17.15,13.61,5.9E-4,20,17.05,1.2,0.99941,1,21,16.93,-0.08,1,2,21,0.31,18.99,0.24853,20,28.18,15.68,0.75147],"hull":15,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28],"width":58,"height":88}},"timo5 004":{"guaiA4es/timo5 004":{"type":"mesh","uvs":[0.00959,0,0,0.17092,0,0.44325,0.12408,0.63642,0.10829,0.73142,0.20699,0.88025,0.47151,1,0.62154,1,0.7992,1,0.85053,0.82959,1,0.71242,1,0.43375,0.92949,0.18359,0.65312,0.01259,0.33333,0,0.72814,0.41792,0.61759,0.55409,0.58206,0.30709,0.47546,0.72509,0.49915,0.84859],"triangles":[17,3,2,17,2,14,0,14,1,14,2,1,15,12,11,15,17,12,17,13,12,17,14,13,18,16,9,9,16,10,4,3,18,18,3,16,16,15,10,15,11,10,3,17,16,16,17,15,8,7,9,6,19,7,7,19,9,6,5,19,5,18,19,5,4,18,19,18,9],"vertices":[2,16,-3.14,-68.05,0.00523,15,-31.81,-6.34,0.99477,2,16,10.97,-59.66,0.06266,15,-21.53,-19.15,0.93734,3,17,-32.15,-32.05,0.02746,16,32.82,-45.29,0.35435,15,-4.27,-38.79,0.61819,3,17,-12.46,-25.16,0.30286,16,43.06,-27.12,0.48005,15,15.15,-46.41,0.21709,3,17,-3.59,-27.62,0.56934,16,51.35,-23.13,0.34017,15,20.25,-54.06,0.09049,3,17,11.61,-22.08,0.91807,16,59.11,-8.93,0.07067,15,35.39,-59.78,0.01126,1,17,25.82,-3.5,1,2,17,27.42,7.94,0.9586,16,51.18,24.06,0.0414,2,17,29.32,21.49,0.85655,16,43.67,35.49,0.14345,2,17,13.66,27.67,0.48628,16,27.83,29.81,0.51372,3,17,4.12,40.63,0.1535,16,12.1,33.24,0.8465,15,70.62,-7.37,0,3,17,-22.37,44.34,0.00469,16,-10.25,18.54,0.69736,15,52.97,12.72,0.29795,2,16,-27.33,0.81,0.02542,15,33.03,27.18,0.97458,1,15,6.21,25.46,1,1,15,-13.08,10.12,1,3,17,-26.78,23.82,1.0E-5,16,-0.02,0.22,0.54415,15,36.24,0.05,0.45584,2,17,-15.02,13.57,2.7E-4,16,15.58,0.29,0.99973,1,15,20.76,0.62,1,2,17,-0.28,0.46,0.30949,16,35.31,0.16,0.69051,2,17,11.72,0.62,0.99682,16,44.21,8.2,0.00318],"hull":15,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28],"width":77,"height":96}},"timo5 005":{"guaiA4es/timo5 005":{"x":21.26,"y":-1.34,"rotation":47.9,"width":62,"height":62}},"timo5 006":{"guaiA4es/timo5 006":{"x":13.21,"y":3.06,"rotation":12.53,"width":44,"height":30}},"timo5 007":{"guaiA4es/timo5 007":{"x":1.15,"y":8.12,"rotation":12.53,"width":113,"height":131}},"timo5 008":{"guaiA4es/timo5 008":{"type":"mesh","uvs":[0.09737,0.31598,0,0.41017,0,0.56254,0.02398,0.72044,0.13027,0.8645,0.3049,0.93098,0.56052,0.92821,0.74021,0.91159,0.93003,0.79801,1,0.6401,1,0.43233,0.82879,0.31321,0.62126,0.26612,0.36058,0.29105,0.42132,0.54314,0.5428,0.53483,0.28719,0.51821,0.42638,0.73429,0.38842,0.41294],"triangles":[18,13,12,15,18,12,14,18,15,11,10,9,17,14,15,9,15,11,11,15,12,9,8,15,8,7,15,17,15,7,6,17,7,5,17,6,16,0,13,16,13,18,1,0,16,16,18,14,2,1,16,3,2,16,4,3,16,17,4,16,17,16,14,5,4,17],"vertices":[2,7,-7.59,22.72,1,8,-47.49,41.23,0,1,7,-20.24,5.9,1,1,7,-15.71,-16.19,1,2,7,-7.22,-38.31,0.99852,8,-67.8,-16.32,0.00148,2,7,13.93,-55.74,0.94193,8,-53.8,-39.88,0.05807,2,7,43.62,-59.7,0.70784,8,-27.21,-53.66,0.29216,2,7,84.11,-50.98,0.16273,8,13.84,-59.16,0.83727,2,7,112.13,-42.73,0.01367,8,43,-60.88,0.98633,1,8,75.83,-48.63,1,1,8,90.39,-27.12,1,1,8,94.78,3.31,1,1,8,69.84,24.72,1,2,7,74.08,46.99,0.04552,8,37.56,36.42,0.95448,2,7,33.45,34.89,0.73613,8,-4.76,38.8,0.26387,2,7,50.58,0.32,0.61139,8,-0.35,0.46,0.38861,1,8,19.31,-1.13,1,1,7,28.55,-0.43,1,2,7,57.06,-27.23,0.44046,8,-3.57,-27.65,0.55954,2,7,41.49,18.13,0.70901,8,-2.87,20.3,0.29099],"hull":14,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,0,26],"width":162,"height":148}},"timo5 009":{"guaiA4es/timo5 009":{"type":"mesh","uvs":[0.24731,0.00271,0,0.0718,0,0.24798,0.08483,0.4138,0.16869,0.62453,0.27876,0.80762,0.4989,1,0.73476,1,0.98635,1,0.93918,0.77307,0.98635,0.60725,1,0.37234,1,0.1478,0.75573,0,0.47269,0,0.43438,0.55461,0.55548,0.71509,0.50428,0.31709,0.69752,0.51996,0.25111,0.36914,0.75391,0.74182],"triangles":[2,1,0,17,14,13,17,19,0,17,0,14,2,0,19,13,12,11,17,13,11,3,2,19,18,17,11,15,19,17,15,17,18,10,18,11,4,3,19,4,19,15,16,15,18,20,18,10,16,18,20,9,20,10,5,4,15,5,15,16,6,5,16,7,16,20,7,20,9,6,16,7,7,9,8],"vertices":[1,18,-6.87,-19.2,1,1,18,1.5,-32.33,1,1,18,16.79,-29.76,1,2,19,-20.24,-13.38,0.02906,18,30.36,-22.48,0.97094,2,19,-1.37,-16.77,0.66829,18,47.84,-14.61,0.33171,2,19,15.93,-17.75,0.99987,18,62.67,-5.64,1.3E-4,1,19,36.66,-13.28,1,1,19,42.41,-0.87,1,1,19,48.54,12.37,1,2,19,29.28,18.28,0.94604,18,53.31,31.63,0.05396,2,19,17.19,26.9,0.66285,18,38.47,31.91,0.33715,2,19,-1.24,36.31,0.15894,18,17.95,29.25,0.84106,2,19,-19.16,44.62,0.00912,18,-1.53,25.97,0.99088,1,18,-12.01,9.84,1,1,18,-9.28,-6.35,1,2,19,-0.48,-0.2,0.3349,18,39.22,-0.43,0.6651,2,19,15.29,0.24,0.99956,18,51.98,8.84,4.4E-4,2,19,-17.74,12.27,3.0E-5,18,17.93,0.09,0.99997,2,19,3.17,14.93,0.41627,18,33.68,14.11,0.58373,2,19,-19.75,-2.98,0.00399,18,24.89,-13.63,0.99601,2,19,22.26,9.69,0.95432,18,52.38,20.58,0.04568],"hull":15,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28],"width":58,"height":88}},"timo5 010":{"guaiA4es/timo5 010":{"type":"mesh","uvs":[0.1733,0.00787,0,0.02495,0,0.18724,0,0.45204,0.09876,0.60579,0.19993,0.82787,0.32772,1,0.65252,1,0.84954,1,0.86551,0.84068,1,0.67839,1,0.40079,0.87616,0.16162,0.69512,0,0.42356,0,0.70632,0.40475,0.50497,0.28442,0.59182,0.52825,0.4418,0.68342,0.46944,0.80059,0.36679,0.51559,0.68263,0.81959,0.27755,0.24889,0.80767,0.60911,0.12468,0.35004,0.25292,0.70497],"triangles":[2,1,0,22,0,14,2,0,22,16,14,13,16,13,12,22,14,16,24,2,22,15,16,12,15,12,11,3,2,24,20,22,16,24,22,20,17,16,15,20,16,17,4,3,24,4,24,20,23,15,11,17,15,23,23,11,10,18,20,17,25,4,20,21,17,23,5,4,25,9,23,10,25,20,18,21,19,18,21,18,17,21,23,9,25,19,5,19,25,18,6,5,19,7,19,21,6,19,7,8,21,9,7,21,8],"vertices":[2,13,-4.52,-55.51,0.00401,12,-17.98,-0.03,0.99599,2,13,5.07,-64.92,0.01723,12,-26.58,-10.36,0.98277,2,13,17.26,-55.21,0.10852,12,-15.91,-21.71,0.89148,2,13,37.14,-39.37,0.5208,12,1.5,-40.23,0.4792,2,13,43.94,-24.22,0.83065,12,17.15,-45.78,0.16935,3,14,9.28,-21.45,0.32397,13,55.76,-4.84,0.66692,12,37.43,-55.97,0.0091,2,14,27.74,-16.05,0.91256,13,62.55,13.15,0.08744,2,14,33.99,8.16,0.98314,13,46.97,32.71,0.01686,2,14,37.78,22.85,0.9303,13,37.51,44.57,0.0697,2,14,23.28,27.87,0.72385,13,24.78,36,0.27615,3,14,10.78,41.79,0.31475,13,6.15,34.39,0.6824,12,72.49,-3.32,0.00285,3,14,-15.02,48.45,0.03142,13,-14.7,17.78,0.55151,12,54.23,16.1,0.41707,2,13,-26.71,-3.98,0.00782,12,31.55,26.29,0.99218,1,12,10.77,28.05,1,1,12,-4.46,13.72,1,3,14,-20.3,26.45,2.8E-4,13,-0.3,0.34,0.47589,12,38.02,0.33,0.52382,2,13,0.32,-18.99,0.01685,12,18.81,-1.87,0.98315,2,14,-11.03,14.96,0.00382,13,14.46,0.83,0.99618,1,14,0.51,0.05,1,2,14,11.93,-0.7,0.99171,13,40.78,9.75,0.00829,2,13,24.31,-13.48,0.78908,12,26.26,-25.33,0.21092,2,14,17.8,14.74,0.85073,13,31.98,23.73,0.14927,2,13,13.67,-33.21,0.08202,12,3.48,-10.86,0.91798,3,14,6.27,28.71,0.17265,13,8.87,17.34,0.82585,12,54.25,-10.28,0.0015,2,13,27.57,-35.49,0.30697,12,0.05,-24.52,0.69303,3,14,-3.69,-13.58,0.45877,13,44.2,-7.93,0.48359,12,26.13,-43.39,0.05764],"hull":15,"edges":[0,2,2,4,4,6,6,8,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28,8,10],"width":77,"height":96}},"timo5 011":{"guaiA4es/timo5 011":{"type":"mesh","uvs":[1,0.85557,1,0.64591,0.85739,0.44714,0.59474,0.22931,0.39735,0.04801,0.13165,0,0,0.07796,0,0.29852,0.03697,0.54358,0.17135,0.81042,0.48897,0.94112,0.72719,1,0.95014,1,0.61924,0.66438,0.31644,0.37338,0.45014,0.54517],"triangles":[7,5,14,14,5,4,7,6,5,9,15,10,10,15,13,15,8,14,15,9,8,13,15,2,15,3,2,15,14,3,8,7,14,14,4,3,12,11,0,0,11,13,11,10,13,13,1,0,13,2,1],"vertices":[1,29,-4.67,-8.39,1,2,29,7.22,-21.1,0.93172,30,-16.96,-22.92,0.06828,3,29,26.2,-25.93,0.44663,30,2.41,-25.82,0.55336,31,-28.97,-29.04,1.0E-5,3,29,52.75,-25.84,0.00691,30,28.81,-23.06,0.71184,31,-3.01,-23.51,0.28125,2,30,49.75,-21.96,0.08306,31,17.7,-20.2,0.91694,1,31,32.25,-6.4,1,1,31,32.55,5.3,1,2,30,53.43,13.87,0.04835,31,17.57,15.81,0.95165,3,29,65.05,21.41,4.0E-5,30,36.31,25.18,0.64277,31,-0.65,25.26,0.35719,3,29,42.65,30.78,0.09004,30,13.08,32.26,0.89918,31,-24.49,29.84,0.01078,2,29,18.08,22.64,0.72127,30,-10.55,21.69,0.27873,2,29,1.87,14.16,0.99765,30,-25.82,11.62,0.00235,1,29,-10.17,2.88,1,2,29,26.74,-0.72,0.34213,30,0.42,-0.68,0.65787,2,30,33.35,0.31,0.95226,31,-0.97,0.21,0.04774,1,30,16.1,2.24,1],"hull":13,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,0],"width":74,"height":83}},"timo5 012":{"guaiA4es/timo5 012":{"x":47.66,"y":4.11,"rotation":-35.4,"width":114,"height":147}},"timo5 013":{"guaiA4es/timo5 013":{"type":"mesh","uvs":[0.12355,0,0,0.0324,0,0.18226,0.04543,0.33666,0.07759,0.55009,0,0.64092,0.08219,0.87706,0.32574,1,0.62443,1,0.91852,0.96334,1,0.74537,1,0.47744,1,0.12322,0.77147,0,0.44062,0,0.51414,0.55464,0.52333,0.37299,0.56009,0.75899,0.32574,0.54101,0.75309,0.52285,0.266,0.34574,0.77147,0.36391],"triangles":[2,1,0,20,3,2,20,0,14,20,2,0,13,16,14,21,13,12,16,20,14,13,21,16,21,12,11,19,16,21,19,21,11,18,20,16,4,3,20,4,20,18,15,18,16,15,16,19,19,11,10,17,15,19,17,19,10,6,4,18,5,4,6,9,17,10,17,7,18,17,18,15,6,18,7,8,17,9,7,17,8],"vertices":[1,23,48.08,33.03,1,2,22,84.34,34.48,1.9E-4,23,45.46,43.44,0.99981,2,22,71.85,36.94,0.01414,23,32.72,43.6,0.98586,2,22,58.23,35.74,0.09377,23,19.55,39.95,0.90623,2,22,39.91,36.6,0.46903,23,1.38,37.47,0.53097,2,22,33.6,44.49,0.6473,23,-6.26,44.09,0.3527,2,22,12.57,41.6,0.86033,23,-26.42,37.43,0.13967,2,22,-1.64,23.56,0.98934,23,-37.12,17.11,0.01066,1,22,-6.5,-1.06,1,2,22,-8.23,-25.9,0.98356,23,-34.63,-32.72,0.01644,2,22,8.62,-36.2,0.84401,23,-16.19,-39.8,0.15599,2,22,30.97,-40.61,0.40558,23,6.58,-40.08,0.59442,2,22,60.5,-46.44,0.04077,23,36.69,-40.46,0.95923,2,22,74.5,-29.64,0.00126,23,47.4,-21.39,0.99874,1,23,47.75,6.4,1,2,22,32.43,0.7,0.29784,23,0.53,0.81,0.70216,2,22,47.43,-3.05,5.0E-5,23,15.96,-0.16,0.99995,1,22,14.64,0.28,1,2,22,36.63,16,0.38641,23,1.89,16.62,0.61359,2,22,31.19,-19.52,0.45702,23,2.98,-19.29,0.54298,2,22,53.89,17.71,0.07101,23,18.55,21.43,0.92899,2,22,44.15,-23.65,0.14351,23,16.47,-21.01,0.85649],"hull":15,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28],"width":84,"height":85}},"timo5 014":{"guaiA4es/timo5 014":{"type":"mesh","uvs":[0.00168,0.8872,0.27896,1,0.78409,1,0.99547,0.83306,0.8637,0.58492,0.9241,0.4586,1,0.36385,1,0.19467,0.90488,0.05255,0.78683,0,0.58643,0,0.42995,0.05932,0.34759,0.19241,0.14444,0.31423,0,0.51274,0.56172,0.43153,0.63584,0.2849,0.68251,0.15406,0.44642,0.22174,0.76762,0.31874,0.62761,0.10444,0.8088,0.10895,0.32837,0.35483,0.80605,0.44055],"triangles":[23,15,16,23,16,19,4,23,5,6,5,19,5,23,19,15,18,16,6,19,7,19,21,7,22,12,18,21,8,7,16,17,19,19,17,21,18,20,16,16,20,17,12,11,18,20,11,10,20,18,11,21,17,9,17,20,9,21,9,8,20,10,9,2,15,4,1,15,2,2,4,3,1,22,15,22,1,14,22,14,13,14,1,0,22,13,12,22,18,15,15,23,4],"vertices":[1,24,8.35,53.33,1,1,24,-4.67,23.23,1,2,24,-1.91,-30.25,0.9998,25,-62.02,-46.51,2.0E-4,1,24,20.75,-51.51,1,1,24,52,-35.92,1,2,24,68.6,-41.47,0.15205,25,8.77,-37.18,0.84795,2,24,81.23,-48.87,0.02414,25,22.98,-40.69,0.97586,1,25,43.55,-33.4,1,1,25,57.47,-17.78,1,1,25,59.68,-3.72,1,1,25,52.59,16.31,1,1,25,39.84,29.39,1,2,24,99.75,21.33,0.24,25,20.74,31.88,0.76,1,24,82.94,42.02,1,1,24,56.58,56,1,1,24,70.11,-2.93,1,1,25,19.69,-0.9,1,1,25,37.26,0.07,1,2,24,96.51,10.67,0.04,25,20.67,20.75,0.96,1,25,20.24,-15.53,1,2,24,112.61,-7.73,9.0E-5,25,41.35,7.69,0.99991,1,25,47.21,-10.61,1,1,24,78.72,22.28,1,1,25,6.79,-24.61,1],"hull":15,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,0,28],"width":106,"height":129}},"timo5 015":{"guaiA4es/timo5 015":{"type":"mesh","uvs":[0.0041,0,0.28553,0,0.58542,0.12615,0.82532,0.28726,1,0.56437,1,0.93171,0.83916,1,0.52544,1,0.23017,0.89304,0.05946,0.66104,0,0.33882,0.67439,0.66087,0.79712,0.73706,0.54485,0.55611,0.33008,0.37992,0.20394,0.23706,0.41189,0.71325,0.57553,0.3323,0.20735,0.52754,0.4869,0.24658,0.79366,0.48956,0.58885,0.83714],"triangles":[15,0,1,19,15,1,10,0,15,14,15,19,18,15,14,10,15,18,9,10,18,2,19,1,17,19,2,17,2,3,20,17,3,17,14,19,13,17,20,13,14,17,13,18,14,16,18,13,11,16,13,16,9,18,8,9,16,7,16,21,8,16,7,20,3,4,11,13,20,12,20,4,11,20,12,21,11,12,21,16,11,12,4,5,6,12,5,21,12,6,7,21,6],"vertices":[1,28,37.96,-2.02,1,2,27,50.05,-17.7,0.04656,28,17.89,-16.52,0.95344,3,26,48.57,-27.66,0.04117,27,23.45,-24.91,0.81599,28,-8.16,-25.53,0.14284,3,26,25.15,-27.27,0.50821,27,0.17,-27.47,0.49177,28,-31.22,-29.66,2.0E-5,2,26,3.89,-17.84,0.9746,27,-22.11,-20.78,0.0254,1,26,-5.79,3.18,1,2,26,5.27,13.01,0.99843,27,-24.61,10,0.00157,3,26,30.35,24.55,0.35353,27,-1.18,24.6,0.64422,28,-36.11,22.19,0.00224,3,26,56.77,29.3,0.004,27,24.43,32.62,0.77312,28,-11.1,31.94,0.22289,2,27,44.91,28.16,0.32329,28,9.63,28.89,0.67671,2,27,60.09,13.7,0.01486,28,25.76,15.5,0.98514,2,26,27.38,-0.33,0.95654,27,-1.01,-0.46,0.04346,2,26,15.56,-0.49,0.99987,27,-12.71,-2.1,1.3E-4,2,26,40.49,-1.56,1.0E-5,27,12.16,-0.04,0.99999,2,27,34.07,0.54,0.21535,28,0.7,0.59,0.78465,1,28,14.96,-0.21,1,3,26,46.98,12.32,0.01932,27,16.85,14.55,0.93771,28,-17.44,13.4,0.04296,3,26,43.93,-15.5,0.05085,27,17.32,-13.43,0.91392,28,-15.06,-14.49,0.03523,2,27,38.31,14.14,0.33193,28,4.01,14.45,0.66807,3,26,53.28,-17.14,0.00714,27,26.8,-13.89,0.77816,28,-5.57,-14.3,0.2147,3,26,26.76,-13.29,0.77435,27,-9.86,-9.07,0.22565,28,-42.48,-11.99,1.0E-5,3,26,22.28,10.52,0.61449,27,3.16,11.77,0.3829,28,-30.91,9.69,0.00261],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":88,"height":63}},"timo5 016":{"guaiA4es/timo5 016":{"x":24.98,"y":-0.35,"rotation":49.94,"width":62,"height":62}},"timo5 017":{"guaiA4es/timo5 017":{"x":13.09,"y":-0.32,"rotation":11,"width":43,"height":31}}}},"animations":{"skill":{"slots":{"guaiA4es/01":{"attachment":[{"time":0.4333,"name":"guaiA4es/01"},{"time":0.5333,"name":"guaiA4es/02"},{"time":0.6,"name":"guaiA4es/03"},{"time":0.6667,"name":"guaiA4es/02"},{"time":0.7333,"name":null}]},"guaiA4es/04":{"attachment":[{"time":0.3667,"name":"guaiA4es/04"},{"time":0.4333,"name":"guaiA4es/05"},{"time":0.5,"name":"guaiA4es/06"},{"time":0.5667,"name":"guaiA4es/07"},{"time":0.6333,"name":"guaiA4es/08"},{"time":0.7,"name":null}]},"timo5 007":{"color":[{"time":0.7333,"color":"ffffff00"}]}},"bones":{"timo5 002":{"rotate":[{"time":0,"angle":-12.33},{"time":0.3333,"angle":-22.93},{"time":0.4333,"angle":9.15},{"time":0.9,"angle":-22.93},{"time":1.1667,"angle":-12.33}]},"bone2":{"rotate":[{"time":0,"angle":-12.33},{"time":0.3333,"angle":-41.99},{"time":0.4333,"angle":36.93},{"time":0.9,"angle":-41.99},{"time":1.1667,"angle":-12.33}]},"bone3":{"rotate":[{"time":0,"angle":-12.33},{"time":0.3333,"angle":23.68},{"time":0.4333,"angle":-18.7},{"time":0.9,"angle":23.68},{"time":1.1667,"angle":-12.33}]},"bone5":{"rotate":[{"time":0,"angle":-4.7},{"time":0.3333,"angle":29.75,"curve":"stepped"},{"time":0.9,"angle":29.75},{"time":1.1667,"angle":-4.7}]},"bone7":{"rotate":[{"time":0,"angle":1.48},{"time":0.3333,"angle":22.31,"curve":"stepped"},{"time":0.9,"angle":22.31},{"time":1.1667,"angle":1.48}]},"IK1":{"translate":[{"time":0,"x":0,"y":-0.6},{"time":0.3333,"x":-1.77,"y":3.47},{"time":0.4333,"x":-42.24,"y":173.16},{"time":0.9,"x":-1.77,"y":3.47},{"time":1.1667,"x":0,"y":-0.6}]},"IK2":{"translate":[{"time":0,"x":0,"y":-0.6},{"time":0.3333,"x":-8.42,"y":0.51},{"time":0.4333,"x":-50.88,"y":169.33},{"time":0.9,"x":-8.42,"y":0.51},{"time":1.1667,"x":0,"y":-0.6}]},"IK3":{"translate":[{"time":0,"x":0,"y":-0.6},{"time":0.3333,"x":21.21,"y":3.39},{"time":0.4333,"x":29.76,"y":161.64},{"time":0.9,"x":21.21,"y":3.39},{"time":1.1667,"x":0,"y":-0.6}]},"IK4":{"translate":[{"time":0,"x":0,"y":-0.6},{"time":0.3333,"x":30.08,"y":9.3},{"time":0.4333,"x":41.28,"y":169.33},{"time":0.9,"x":30.08,"y":9.3},{"time":1.1667,"x":0,"y":-0.6}]},"timo5 008":{"rotate":[{"time":0,"angle":0.01,"curve":"stepped"},{"time":1.1667,"angle":0.01}],"translate":[{"time":0,"x":0,"y":-0.6},{"time":0.3333,"x":0,"y":-29.51},{"time":0.4333,"x":0,"y":144.62},{"time":0.9,"x":0,"y":-29.51},{"time":1.1667,"x":0,"y":-0.6}]},"bone":{"rotate":[{"time":0,"angle":0.44},{"time":0.4333,"angle":15.2},{"time":1.1667,"angle":0.44}]},"timo5 012":{"rotate":[{"time":0,"angle":-1.63},{"time":0.3333,"angle":-19.09},{"time":0.4333,"angle":-14.05},{"time":0.9,"angle":-19.09},{"time":1.1667,"angle":-1.63}]},"timo5 013":{"rotate":[{"time":0,"angle":0.47},{"time":0.3333,"angle":-6.68},{"time":0.4333,"angle":-9.22},{"time":0.9,"angle":-6.68},{"time":1.1667,"angle":0.47}],"translate":[{"time":0,"x":-0.24,"y":1.17},{"time":0.3333,"x":-1.99,"y":9.72},{"time":0.4333,"x":-3.7,"y":18.05},{"time":0.5,"x":-11.4,"y":55.68},{"time":0.9,"x":-1.99,"y":9.72},{"time":1.1667,"x":-0.24,"y":1.17}]},"bone10":{"rotate":[{"time":0,"angle":0.47},{"time":0.3333,"angle":-7.89},{"time":0.4333,"angle":27.93},{"time":0.9,"angle":-7.89},{"time":1.1667,"angle":0.47}]},"timo5 016":{"rotate":[{"time":0,"angle":0.1},{"time":0.3333,"angle":-35.57},{"time":0.4333,"angle":293.05},{"time":0.5,"angle":275.99},{"time":0.9,"angle":-35.57},{"time":1.1667,"angle":0.1}]},"timo5 017":{"rotate":[{"time":0,"angle":2.77},{"time":0.3333,"angle":76.63},{"time":0.4333,"angle":24.64},{"time":0.5,"angle":0.46},{"time":0.9,"angle":76.63},{"time":1.1667,"angle":2.77}]},"timo5 005":{"rotate":[{"time":0,"angle":-2.44},{"time":0.3333,"angle":-65.2},{"time":0.4333,"angle":41.53},{"time":0.9,"angle":-65.2},{"time":1.1667,"angle":-2.44}]},"timo5 006":{"rotate":[{"time":0,"angle":-0.03},{"time":0.3333,"angle":74.42},{"time":0.4333,"angle":-58.75},{"time":0.9,"angle":74.42},{"time":1.1667,"angle":-0.03}]},"timo5 007":{"rotate":[{"time":0,"angle":-1.55,"curve":"stepped"},{"time":1.1667,"angle":-1.55}],"translate":[{"time":0,"x":1.06,"y":-1.43},{"time":0.3333,"x":13.73,"y":-14.45},{"time":0.4333,"x":-1.33,"y":-11.57},{"time":0.5,"x":93.89,"y":71.51},{"time":0.6,"x":319.45,"y":255.93},{"time":0.7333,"x":440.17,"y":368.27},{"time":0.9,"x":13.73,"y":-14.45},{"time":1.1667,"x":1.06,"y":-1.43}]},"timo5 014":{"rotate":[{"time":0,"angle":0.29,"curve":"stepped"},{"time":1.1667,"angle":0.29}]},"bone11":{"rotate":[{"time":0,"angle":-2.23},{"time":0.4333,"angle":30.55},{"time":0.9,"angle":-16.79},{"time":1.1667,"angle":-2.23}]},"timo5 015":{"rotate":[{"time":0,"angle":0.95},{"time":0.3333,"angle":-9.88},{"time":0.4333,"angle":20.46},{"time":0.9,"angle":-27.95},{"time":1.1667,"angle":0.95}]},"bone12":{"rotate":[{"time":0,"angle":0.95},{"time":0.3333,"angle":-9.88},{"time":0.4333,"angle":20.46},{"time":0.9,"angle":-27.95},{"time":1.1667,"angle":0.95}]},"bone13":{"rotate":[{"time":0,"angle":0.95},{"time":0.3333,"angle":-9.88},{"time":0.4333,"angle":20.46},{"time":0.9,"angle":-27.95},{"time":1.1667,"angle":0.95}]},"timo5 011":{"rotate":[{"time":0,"angle":0.95},{"time":0.3333,"angle":-10.72},{"time":0.4333,"angle":17.02},{"time":0.9,"angle":-22.85},{"time":1.1667,"angle":0.95}]},"bone14":{"rotate":[{"time":0,"angle":0.95},{"time":0.3333,"angle":-10.72},{"time":0.4333,"angle":17.02},{"time":0.9,"angle":-22.85},{"time":1.1667,"angle":0.95}]},"bone15":{"rotate":[{"time":0,"angle":0.95},{"time":0.3333,"angle":-10.71},{"time":0.4333,"angle":17.03},{"time":0.9,"angle":-22.85},{"time":1.1667,"angle":0.95}]}}}}} \ No newline at end of file diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.json.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.json.meta new file mode 100644 index 00000000..0068209c --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.json.meta @@ -0,0 +1,11 @@ +{ + "ver": "1.2.6", + "importer": "spine-data", + "imported": true, + "uuid": "f4f58d91-aad3-471e-9328-b714e8e5982c", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.png new file mode 100644 index 00000000..604ded97 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.png.meta new file mode 100644 index 00000000..ebc9606f --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "9968d439-7e1e-4994-bc1b-8bca5d7b49d8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9968d439-7e1e-4994-bc1b-8bca5d7b49d8@6c48a", + "displayName": "guaiA4es", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9968d439-7e1e-4994-bc1b-8bca5d7b49d8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9968d439-7e1e-4994-bc1b-8bca5d7b49d8@f9941", + "displayName": "guaiA4es", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -15.5, + "offsetY": 3.5, + "trimX": 2, + "trimY": 3, + "width": 989, + "height": 1011, + "rawWidth": 1024, + "rawHeight": 1024, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -494.5, + -505.5, + 0, + 494.5, + -505.5, + 0, + -494.5, + 505.5, + 0, + 494.5, + 505.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 1021, + 991, + 1021, + 2, + 10, + 991, + 10 + ], + "nuv": [ + 0.001953125, + 0.009765625, + 0.9677734375, + 0.009765625, + 0.001953125, + 0.9970703125, + 0.9677734375, + 0.9970703125 + ], + "minPos": [ + -494.5, + -505.5, + 0 + ], + "maxPos": [ + 494.5, + 505.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9968d439-7e1e-4994-bc1b-8bca5d7b49d8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9968d439-7e1e-4994-bc1b-8bca5d7b49d8@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.spine b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.spine new file mode 100644 index 00000000..83f4e5c9 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.spine differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.spine.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.spine.meta new file mode 100644 index 00000000..fa979cd9 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4es.spine.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.1", + "importer": "*", + "imported": true, + "uuid": "c6e672c2-f040-4f87-8f4b-2c83be6d69a6", + "files": [ + ".json", + ".spine" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.atlas b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.atlas new file mode 100644 index 00000000..3fe9bc3a --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.atlas @@ -0,0 +1,174 @@ + +guaiA4esTexture_2.png +size: 992,1015 +format: RGBA8888 +filter: Linear,Linear +repeat: none +guaiA4es_2/01 + rotate: false + xy: 806, 918 + size: 100, 97 + orig: 100, 97 + offset: 0, 0 + index: -1 +guaiA4es_2/02 + rotate: false + xy: 118, 84 + size: 100, 97 + orig: 100, 97 + offset: 0, 0 + index: -1 +guaiA4es_2/03 + rotate: false + xy: 322, 229 + size: 100, 97 + orig: 100, 97 + offset: 0, 0 + index: -1 +guaiA4es_2/04 + rotate: false + xy: 2, 739 + size: 318, 276 + orig: 318, 276 + offset: 0, 0 + index: -1 +guaiA4es_2/05 + rotate: false + xy: 2, 461 + size: 318, 276 + orig: 318, 276 + offset: 0, 0 + index: -1 +guaiA4es_2/06 + rotate: false + xy: 322, 739 + size: 318, 276 + orig: 318, 276 + offset: 0, 0 + index: -1 +guaiA4es_2/07 + rotate: false + xy: 2, 183 + size: 318, 276 + orig: 318, 276 + offset: 0, 0 + index: -1 +guaiA4es_2/08 + rotate: false + xy: 322, 461 + size: 318, 276 + orig: 318, 276 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 002 + rotate: false + xy: 750, 768 + size: 52, 97 + orig: 52, 97 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 003 + rotate: false + xy: 642, 548 + size: 58, 88 + orig: 58, 88 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 004 + rotate: false + xy: 437, 363 + size: 77, 96 + orig: 77, 96 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 005 + rotate: false + xy: 806, 854 + size: 62, 62 + orig: 62, 62 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 006 + rotate: false + xy: 2, 2 + size: 44, 30 + orig: 44, 30 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 007 + rotate: false + xy: 322, 328 + size: 113, 131 + orig: 113, 131 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 008 + rotate: false + xy: 642, 867 + size: 162, 148 + orig: 162, 148 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 009 + rotate: false + xy: 642, 458 + size: 58, 88 + orig: 58, 88 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 010 + rotate: false + xy: 642, 638 + size: 77, 96 + orig: 77, 96 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 011 + rotate: false + xy: 220, 98 + size: 74, 83 + orig: 74, 83 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 012 + rotate: false + xy: 2, 34 + size: 114, 147 + orig: 114, 147 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 013 + rotate: false + xy: 908, 930 + size: 84, 85 + orig: 84, 85 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 014 + rotate: false + xy: 642, 736 + size: 106, 129 + orig: 106, 129 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 015 + rotate: false + xy: 516, 396 + size: 88, 63 + orig: 88, 63 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 016 + rotate: false + xy: 804, 790 + size: 62, 62 + orig: 62, 62 + offset: 0, 0 + index: -1 +guaiA4es_2/timo5 017 + rotate: false + xy: 118, 51 + size: 43, 31 + orig: 43, 31 + offset: 0, 0 + index: -1 diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.atlas.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.atlas.meta new file mode 100644 index 00000000..a4cfb40a --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.1", + "importer": "*", + "imported": true, + "uuid": "acbf7e84-b9a5-4669-a409-57aea3e9ad8a", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.png new file mode 100644 index 00000000..6a6e314a Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.png.meta new file mode 100644 index 00000000..be3702f4 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/guaiA4esTexture.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "fcd65028-f911-47d4-8a0e-c9d8d49a8542", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fcd65028-f911-47d4-8a0e-c9d8d49a8542@6c48a", + "displayName": "guaiA4esTexture", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fcd65028-f911-47d4-8a0e-c9d8d49a8542", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fcd65028-f911-47d4-8a0e-c9d8d49a8542@f9941", + "displayName": "guaiA4esTexture", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -15.5, + "offsetY": 3.5, + "trimX": 2, + "trimY": 3, + "width": 989, + "height": 1011, + "rawWidth": 1024, + "rawHeight": 1024, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -494.5, + -505.5, + 0, + 494.5, + -505.5, + 0, + -494.5, + 505.5, + 0, + 494.5, + 505.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 1021, + 991, + 1021, + 2, + 10, + 991, + 10 + ], + "nuv": [ + 0.001953125, + 0.009765625, + 0.9677734375, + 0.009765625, + 0.001953125, + 0.9970703125, + 0.9677734375, + 0.9970703125 + ], + "minPos": [ + -494.5, + -505.5, + 0 + ], + "maxPos": [ + 494.5, + 505.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fcd65028-f911-47d4-8a0e-c9d8d49a8542@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fcd65028-f911-47d4-8a0e-c9d8d49a8542@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic.meta new file mode 100644 index 00000000..232b2ef0 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "d58408f6-535c-44b8-85ec-77d9a3b37ac7", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es.meta new file mode 100644 index 00000000..ce854423 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "e3301e43-a56a-4d6c-8646-e71e438094e7", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/01.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/01.png new file mode 100644 index 00000000..08c8cd63 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/01.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/01.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/01.png.meta new file mode 100644 index 00000000..abb68094 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/01.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "3a622b00-2de8-48cc-b358-3db8568ef5b3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3a622b00-2de8-48cc-b358-3db8568ef5b3@6c48a", + "displayName": "01", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3a622b00-2de8-48cc-b358-3db8568ef5b3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3a622b00-2de8-48cc-b358-3db8568ef5b3@f9941", + "displayName": "01", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 0.5, + "trimX": 17, + "trimY": 4, + "width": 58, + "height": 88, + "rawWidth": 100, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -29, + -44, + 0, + 29, + -44, + 0, + -29, + 44, + 0, + 29, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 17, + 93, + 75, + 93, + 17, + 5, + 75, + 5 + ], + "nuv": [ + 0.17, + 0.05154639175257732, + 0.75, + 0.05154639175257732, + 0.17, + 0.9587628865979382, + 0.75, + 0.9587628865979382 + ], + "minPos": [ + -29, + -44, + 0 + ], + "maxPos": [ + 29, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3a622b00-2de8-48cc-b358-3db8568ef5b3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3a622b00-2de8-48cc-b358-3db8568ef5b3@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/02.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/02.png new file mode 100644 index 00000000..769538ae Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/02.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/02.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/02.png.meta new file mode 100644 index 00000000..18fb15b7 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/02.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "dc64288e-f16e-4fa1-bec7-f79a9b9ec72b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dc64288e-f16e-4fa1-bec7-f79a9b9ec72b@6c48a", + "displayName": "02", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dc64288e-f16e-4fa1-bec7-f79a9b9ec72b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "dc64288e-f16e-4fa1-bec7-f79a9b9ec72b@f9941", + "displayName": "02", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4.5, + "offsetY": 1.5, + "trimX": 16, + "trimY": 5, + "width": 59, + "height": 84, + "rawWidth": 100, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -29.5, + -42, + 0, + 29.5, + -42, + 0, + -29.5, + 42, + 0, + 29.5, + 42, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 16, + 92, + 75, + 92, + 16, + 8, + 75, + 8 + ], + "nuv": [ + 0.16, + 0.08247422680412371, + 0.75, + 0.08247422680412371, + 0.16, + 0.9484536082474226, + 0.75, + 0.9484536082474226 + ], + "minPos": [ + -29.5, + -42, + 0 + ], + "maxPos": [ + 29.5, + 42, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dc64288e-f16e-4fa1-bec7-f79a9b9ec72b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dc64288e-f16e-4fa1-bec7-f79a9b9ec72b@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/03.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/03.png new file mode 100644 index 00000000..5fe31216 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/03.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/03.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/03.png.meta new file mode 100644 index 00000000..44096b96 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/03.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "b716aa0f-2c37-4287-a6c6-032ab8364bcf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b716aa0f-2c37-4287-a6c6-032ab8364bcf@6c48a", + "displayName": "03", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b716aa0f-2c37-4287-a6c6-032ab8364bcf", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b716aa0f-2c37-4287-a6c6-032ab8364bcf@f9941", + "displayName": "03", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3.5, + "offsetY": -2.5, + "trimX": 17, + "trimY": 5, + "width": 59, + "height": 92, + "rawWidth": 100, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -29.5, + -46, + 0, + 29.5, + -46, + 0, + -29.5, + 46, + 0, + 29.5, + 46, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 17, + 92, + 76, + 92, + 17, + 0, + 76, + 0 + ], + "nuv": [ + 0.17, + 0, + 0.76, + 0, + 0.17, + 0.9484536082474226, + 0.76, + 0.9484536082474226 + ], + "minPos": [ + -29.5, + -46, + 0 + ], + "maxPos": [ + 29.5, + 46, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b716aa0f-2c37-4287-a6c6-032ab8364bcf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b716aa0f-2c37-4287-a6c6-032ab8364bcf@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/04.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/04.png new file mode 100644 index 00000000..0619b3b4 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/04.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/04.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/04.png.meta new file mode 100644 index 00000000..b2773ccd --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/04.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "f4e45413-6b04-404c-8a2c-603b45f7caff", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f4e45413-6b04-404c-8a2c-603b45f7caff@6c48a", + "displayName": "04", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f4e45413-6b04-404c-8a2c-603b45f7caff", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f4e45413-6b04-404c-8a2c-603b45f7caff@f9941", + "displayName": "04", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 6.5, + "offsetY": -60, + "trimX": 47, + "trimY": 122, + "width": 237, + "height": 152, + "rawWidth": 318, + "rawHeight": 276, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -118.5, + -76, + 0, + 118.5, + -76, + 0, + -118.5, + 76, + 0, + 118.5, + 76, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 47, + 154, + 284, + 154, + 47, + 2, + 284, + 2 + ], + "nuv": [ + 0.14779874213836477, + 0.007246376811594203, + 0.8930817610062893, + 0.007246376811594203, + 0.14779874213836477, + 0.5579710144927537, + 0.8930817610062893, + 0.5579710144927537 + ], + "minPos": [ + -118.5, + -76, + 0 + ], + "maxPos": [ + 118.5, + 76, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f4e45413-6b04-404c-8a2c-603b45f7caff@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f4e45413-6b04-404c-8a2c-603b45f7caff@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/05.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/05.png new file mode 100644 index 00000000..9708f6d9 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/05.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/05.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/05.png.meta new file mode 100644 index 00000000..2a43591e --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/05.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "73f1d26b-8ad3-4745-884e-9407850365c4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "73f1d26b-8ad3-4745-884e-9407850365c4@6c48a", + "displayName": "05", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "73f1d26b-8ad3-4745-884e-9407850365c4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "73f1d26b-8ad3-4745-884e-9407850365c4@f9941", + "displayName": "05", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": -28.5, + "trimX": 14, + "trimY": 57, + "width": 289, + "height": 219, + "rawWidth": 318, + "rawHeight": 276, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -144.5, + -109.5, + 0, + 144.5, + -109.5, + 0, + -144.5, + 109.5, + 0, + 144.5, + 109.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 14, + 219, + 303, + 219, + 14, + 0, + 303, + 0 + ], + "nuv": [ + 0.0440251572327044, + 0, + 0.9528301886792453, + 0, + 0.0440251572327044, + 0.7934782608695652, + 0.9528301886792453, + 0.7934782608695652 + ], + "minPos": [ + -144.5, + -109.5, + 0 + ], + "maxPos": [ + 144.5, + 109.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "73f1d26b-8ad3-4745-884e-9407850365c4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "73f1d26b-8ad3-4745-884e-9407850365c4@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/06.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/06.png new file mode 100644 index 00000000..15dd4e66 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/06.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/06.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/06.png.meta new file mode 100644 index 00000000..a5139f72 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/06.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "86a627d7-2064-4e31-85c0-43ded881c083", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "86a627d7-2064-4e31-85c0-43ded881c083@6c48a", + "displayName": "06", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "86a627d7-2064-4e31-85c0-43ded881c083", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "86a627d7-2064-4e31-85c0-43ded881c083@f9941", + "displayName": "06", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": -6.5, + "trimX": 0, + "trimY": 20, + "width": 310, + "height": 249, + "rawWidth": 318, + "rawHeight": 276, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -155, + -124.5, + 0, + 155, + -124.5, + 0, + -155, + 124.5, + 0, + 155, + 124.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 256, + 310, + 256, + 0, + 7, + 310, + 7 + ], + "nuv": [ + 0, + 0.025362318840579712, + 0.9748427672955975, + 0.025362318840579712, + 0, + 0.927536231884058, + 0.9748427672955975, + 0.927536231884058 + ], + "minPos": [ + -155, + -124.5, + 0 + ], + "maxPos": [ + 155, + 124.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "86a627d7-2064-4e31-85c0-43ded881c083@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "86a627d7-2064-4e31-85c0-43ded881c083@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/07.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/07.png new file mode 100644 index 00000000..9c7ba44c Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/07.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/07.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/07.png.meta new file mode 100644 index 00000000..e0cf4f7d --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/07.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "cc320ae3-2792-40b4-adce-011d97efc064", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cc320ae3-2792-40b4-adce-011d97efc064@6c48a", + "displayName": "07", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cc320ae3-2792-40b4-adce-011d97efc064", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cc320ae3-2792-40b4-adce-011d97efc064@f9941", + "displayName": "07", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 318, + "height": 276, + "rawWidth": 318, + "rawHeight": 276, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -159, + -138, + 0, + 159, + -138, + 0, + -159, + 138, + 0, + 159, + 138, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 276, + 318, + 276, + 0, + 0, + 318, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -159, + -138, + 0 + ], + "maxPos": [ + 159, + 138, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cc320ae3-2792-40b4-adce-011d97efc064@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cc320ae3-2792-40b4-adce-011d97efc064@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/08.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/08.png new file mode 100644 index 00000000..a8bc97c8 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/08.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/08.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/08.png.meta new file mode 100644 index 00000000..fac565f7 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/08.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "0a2ed6e6-8614-4176-a464-4c673e0d6847", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0a2ed6e6-8614-4176-a464-4c673e0d6847@6c48a", + "displayName": "08", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0a2ed6e6-8614-4176-a464-4c673e0d6847", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0a2ed6e6-8614-4176-a464-4c673e0d6847@f9941", + "displayName": "08", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -13, + "offsetY": 24.5, + "trimX": 0, + "trimY": 0, + "width": 292, + "height": 227, + "rawWidth": 318, + "rawHeight": 276, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -146, + -113.5, + 0, + 146, + -113.5, + 0, + -146, + 113.5, + 0, + 146, + 113.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 276, + 292, + 276, + 0, + 49, + 292, + 49 + ], + "nuv": [ + 0, + 0.17753623188405798, + 0.9182389937106918, + 0.17753623188405798, + 0, + 1, + 0.9182389937106918, + 1 + ], + "minPos": [ + -146, + -113.5, + 0 + ], + "maxPos": [ + 146, + 113.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0a2ed6e6-8614-4176-a464-4c673e0d6847@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0a2ed6e6-8614-4176-a464-4c673e0d6847@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 002.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 002.png new file mode 100644 index 00000000..f5d765d3 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 002.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 002.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 002.png.meta new file mode 100644 index 00000000..c7d4cedb --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 002.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "c71daad3-b3f3-4204-9416-c885a6303ac9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c71daad3-b3f3-4204-9416-c885a6303ac9@6c48a", + "displayName": "timo5 002", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c71daad3-b3f3-4204-9416-c885a6303ac9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c71daad3-b3f3-4204-9416-c885a6303ac9@f9941", + "displayName": "timo5 002", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 50, + "height": 95, + "rawWidth": 52, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -25, + -47.5, + 0, + 25, + -47.5, + 0, + -25, + 47.5, + 0, + 25, + 47.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 96, + 51, + 96, + 1, + 1, + 51, + 1 + ], + "nuv": [ + 0.019230769230769232, + 0.010309278350515464, + 0.9807692307692307, + 0.010309278350515464, + 0.019230769230769232, + 0.9896907216494846, + 0.9807692307692307, + 0.9896907216494846 + ], + "minPos": [ + -25, + -47.5, + 0 + ], + "maxPos": [ + 25, + 47.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c71daad3-b3f3-4204-9416-c885a6303ac9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c71daad3-b3f3-4204-9416-c885a6303ac9@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 003.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 003.png new file mode 100644 index 00000000..4e4c3f0f Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 003.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 003.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 003.png.meta new file mode 100644 index 00000000..dfb682e0 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 003.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "fef99059-e5d9-47a9-87f4-46578f2fcae2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fef99059-e5d9-47a9-87f4-46578f2fcae2@6c48a", + "displayName": "timo5 003", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fef99059-e5d9-47a9-87f4-46578f2fcae2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fef99059-e5d9-47a9-87f4-46578f2fcae2@f9941", + "displayName": "timo5 003", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 56, + "height": 86, + "rawWidth": 58, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -28, + -43, + 0, + 28, + -43, + 0, + -28, + 43, + 0, + 28, + 43, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 87, + 57, + 87, + 1, + 1, + 57, + 1 + ], + "nuv": [ + 0.017241379310344827, + 0.011363636363636364, + 0.9827586206896551, + 0.011363636363636364, + 0.017241379310344827, + 0.9886363636363636, + 0.9827586206896551, + 0.9886363636363636 + ], + "minPos": [ + -28, + -43, + 0 + ], + "maxPos": [ + 28, + 43, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fef99059-e5d9-47a9-87f4-46578f2fcae2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fef99059-e5d9-47a9-87f4-46578f2fcae2@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 004.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 004.png new file mode 100644 index 00000000..fc406197 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 004.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 004.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 004.png.meta new file mode 100644 index 00000000..e7464926 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 004.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "65c10712-318d-4ecf-8253-a91a90dbc1e8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "65c10712-318d-4ecf-8253-a91a90dbc1e8@6c48a", + "displayName": "timo5 004", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "65c10712-318d-4ecf-8253-a91a90dbc1e8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "65c10712-318d-4ecf-8253-a91a90dbc1e8@f9941", + "displayName": "timo5 004", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 75, + "height": 94, + "rawWidth": 77, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -37.5, + -47, + 0, + 37.5, + -47, + 0, + -37.5, + 47, + 0, + 37.5, + 47, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 95, + 76, + 95, + 1, + 1, + 76, + 1 + ], + "nuv": [ + 0.012987012987012988, + 0.010416666666666666, + 0.987012987012987, + 0.010416666666666666, + 0.012987012987012988, + 0.9895833333333334, + 0.987012987012987, + 0.9895833333333334 + ], + "minPos": [ + -37.5, + -47, + 0 + ], + "maxPos": [ + 37.5, + 47, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "65c10712-318d-4ecf-8253-a91a90dbc1e8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "65c10712-318d-4ecf-8253-a91a90dbc1e8@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 005.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 005.png new file mode 100644 index 00000000..2c3eff69 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 005.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 005.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 005.png.meta new file mode 100644 index 00000000..6720694b --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 005.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "660ed781-d7e7-4630-81c0-67ebaaccc124", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "660ed781-d7e7-4630-81c0-67ebaaccc124@6c48a", + "displayName": "timo5 005", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "660ed781-d7e7-4630-81c0-67ebaaccc124", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "660ed781-d7e7-4630-81c0-67ebaaccc124@f9941", + "displayName": "timo5 005", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 60, + "height": 60, + "rawWidth": 62, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -30, + -30, + 0, + 30, + -30, + 0, + -30, + 30, + 0, + 30, + 30, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 61, + 61, + 61, + 1, + 1, + 61, + 1 + ], + "nuv": [ + 0.016129032258064516, + 0.016129032258064516, + 0.9838709677419355, + 0.016129032258064516, + 0.016129032258064516, + 0.9838709677419355, + 0.9838709677419355, + 0.9838709677419355 + ], + "minPos": [ + -30, + -30, + 0 + ], + "maxPos": [ + 30, + 30, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "660ed781-d7e7-4630-81c0-67ebaaccc124@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "660ed781-d7e7-4630-81c0-67ebaaccc124@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 006.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 006.png new file mode 100644 index 00000000..c0a7ca34 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 006.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 006.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 006.png.meta new file mode 100644 index 00000000..96e02b9f --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 006.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "25ee0a91-fde7-460c-94b5-fc3063e7b2f9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "25ee0a91-fde7-460c-94b5-fc3063e7b2f9@6c48a", + "displayName": "timo5 006", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "25ee0a91-fde7-460c-94b5-fc3063e7b2f9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "25ee0a91-fde7-460c-94b5-fc3063e7b2f9@f9941", + "displayName": "timo5 006", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 42, + "height": 28, + "rawWidth": 44, + "rawHeight": 30, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -21, + -14, + 0, + 21, + -14, + 0, + -21, + 14, + 0, + 21, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 29, + 43, + 29, + 1, + 1, + 43, + 1 + ], + "nuv": [ + 0.022727272727272728, + 0.03333333333333333, + 0.9772727272727273, + 0.03333333333333333, + 0.022727272727272728, + 0.9666666666666667, + 0.9772727272727273, + 0.9666666666666667 + ], + "minPos": [ + -21, + -14, + 0 + ], + "maxPos": [ + 21, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "25ee0a91-fde7-460c-94b5-fc3063e7b2f9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "25ee0a91-fde7-460c-94b5-fc3063e7b2f9@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 007.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 007.png new file mode 100644 index 00000000..98efba3e Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 007.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 007.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 007.png.meta new file mode 100644 index 00000000..3f646574 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 007.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "d8c705a6-a4c6-4936-b706-56e89e9bf344", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d8c705a6-a4c6-4936-b706-56e89e9bf344@6c48a", + "displayName": "timo5 007", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d8c705a6-a4c6-4936-b706-56e89e9bf344", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d8c705a6-a4c6-4936-b706-56e89e9bf344@f9941", + "displayName": "timo5 007", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 111, + "height": 129, + "rawWidth": 113, + "rawHeight": 131, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -55.5, + -64.5, + 0, + 55.5, + -64.5, + 0, + -55.5, + 64.5, + 0, + 55.5, + 64.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 130, + 112, + 130, + 1, + 1, + 112, + 1 + ], + "nuv": [ + 0.008849557522123894, + 0.007633587786259542, + 0.9911504424778761, + 0.007633587786259542, + 0.008849557522123894, + 0.9923664122137404, + 0.9911504424778761, + 0.9923664122137404 + ], + "minPos": [ + -55.5, + -64.5, + 0 + ], + "maxPos": [ + 55.5, + 64.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d8c705a6-a4c6-4936-b706-56e89e9bf344@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d8c705a6-a4c6-4936-b706-56e89e9bf344@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 008.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 008.png new file mode 100644 index 00000000..f5cebfd4 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 008.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 008.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 008.png.meta new file mode 100644 index 00000000..c148455b --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 008.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "b3bb16f2-78ad-418e-abb7-fb1719ae935c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b3bb16f2-78ad-418e-abb7-fb1719ae935c@6c48a", + "displayName": "timo5 008", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b3bb16f2-78ad-418e-abb7-fb1719ae935c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b3bb16f2-78ad-418e-abb7-fb1719ae935c@f9941", + "displayName": "timo5 008", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 160, + "height": 146, + "rawWidth": 162, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -80, + -73, + 0, + 80, + -73, + 0, + -80, + 73, + 0, + 80, + 73, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 147, + 161, + 147, + 1, + 1, + 161, + 1 + ], + "nuv": [ + 0.006172839506172839, + 0.006756756756756757, + 0.9938271604938271, + 0.006756756756756757, + 0.006172839506172839, + 0.9932432432432432, + 0.9938271604938271, + 0.9932432432432432 + ], + "minPos": [ + -80, + -73, + 0 + ], + "maxPos": [ + 80, + 73, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3bb16f2-78ad-418e-abb7-fb1719ae935c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b3bb16f2-78ad-418e-abb7-fb1719ae935c@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 009.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 009.png new file mode 100644 index 00000000..75a88bb4 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 009.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 009.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 009.png.meta new file mode 100644 index 00000000..2b6db867 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 009.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "c4fba28b-29af-4666-b7d1-0720ce76524b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c4fba28b-29af-4666-b7d1-0720ce76524b@6c48a", + "displayName": "timo5 009", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c4fba28b-29af-4666-b7d1-0720ce76524b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c4fba28b-29af-4666-b7d1-0720ce76524b@f9941", + "displayName": "timo5 009", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 56, + "height": 86, + "rawWidth": 58, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -28, + -43, + 0, + 28, + -43, + 0, + -28, + 43, + 0, + 28, + 43, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 87, + 57, + 87, + 1, + 1, + 57, + 1 + ], + "nuv": [ + 0.017241379310344827, + 0.011363636363636364, + 0.9827586206896551, + 0.011363636363636364, + 0.017241379310344827, + 0.9886363636363636, + 0.9827586206896551, + 0.9886363636363636 + ], + "minPos": [ + -28, + -43, + 0 + ], + "maxPos": [ + 28, + 43, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c4fba28b-29af-4666-b7d1-0720ce76524b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c4fba28b-29af-4666-b7d1-0720ce76524b@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 010.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 010.png new file mode 100644 index 00000000..36675dae Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 010.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 010.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 010.png.meta new file mode 100644 index 00000000..1b5dd738 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 010.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "5cb48bcf-9b7c-4621-9557-b6fcf69dfbbb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5cb48bcf-9b7c-4621-9557-b6fcf69dfbbb@6c48a", + "displayName": "timo5 010", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5cb48bcf-9b7c-4621-9557-b6fcf69dfbbb", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5cb48bcf-9b7c-4621-9557-b6fcf69dfbbb@f9941", + "displayName": "timo5 010", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 75, + "height": 94, + "rawWidth": 77, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -37.5, + -47, + 0, + 37.5, + -47, + 0, + -37.5, + 47, + 0, + 37.5, + 47, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 95, + 76, + 95, + 1, + 1, + 76, + 1 + ], + "nuv": [ + 0.012987012987012988, + 0.010416666666666666, + 0.987012987012987, + 0.010416666666666666, + 0.012987012987012988, + 0.9895833333333334, + 0.987012987012987, + 0.9895833333333334 + ], + "minPos": [ + -37.5, + -47, + 0 + ], + "maxPos": [ + 37.5, + 47, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5cb48bcf-9b7c-4621-9557-b6fcf69dfbbb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5cb48bcf-9b7c-4621-9557-b6fcf69dfbbb@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 011.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 011.png new file mode 100644 index 00000000..9c84622b Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 011.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 011.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 011.png.meta new file mode 100644 index 00000000..1a2df9d5 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 011.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "dc70290b-e14b-4d59-81a8-e037fa6b587c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dc70290b-e14b-4d59-81a8-e037fa6b587c@6c48a", + "displayName": "timo5 011", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dc70290b-e14b-4d59-81a8-e037fa6b587c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "dc70290b-e14b-4d59-81a8-e037fa6b587c@f9941", + "displayName": "timo5 011", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 72, + "height": 81, + "rawWidth": 74, + "rawHeight": 83, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -36, + -40.5, + 0, + 36, + -40.5, + 0, + -36, + 40.5, + 0, + 36, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 82, + 73, + 82, + 1, + 1, + 73, + 1 + ], + "nuv": [ + 0.013513513513513514, + 0.012048192771084338, + 0.9864864864864865, + 0.012048192771084338, + 0.013513513513513514, + 0.9879518072289156, + 0.9864864864864865, + 0.9879518072289156 + ], + "minPos": [ + -36, + -40.5, + 0 + ], + "maxPos": [ + 36, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dc70290b-e14b-4d59-81a8-e037fa6b587c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dc70290b-e14b-4d59-81a8-e037fa6b587c@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 012.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 012.png new file mode 100644 index 00000000..dce3cf6f Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 012.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 012.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 012.png.meta new file mode 100644 index 00000000..d6026895 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 012.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "dd17b176-c0e4-471b-953d-157482a7e61e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dd17b176-c0e4-471b-953d-157482a7e61e@6c48a", + "displayName": "timo5 012", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dd17b176-c0e4-471b-953d-157482a7e61e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "dd17b176-c0e4-471b-953d-157482a7e61e@f9941", + "displayName": "timo5 012", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 112, + "height": 145, + "rawWidth": 114, + "rawHeight": 147, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -56, + -72.5, + 0, + 56, + -72.5, + 0, + -56, + 72.5, + 0, + 56, + 72.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 146, + 113, + 146, + 1, + 1, + 113, + 1 + ], + "nuv": [ + 0.008771929824561403, + 0.006802721088435374, + 0.9912280701754386, + 0.006802721088435374, + 0.008771929824561403, + 0.9931972789115646, + 0.9912280701754386, + 0.9931972789115646 + ], + "minPos": [ + -56, + -72.5, + 0 + ], + "maxPos": [ + 56, + 72.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dd17b176-c0e4-471b-953d-157482a7e61e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dd17b176-c0e4-471b-953d-157482a7e61e@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 013.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 013.png new file mode 100644 index 00000000..a72e0710 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 013.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 013.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 013.png.meta new file mode 100644 index 00000000..6b9934f0 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 013.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "b32f733a-d305-4f1c-8542-45f68a22d072", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b32f733a-d305-4f1c-8542-45f68a22d072@6c48a", + "displayName": "timo5 013", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b32f733a-d305-4f1c-8542-45f68a22d072", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b32f733a-d305-4f1c-8542-45f68a22d072@f9941", + "displayName": "timo5 013", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 82, + "height": 83, + "rawWidth": 84, + "rawHeight": 85, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -41, + -41.5, + 0, + 41, + -41.5, + 0, + -41, + 41.5, + 0, + 41, + 41.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 84, + 83, + 84, + 1, + 1, + 83, + 1 + ], + "nuv": [ + 0.011904761904761904, + 0.011764705882352941, + 0.9880952380952381, + 0.011764705882352941, + 0.011904761904761904, + 0.9882352941176471, + 0.9880952380952381, + 0.9882352941176471 + ], + "minPos": [ + -41, + -41.5, + 0 + ], + "maxPos": [ + 41, + 41.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b32f733a-d305-4f1c-8542-45f68a22d072@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b32f733a-d305-4f1c-8542-45f68a22d072@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 014.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 014.png new file mode 100644 index 00000000..13d164a1 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 014.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 014.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 014.png.meta new file mode 100644 index 00000000..ea8a2890 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 014.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "cb5ace05-d558-40ee-8bd2-ef9401e3c19b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cb5ace05-d558-40ee-8bd2-ef9401e3c19b@6c48a", + "displayName": "timo5 014", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cb5ace05-d558-40ee-8bd2-ef9401e3c19b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cb5ace05-d558-40ee-8bd2-ef9401e3c19b@f9941", + "displayName": "timo5 014", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 104, + "height": 127, + "rawWidth": 106, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -52, + -63.5, + 0, + 52, + -63.5, + 0, + -52, + 63.5, + 0, + 52, + 63.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 128, + 105, + 128, + 1, + 1, + 105, + 1 + ], + "nuv": [ + 0.009433962264150943, + 0.007751937984496124, + 0.9905660377358491, + 0.007751937984496124, + 0.009433962264150943, + 0.9922480620155039, + 0.9905660377358491, + 0.9922480620155039 + ], + "minPos": [ + -52, + -63.5, + 0 + ], + "maxPos": [ + 52, + 63.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cb5ace05-d558-40ee-8bd2-ef9401e3c19b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cb5ace05-d558-40ee-8bd2-ef9401e3c19b@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 015.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 015.png new file mode 100644 index 00000000..80732319 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 015.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 015.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 015.png.meta new file mode 100644 index 00000000..93b2efa4 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 015.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "8602bb7b-f67c-469f-925b-4ffea75e6fca", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8602bb7b-f67c-469f-925b-4ffea75e6fca@6c48a", + "displayName": "timo5 015", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8602bb7b-f67c-469f-925b-4ffea75e6fca", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8602bb7b-f67c-469f-925b-4ffea75e6fca@f9941", + "displayName": "timo5 015", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 86, + "height": 61, + "rawWidth": 88, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -43, + -30.5, + 0, + 43, + -30.5, + 0, + -43, + 30.5, + 0, + 43, + 30.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 62, + 87, + 62, + 1, + 1, + 87, + 1 + ], + "nuv": [ + 0.011363636363636364, + 0.015873015873015872, + 0.9886363636363636, + 0.015873015873015872, + 0.011363636363636364, + 0.9841269841269841, + 0.9886363636363636, + 0.9841269841269841 + ], + "minPos": [ + -43, + -30.5, + 0 + ], + "maxPos": [ + 43, + 30.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8602bb7b-f67c-469f-925b-4ffea75e6fca@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8602bb7b-f67c-469f-925b-4ffea75e6fca@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 016.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 016.png new file mode 100644 index 00000000..56742e80 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 016.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 016.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 016.png.meta new file mode 100644 index 00000000..5ea9b035 --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 016.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "6f92ffef-8b45-403f-9820-033a1e679d16", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6f92ffef-8b45-403f-9820-033a1e679d16@6c48a", + "displayName": "timo5 016", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6f92ffef-8b45-403f-9820-033a1e679d16", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6f92ffef-8b45-403f-9820-033a1e679d16@f9941", + "displayName": "timo5 016", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 60, + "height": 60, + "rawWidth": 62, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -30, + -30, + 0, + 30, + -30, + 0, + -30, + 30, + 0, + 30, + 30, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 61, + 61, + 61, + 1, + 1, + 61, + 1 + ], + "nuv": [ + 0.016129032258064516, + 0.016129032258064516, + 0.9838709677419355, + 0.016129032258064516, + 0.016129032258064516, + 0.9838709677419355, + 0.9838709677419355, + 0.9838709677419355 + ], + "minPos": [ + -30, + -30, + 0 + ], + "maxPos": [ + 30, + 30, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6f92ffef-8b45-403f-9820-033a1e679d16@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6f92ffef-8b45-403f-9820-033a1e679d16@f9941" + } +} diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 017.png b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 017.png new file mode 100644 index 00000000..f2918011 Binary files /dev/null and b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 017.png differ diff --git a/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 017.png.meta b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 017.png.meta new file mode 100644 index 00000000..a431ac9e --- /dev/null +++ b/JisolGameCocos/assets/role/spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/pic/guaiA4es/timo5 017.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "ac93c3a9-4f91-424b-8d99-22819bf809a2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ac93c3a9-4f91-424b-8d99-22819bf809a2@6c48a", + "displayName": "timo5 017", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ac93c3a9-4f91-424b-8d99-22819bf809a2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ac93c3a9-4f91-424b-8d99-22819bf809a2@f9941", + "displayName": "timo5 017", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 41, + "height": 29, + "rawWidth": 43, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -20.5, + -14.5, + 0, + 20.5, + -14.5, + 0, + -20.5, + 14.5, + 0, + 20.5, + 14.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 30, + 42, + 30, + 1, + 1, + 42, + 1 + ], + "nuv": [ + 0.023255813953488372, + 0.03225806451612903, + 0.9767441860465116, + 0.03225806451612903, + 0.023255813953488372, + 0.967741935483871, + 0.9767441860465116, + 0.967741935483871 + ], + "minPos": [ + -20.5, + -14.5, + 0 + ], + "maxPos": [ + 20.5, + 14.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ac93c3a9-4f91-424b-8d99-22819bf809a2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ac93c3a9-4f91-424b-8d99-22819bf809a2@f9941" + } +} diff --git a/JisolGameCocos/assets/script/App.ts b/JisolGameCocos/assets/script/App.ts index 84bbc07a..f5f132c7 100644 --- a/JisolGameCocos/assets/script/App.ts +++ b/JisolGameCocos/assets/script/App.ts @@ -20,6 +20,9 @@ import { TableGRole } from "../resources/config/ts/TableGRole"; import loader from "../../extensions/ngame/assets/ngame/util/loader"; import { Prefab } from "cc"; import { sp } from "cc"; +import { TableGRoleAttack } from "../resources/config/ts/TableGRoleAttack"; +import { SpriteFrame } from "cc"; +import { TableGRoleAttackBullet } from "../resources/config/ts/TableGRoleAttackBullet"; //重写UI @@ -102,7 +105,9 @@ export class JNGConfig extends SystemBase{ //配置JSON加载 jsons:JsonLoad[] = [ - {name:TableGRole.TableName}, + {name:TableGRole.TableName}, //角色 + {name:TableGRoleAttack.TableName}, //角色攻击 + {name:TableGRoleAttackBullet.TableName}, //角色攻击子弹 ].map((table) => { return { name:table.name, @@ -124,6 +129,7 @@ export class JNGConfig extends SystemBase{ export class JLoaderRole extends JLoaderSystem{ skData:{[id:number]:sp.SkeletonData} = {}; + bullets:{[id:number]:SpriteFrame} = {}; async onInit(): Promise { await super.onInit(); //将配置表的角色都读取出来 @@ -134,6 +140,15 @@ export class JLoaderRole extends JLoaderSystem{ }) })) } + //将所有子弹读取出来 + for (const info of Object.values(TableGRoleAttackBullet.getAllConfig())) { + this.bullets[info.id] = await (new Promise(r => { + this.bundle.load(info.bulletSrc,SpriteFrame,(err,data) => { + r(data); + }) + })) + } + } } diff --git a/JisolGameCocos/assets/script/battle/base/attack.meta b/JisolGameCocos/assets/script/battle/base/attack.meta new file mode 100644 index 00000000..1057396f --- /dev/null +++ b/JisolGameCocos/assets/script/battle/base/attack.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "e15c838f-470f-4ed6-8594-6f83fda53554", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/script/battle/base/attack/GAttack.ts b/JisolGameCocos/assets/script/battle/base/attack/GAttack.ts new file mode 100644 index 00000000..b14daec8 --- /dev/null +++ b/JisolGameCocos/assets/script/battle/base/attack/GAttack.ts @@ -0,0 +1,19 @@ +import { TableGRoleAttack } from "../../../../resources/config/ts/TableGRoleAttack"; +import GRoleBase from "../role/GRoleBase"; +import GAttackNormal from "./GAttackNormal"; +import GAttackRemote from "./GAttackRemote"; + + + + +//攻击方式基类 +export class GAttackBase{ + attack(role:GRoleBase<{}>,info:TableGRoleAttack){}; +} + +//攻击方式 +export const GAttack:{[key:string]:new () => GAttackBase} = { + ["Normal"]:GAttackNormal, + ["Remote"]:GAttackRemote, +} + diff --git a/JisolGameCocos/assets/script/battle/base/attack/GAttack.ts.meta b/JisolGameCocos/assets/script/battle/base/attack/GAttack.ts.meta new file mode 100644 index 00000000..ea31cdca --- /dev/null +++ b/JisolGameCocos/assets/script/battle/base/attack/GAttack.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.23", + "importer": "typescript", + "imported": true, + "uuid": "27b49d92-b5a7-4972-9a72-856cbb2daaf3", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/script/battle/base/attack/GAttackNormal.ts b/JisolGameCocos/assets/script/battle/base/attack/GAttackNormal.ts new file mode 100644 index 00000000..333f3c81 --- /dev/null +++ b/JisolGameCocos/assets/script/battle/base/attack/GAttackNormal.ts @@ -0,0 +1,13 @@ +import { TableGRoleAttack } from "../../../../resources/config/ts/TableGRoleAttack"; +import GRoleBase from "../role/GRoleBase"; +import { GAttackBase } from "./GAttack"; + + +//普通攻击 +export default class GAttackNormal implements GAttackBase{ + + attack(role: GRoleBase<{}>, info: TableGRoleAttack) { + role.fsm.enemy.onHit(); + } + +} diff --git a/JisolGameCocos/assets/script/battle/base/attack/GAttackNormal.ts.meta b/JisolGameCocos/assets/script/battle/base/attack/GAttackNormal.ts.meta new file mode 100644 index 00000000..84b66a3c --- /dev/null +++ b/JisolGameCocos/assets/script/battle/base/attack/GAttackNormal.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.23", + "importer": "typescript", + "imported": true, + "uuid": "95040d38-b26e-4de8-97c8-9e1ec860843e", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/script/battle/base/attack/GAttackRemote.ts b/JisolGameCocos/assets/script/battle/base/attack/GAttackRemote.ts new file mode 100644 index 00000000..da383266 --- /dev/null +++ b/JisolGameCocos/assets/script/battle/base/attack/GAttackRemote.ts @@ -0,0 +1,15 @@ +import { TableGRoleAttack } from "../../../../resources/config/ts/TableGRoleAttack"; +import { app } from "../../../App"; +import GRoleBase from "../role/GRoleBase"; +import { GAttackBase } from "./GAttack"; + +export default class GAttackRemote implements GAttackBase{ + + attack(role: GRoleBase<{}>, info: TableGRoleAttack): void { + console.log(app.role.bullets[info.attackArgs[0]]); + role.fsm.enemy.onHit(); + } + +} + + diff --git a/JisolGameCocos/assets/script/battle/base/attack/GAttackRemote.ts.meta b/JisolGameCocos/assets/script/battle/base/attack/GAttackRemote.ts.meta new file mode 100644 index 00000000..3d01f229 --- /dev/null +++ b/JisolGameCocos/assets/script/battle/base/attack/GAttackRemote.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.23", + "importer": "typescript", + "imported": true, + "uuid": "565d04ae-ff80-4b3c-ac82-97dfcce552c2", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/JisolGameCocos/assets/script/battle/base/role/GRoleBase.ts b/JisolGameCocos/assets/script/battle/base/role/GRoleBase.ts index 6b8f2614..764839ff 100644 --- a/JisolGameCocos/assets/script/battle/base/role/GRoleBase.ts +++ b/JisolGameCocos/assets/script/battle/base/role/GRoleBase.ts @@ -10,6 +10,8 @@ import { JEasing, JTween } from "../../../../../extensions/ngame/assets/ngame/sy import { v2 } from "cc"; import GRole from "../../entity/GRole"; import { app } from "../../../App"; +import { TableGRoleAttack } from "../../../../resources/config/ts/TableGRoleAttack"; +import { GAttack, GAttackBase } from "../attack/GAttack"; const { ccclass, property } = _decorator; export enum GRoleAnimEvent{ @@ -96,6 +98,7 @@ export default abstract class GRoleBase extends GObject{ bind(role:GRole){ if(this.spine) this.spine.skeletonData = app.role.skData[role.id]; + this.range = role.range; //设置攻击范围 this.role = role; } @@ -143,7 +146,8 @@ export default abstract class GRoleBase extends GObject{ //攻击 onAttack(){ //敌人扣血 - this.fsm.enemy?.onHit(); + let info = TableGRoleAttack.getConfig(this.role.id); + (new GAttack[info.attackWay]()).attack(this,info); } //受击 diff --git a/JisolGameCocos/assets/script/battle/entity/GRole.ts b/JisolGameCocos/assets/script/battle/entity/GRole.ts index 112cf1c9..fc86c48b 100644 --- a/JisolGameCocos/assets/script/battle/entity/GRole.ts +++ b/JisolGameCocos/assets/script/battle/entity/GRole.ts @@ -4,6 +4,7 @@ import GRoleBase from "../base/role/GRoleBase"; //角色实体类 export default interface GRole { id:number; //宠物Id + range:number; //宠物攻击范围 } //角色工具类 @@ -24,7 +25,8 @@ export class GRoleUtil{ let info:TableGRole; if(!(info = TableGRole.getConfig(id))) return null; return { - id:info.id + id:info.id, + range:info.roleAttackRange, } } diff --git a/JisolGameCocos/assets/script/battle/modes/GPVPMode.ts b/JisolGameCocos/assets/script/battle/modes/GPVPMode.ts index 4a580e78..c51d225b 100644 --- a/JisolGameCocos/assets/script/battle/modes/GPVPMode.ts +++ b/JisolGameCocos/assets/script/battle/modes/GPVPMode.ts @@ -58,7 +58,7 @@ export default class GPVPMode extends GBaseMode<{}>{ //初始化战斗 console.log("GPVPMode 模式初始化"); - this.playerInfo = { tactical: GTactical.getTactical(),roles: GRoleUtil.getGRoles([10001,10001,10001,10001,10001]) }; + this.playerInfo = { tactical: GTactical.getTactical(),roles: GRoleUtil.getGRoles([10001,10001,10001,10001,10003]) }; this.enemyInfo = { tactical: GTactical.getTactical(true),roles: GRoleUtil.getGRoles([10002,10002,10002,10001,10001]) }; //生成玩家 diff --git a/JisolGameCocos/config/GRole.xlsx b/JisolGameCocos/config/GRole.xlsx index 2a644002..0b65c0c3 100644 Binary files a/JisolGameCocos/config/GRole.xlsx and b/JisolGameCocos/config/GRole.xlsx differ diff --git a/JisolGameCocos/config/GRoleAttack.xlsx b/JisolGameCocos/config/GRoleAttack.xlsx new file mode 100644 index 00000000..ed62cdc6 Binary files /dev/null and b/JisolGameCocos/config/GRoleAttack.xlsx differ diff --git a/JisolGameCocos/config/GRoleAttackBullet.xlsx b/JisolGameCocos/config/GRoleAttackBullet.xlsx new file mode 100644 index 00000000..6187b10b Binary files /dev/null and b/JisolGameCocos/config/GRoleAttackBullet.xlsx differ diff --git a/JisolGameCocos/config/GRoleSkill.xlsx b/JisolGameCocos/config/GRoleSkill.xlsx new file mode 100644 index 00000000..901b17b8 Binary files /dev/null and b/JisolGameCocos/config/GRoleSkill.xlsx differ