diff --git a/assets/Script/JiaZai.ts b/assets/Script/JiaZai.ts index e62fbb6..355ea1e 100644 --- a/assets/Script/JiaZai.ts +++ b/assets/Script/JiaZai.ts @@ -142,7 +142,7 @@ export default class JiaZai extends cc.Component { // } // }); - // this.createIcon(); + this.createIcon(); cc.fx.GameConfig.GM_INFO.sceneValue = "HomeScene"; @@ -388,7 +388,7 @@ export default class JiaZai extends cc.Component { for (let i = 0; i < iconCount; i++) { let iconNode = cc.instantiate(this.icon); iconNode.parent = this.node.getChildByName("action"); - + this.loadSpineSimple(iconNode, "action2"); // 计算每个icon的位置 let position: cc.Vec2; @@ -416,6 +416,79 @@ export default class JiaZai extends cc.Component { } } + // 加载spine动画的完整方法 + loadSpineAnimation(node: cc.Node, spinePath: string) { + // 同时加载spine的三个必要文件 + cc.resources.loadDir(spinePath, (err: any, assets: any[]) => { + if (err) { + console.error("加载spine资源失败:", err); + return; + } + + // 分离不同类型的资源 + let jsonAsset: any = null; + let atlasAsset: any = null; + let textureAsset: any = null; + + assets.forEach(asset => { + if (asset instanceof cc.JsonAsset) { + jsonAsset = asset; + } else if (asset instanceof cc.TextAsset && asset.name.endsWith('.atlas')) { + atlasAsset = asset; + } else if (asset instanceof cc.Texture2D) { + textureAsset = asset; + } + }); + + if (!jsonAsset || !atlasAsset || !textureAsset) { + console.error("spine资源不完整:", { json: !!jsonAsset, atlas: !!atlasAsset, texture: !!textureAsset }); + return; + } + + // 创建spine组件 + const spine = node.addComponent(sp.Skeleton); + + // 设置spine数据 + spine.skeletonData = new sp.SkeletonData(); + spine.skeletonData.skeletonJson = jsonAsset.json; + spine.skeletonData.atlasText = atlasAsset.text; + spine.skeletonData.textures = [textureAsset]; + spine.skeletonData.textureNames = [textureAsset.name]; + + // 设置默认动画 + spine.defaultSkin = "default"; + spine.animation = "01"; // 替换为实际的动画名称 + spine.loop = true; + + // 播放动画 + spine.setAnimation(0, "animation", true); + + console.log("spine动画加载成功"); + }); + } + + // 或者使用更简单的方法 - 直接加载预配置的spine资源 + loadSpineSimple(node: cc.Node, spineName: string) { + // 使用cc.assetManager替换cc.resources.load + const spinePath = `spine/${spineName}/skeleton`; + + cc.assetManager.loadAny(spinePath, sp.SkeletonData, (err: any, skeletonData: sp.SkeletonData) => { + if (err) { + console.error(`加载spine动画 ${spineName} 失败:`, err); + return; + } + + const spine = node.addComponent(sp.Skeleton); + spine.skeletonData = skeletonData; + spine.defaultSkin = "default"; + spine.animation = "02"; // 替换为实际的动画名称 + spine.loop = true; + spine.setAnimation(0, "02", true); + + // console.log(`spine动画 ${spineName} 加载成功`); + }); + } + //监听后台 onGames() { //@ts-ignore diff --git a/assets/resources/Json/NEW_LEVEL.json b/assets/resources/Json/NEW_LEVEL.json index 11e773d..42980b7 100644 --- a/assets/resources/Json/NEW_LEVEL.json +++ b/assets/resources/Json/NEW_LEVEL.json @@ -7,97 +7,97 @@ }, { "level": 15, - "name": "daoju1", + "name": "daoju0", "tips": "叠加方块第一次出现" }, { "level": 25, - "name": "daoju2", + "name": "daoju0", "tips": "冻结方块第一次出现" }, { "level": 35, - "name": "daoju3", + "name": "daoju0", "tips": "星星方块第一次出现" }, { "level": 44, - "name": "daoju4", + "name": "daoju0", "tips": "钥匙锁方块第一次出现" }, { "level": 52, - "name": "daoju5", + "name": "daoju0", "tips": "粘合方块第一次出现" }, { "level": 61, - "name": "daoju6", + "name": "daoju0", "tips": "开关门第一次出现" }, { "level": 70, - "name": "daoju7", + "name": "daoju0", "tips": "炸弹方块第一次出现" }, { "level": 120, - "name": "daoju8", + "name": "daoju0", "tips": "单色通过地块第一次出现" }, { "level": 170, - "name": "daoju9", + "name": "daoju0", "tips": "冻结门第一次出现" }, { "level": 375, - "name": "daoju10", + "name": "daoju0", "tips": "果酱门第一次出现" }, { "level": 396, - "name": "daoju11", + "name": "daoju0", "tips": "灰色不可消除方块第一次出现" }, { "level": 464, - "name": "daoju12", + "name": "daoju0", "tips": "木板块第一次出现" }, { "level": 511, - "name": "daoju13", + "name": "daoju0", "tips": "变色门第一次出现" }, { "level": 580, - "name": "daoju14", + "name": "daoju0", "tips": "带锁的门第一次出现" }, { "level": 673, - "name": "daoju15", + "name": "daoju0", "tips": "伸缩门第一次出现" }, { "level": 734, - "name": "daoju16", + "name": "daoju0", "tips": "问号块第一次出现" }, { "level": 761, - "name": "daoju17", + "name": "daoju0", "tips": "定次粘合块第一次出现" }, { "level": 849, - "name": "daoju18", + "name": "daoju0", "tips": "定次炸弹块第一次出现" }, { "level": 903, - "name": "daoju19", + "name": "daoju0", "tips": "铁皮方块第一次出现" } ] diff --git a/assets/resources/Window_Prop/daoju1.png b/assets/resources/Window_Prop/daoju1.png deleted file mode 100644 index 6b39c67..0000000 Binary files a/assets/resources/Window_Prop/daoju1.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju1.png.meta b/assets/resources/Window_Prop/daoju1.png.meta deleted file mode 100644 index fcefacd..0000000 --- a/assets/resources/Window_Prop/daoju1.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "1c111e49-b82d-4996-b6e9-bc78e698c880", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 733, - "height": 711, - "platformSettings": {}, - "subMetas": { - "daoju1": { - "ver": "1.0.6", - "uuid": "bf904b6e-7a5b-447c-a0a4-bf4151811fd1", - "importer": "sprite-frame", - "rawTextureUuid": "1c111e49-b82d-4996-b6e9-bc78e698c880", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -0.5, - "offsetY": 0.5, - "trimX": 40, - "trimY": 5, - "width": 652, - "height": 700, - "rawWidth": 733, - "rawHeight": 711, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju10.png b/assets/resources/Window_Prop/daoju10.png deleted file mode 100644 index 275cb59..0000000 Binary files a/assets/resources/Window_Prop/daoju10.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju11.png b/assets/resources/Window_Prop/daoju11.png deleted file mode 100644 index fe67d71..0000000 Binary files a/assets/resources/Window_Prop/daoju11.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju12.png b/assets/resources/Window_Prop/daoju12.png deleted file mode 100644 index 5916a10..0000000 Binary files a/assets/resources/Window_Prop/daoju12.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju13.png b/assets/resources/Window_Prop/daoju13.png deleted file mode 100644 index 53f4e32..0000000 Binary files a/assets/resources/Window_Prop/daoju13.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju14.png b/assets/resources/Window_Prop/daoju14.png deleted file mode 100644 index 9d15cc4..0000000 Binary files a/assets/resources/Window_Prop/daoju14.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju14.png.meta b/assets/resources/Window_Prop/daoju14.png.meta deleted file mode 100644 index 5089f25..0000000 --- a/assets/resources/Window_Prop/daoju14.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "bbfbb29f-7b16-420d-901b-5f082db38eeb", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 777, - "height": 747, - "platformSettings": {}, - "subMetas": { - "daoju14": { - "ver": "1.0.6", - "uuid": "5fd115a4-b9ce-4f5d-92c6-d0ee85519176", - "importer": "sprite-frame", - "rawTextureUuid": "bbfbb29f-7b16-420d-901b-5f082db38eeb", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 777, - "height": 747, - "rawWidth": 777, - "rawHeight": 747, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju15.png b/assets/resources/Window_Prop/daoju15.png deleted file mode 100644 index 98b979d..0000000 Binary files a/assets/resources/Window_Prop/daoju15.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju15.png.meta b/assets/resources/Window_Prop/daoju15.png.meta deleted file mode 100644 index da1e740..0000000 --- a/assets/resources/Window_Prop/daoju15.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "4d16d0ad-2fd5-4630-9aa9-5e1bf8fb0dd8", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 734, - "height": 784, - "platformSettings": {}, - "subMetas": { - "daoju15": { - "ver": "1.0.6", - "uuid": "1e34eeb4-02a5-4fc0-bca4-903328269439", - "importer": "sprite-frame", - "rawTextureUuid": "4d16d0ad-2fd5-4630-9aa9-5e1bf8fb0dd8", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 734, - "height": 784, - "rawWidth": 734, - "rawHeight": 784, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju16.png b/assets/resources/Window_Prop/daoju16.png deleted file mode 100644 index eaf25bb..0000000 Binary files a/assets/resources/Window_Prop/daoju16.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju16.png.meta b/assets/resources/Window_Prop/daoju16.png.meta deleted file mode 100644 index 0037d63..0000000 --- a/assets/resources/Window_Prop/daoju16.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "dbf22e78-4c94-49de-bb40-509e3372a32d", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 733, - "height": 747, - "platformSettings": {}, - "subMetas": { - "daoju16": { - "ver": "1.0.6", - "uuid": "4152e645-826f-41f9-8736-5d2c265cce69", - "importer": "sprite-frame", - "rawTextureUuid": "dbf22e78-4c94-49de-bb40-509e3372a32d", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 733, - "height": 747, - "rawWidth": 733, - "rawHeight": 747, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju17.png b/assets/resources/Window_Prop/daoju17.png deleted file mode 100644 index 2a44cc6..0000000 Binary files a/assets/resources/Window_Prop/daoju17.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju17.png.meta b/assets/resources/Window_Prop/daoju17.png.meta deleted file mode 100644 index e42b04c..0000000 --- a/assets/resources/Window_Prop/daoju17.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "8bc6fafe-1d52-4b50-9199-c0111b86bfce", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 720, - "height": 784, - "platformSettings": {}, - "subMetas": { - "daoju17": { - "ver": "1.0.6", - "uuid": "d77fc62d-309f-4449-83e8-f811c55d69ab", - "importer": "sprite-frame", - "rawTextureUuid": "8bc6fafe-1d52-4b50-9199-c0111b86bfce", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 720, - "height": 784, - "rawWidth": 720, - "rawHeight": 784, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju18.png b/assets/resources/Window_Prop/daoju18.png deleted file mode 100644 index a822588..0000000 Binary files a/assets/resources/Window_Prop/daoju18.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju18.png.meta b/assets/resources/Window_Prop/daoju18.png.meta deleted file mode 100644 index 3d537c9..0000000 --- a/assets/resources/Window_Prop/daoju18.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "4e622071-00b0-4ed8-93b8-583c27f803de", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 720, - "height": 784, - "platformSettings": {}, - "subMetas": { - "daoju18": { - "ver": "1.0.6", - "uuid": "e60c4efc-86a8-4163-91bf-e09980230da9", - "importer": "sprite-frame", - "rawTextureUuid": "4e622071-00b0-4ed8-93b8-583c27f803de", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 787, - "height": 782, - "rawWidth": 787, - "rawHeight": 782, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju19.png b/assets/resources/Window_Prop/daoju19.png deleted file mode 100644 index b4435ed..0000000 Binary files a/assets/resources/Window_Prop/daoju19.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju19.png.meta b/assets/resources/Window_Prop/daoju19.png.meta deleted file mode 100644 index 4081fe1..0000000 --- a/assets/resources/Window_Prop/daoju19.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "782aac06-a49c-48e1-b9eb-aceecf649d42", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 744, - "height": 786, - "platformSettings": {}, - "subMetas": { - "daoju19": { - "ver": "1.0.6", - "uuid": "4937f794-68b7-4040-8c4c-22aca68989f4", - "importer": "sprite-frame", - "rawTextureUuid": "782aac06-a49c-48e1-b9eb-aceecf649d42", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 744, - "height": 786, - "rawWidth": 744, - "rawHeight": 786, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju2.png b/assets/resources/Window_Prop/daoju2.png deleted file mode 100644 index 4271024..0000000 Binary files a/assets/resources/Window_Prop/daoju2.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju2.png.meta b/assets/resources/Window_Prop/daoju2.png.meta deleted file mode 100644 index 847dbf0..0000000 --- a/assets/resources/Window_Prop/daoju2.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "0049e9ab-7e39-49fa-abfd-27482b158ae2", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 733, - "height": 669, - "platformSettings": {}, - "subMetas": { - "daoju2": { - "ver": "1.0.6", - "uuid": "5c4ec0b0-f6da-4435-8f7f-11b53005bbdc", - "importer": "sprite-frame", - "rawTextureUuid": "0049e9ab-7e39-49fa-abfd-27482b158ae2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0.5, - "trimX": 18, - "trimY": 8, - "width": 697, - "height": 652, - "rawWidth": 733, - "rawHeight": 669, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju3.png b/assets/resources/Window_Prop/daoju3.png deleted file mode 100644 index 81584ed..0000000 Binary files a/assets/resources/Window_Prop/daoju3.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju3.png.meta b/assets/resources/Window_Prop/daoju3.png.meta deleted file mode 100644 index 2a171d3..0000000 --- a/assets/resources/Window_Prop/daoju3.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "b6ae8682-943e-426b-a202-84f37dc1e843", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 733, - "height": 669, - "platformSettings": {}, - "subMetas": { - "daoju3": { - "ver": "1.0.6", - "uuid": "eb6bfe8d-8ea7-4efa-b416-19b7ef4fbc0e", - "importer": "sprite-frame", - "rawTextureUuid": "b6ae8682-943e-426b-a202-84f37dc1e843", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 6, - "width": 733, - "height": 657, - "rawWidth": 733, - "rawHeight": 669, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju4.png b/assets/resources/Window_Prop/daoju4.png deleted file mode 100644 index c428ada..0000000 Binary files a/assets/resources/Window_Prop/daoju4.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju4.png.meta b/assets/resources/Window_Prop/daoju4.png.meta deleted file mode 100644 index b226227..0000000 --- a/assets/resources/Window_Prop/daoju4.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "0b24a717-3022-47c4-8739-9b8de223209a", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 733, - "height": 669, - "platformSettings": {}, - "subMetas": { - "daoju4": { - "ver": "1.0.6", - "uuid": "a085ff1c-7df7-4a7f-8239-91b464161e83", - "importer": "sprite-frame", - "rawTextureUuid": "0b24a717-3022-47c4-8739-9b8de223209a", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0.5, - "trimX": 35, - "trimY": 5, - "width": 663, - "height": 658, - "rawWidth": 733, - "rawHeight": 669, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju5.png b/assets/resources/Window_Prop/daoju5.png deleted file mode 100644 index 87e32ca..0000000 Binary files a/assets/resources/Window_Prop/daoju5.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju5.png.meta b/assets/resources/Window_Prop/daoju5.png.meta deleted file mode 100644 index 0cda8e0..0000000 --- a/assets/resources/Window_Prop/daoju5.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "5e6f2066-cb12-41b7-a171-fc2003da60cf", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 733, - "height": 690, - "platformSettings": {}, - "subMetas": { - "daoju5": { - "ver": "1.0.6", - "uuid": "5818a4e9-7942-4ac5-9511-a90f24e89322", - "importer": "sprite-frame", - "rawTextureUuid": "5e6f2066-cb12-41b7-a171-fc2003da60cf", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 19, - "trimY": 21, - "width": 695, - "height": 648, - "rawWidth": 733, - "rawHeight": 690, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju6.png b/assets/resources/Window_Prop/daoju6.png deleted file mode 100644 index ca2ea23..0000000 Binary files a/assets/resources/Window_Prop/daoju6.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju6.png.meta b/assets/resources/Window_Prop/daoju6.png.meta deleted file mode 100644 index bcdd112..0000000 --- a/assets/resources/Window_Prop/daoju6.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "97c09743-de26-4de2-b679-165a0f109674", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 733, - "height": 669, - "platformSettings": {}, - "subMetas": { - "daoju6": { - "ver": "1.0.6", - "uuid": "b8f5b30b-44bf-4d01-8b47-a5552540788a", - "importer": "sprite-frame", - "rawTextureUuid": "97c09743-de26-4de2-b679-165a0f109674", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -0.5, - "offsetY": 0, - "trimX": 15, - "trimY": 52, - "width": 702, - "height": 565, - "rawWidth": 733, - "rawHeight": 669, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju7.png b/assets/resources/Window_Prop/daoju7.png deleted file mode 100644 index 35abbe9..0000000 Binary files a/assets/resources/Window_Prop/daoju7.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju7.png.meta b/assets/resources/Window_Prop/daoju7.png.meta deleted file mode 100644 index c78a6a5..0000000 --- a/assets/resources/Window_Prop/daoju7.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "9c5c2e4c-dc57-4743-ba73-189a3050d7af", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 733, - "height": 690, - "platformSettings": {}, - "subMetas": { - "daoju7": { - "ver": "1.0.6", - "uuid": "d920c246-6cb4-4aff-97ac-5acfaeba2132", - "importer": "sprite-frame", - "rawTextureUuid": "9c5c2e4c-dc57-4743-ba73-189a3050d7af", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": -0.5, - "offsetY": 0, - "trimX": 5, - "trimY": 4, - "width": 722, - "height": 682, - "rawWidth": 733, - "rawHeight": 690, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju8.png b/assets/resources/Window_Prop/daoju8.png deleted file mode 100644 index 7d8bcda..0000000 Binary files a/assets/resources/Window_Prop/daoju8.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju8.png.meta b/assets/resources/Window_Prop/daoju8.png.meta deleted file mode 100644 index e2c8499..0000000 --- a/assets/resources/Window_Prop/daoju8.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "6c12637c-2bb7-4e7f-881b-96809e32c6cb", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 676, - "height": 566, - "platformSettings": {}, - "subMetas": { - "daoju8": { - "ver": "1.0.6", - "uuid": "1ffc9d43-7e87-48f1-9ed2-594de9b1310f", - "importer": "sprite-frame", - "rawTextureUuid": "6c12637c-2bb7-4e7f-881b-96809e32c6cb", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 676, - "height": 566, - "rawWidth": 676, - "rawHeight": 566, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju9.png b/assets/resources/Window_Prop/daoju9.png deleted file mode 100644 index 0ee6bd3..0000000 Binary files a/assets/resources/Window_Prop/daoju9.png and /dev/null differ diff --git a/assets/resources/Window_Prop/daoju9.png.meta b/assets/resources/Window_Prop/daoju9.png.meta deleted file mode 100644 index 6dbc602..0000000 --- a/assets/resources/Window_Prop/daoju9.png.meta +++ /dev/null @@ -1,38 +0,0 @@ -{ - "ver": "2.3.7", - "uuid": "a57bdbd8-3153-459e-b71c-9dc08d255d09", - "importer": "texture", - "type": "sprite", - "wrapMode": "clamp", - "filterMode": "bilinear", - "premultiplyAlpha": false, - "genMipmaps": false, - "packable": true, - "width": 733, - "height": 669, - "platformSettings": {}, - "subMetas": { - "daoju9": { - "ver": "1.0.6", - "uuid": "50f8a3be-4c6c-48c5-a884-26934dec7d9b", - "importer": "sprite-frame", - "rawTextureUuid": "a57bdbd8-3153-459e-b71c-9dc08d255d09", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 38, - "trimY": 45, - "width": 657, - "height": 579, - "rawWidth": 733, - "rawHeight": 669, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "subMetas": {} - } - } -} \ No newline at end of file diff --git a/assets/resources/spine.meta b/assets/resources/spine.meta new file mode 100644 index 0000000..7eaa93e --- /dev/null +++ b/assets/resources/spine.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "cb39be11-7d6e-455c-be31-ebb919833c53", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action1.meta b/assets/resources/spine/action1.meta new file mode 100644 index 0000000..14f4fb6 --- /dev/null +++ b/assets/resources/spine/action1.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "ebb76f1b-2e0b-42ff-8437-241bb59df3ce", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action1/skeleton.atlas b/assets/resources/spine/action1/skeleton.atlas new file mode 100644 index 0000000..0729bbb --- /dev/null +++ b/assets/resources/spine/action1/skeleton.atlas @@ -0,0 +1,48 @@ + +skeleton.png +size: 910,181 +format: RGBA8888 +filter: Linear,Linear +repeat: none +010001 + rotate: false + xy: 306, 2 + size: 149, 177 + orig: 180, 180 + offset: 19, 0 + index: -1 +010002 + rotate: false + xy: 2, 3 + size: 150, 176 + orig: 180, 180 + offset: 17, 0 + index: -1 +010003 + rotate: false + xy: 154, 3 + size: 150, 176 + orig: 180, 180 + offset: 17, 0 + index: -1 +010004 + rotate: false + xy: 457, 2 + size: 149, 177 + orig: 180, 180 + offset: 19, 0 + index: -1 +010005 + rotate: false + xy: 608, 2 + size: 149, 177 + orig: 180, 180 + offset: 19, 0 + index: -1 +010006 + rotate: false + xy: 759, 2 + size: 149, 177 + orig: 180, 180 + offset: 19, 0 + index: -1 diff --git a/assets/resources/spine/action1/skeleton.atlas.meta b/assets/resources/spine/action1/skeleton.atlas.meta new file mode 100644 index 0000000..139b412 --- /dev/null +++ b/assets/resources/spine/action1/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "94be2a73-bedc-47ea-87e0-7b8de4a2fe88", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action1/skeleton.json b/assets/resources/spine/action1/skeleton.json new file mode 100644 index 0000000..bfb00d9 --- /dev/null +++ b/assets/resources/spine/action1/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"XbSUwF342LN5R0gJZLYv51zs+0k","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"D:/默认头像拆件/01拆件/01","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"010001","bone":"root","attachment":"010001"}],"skins":[{"name":"default","attachments":{"010001":{"010001":{"width":180,"height":180},"010002":{"width":180,"height":180},"010003":{"width":180,"height":180},"010004":{"width":180,"height":180},"010005":{"width":180,"height":180},"010006":{"width":180,"height":180}}}}],"animations":{"01":{"slots":{"010001":{"attachment":[{"time":0.1,"name":"010002"},{"time":0.2,"name":"010003"},{"time":0.3,"name":"010004"},{"time":0.4,"name":"010005"},{"time":0.5,"name":"010006"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action1/skeleton.json.meta b/assets/resources/spine/action1/skeleton.json.meta new file mode 100644 index 0000000..a08e488 --- /dev/null +++ b/assets/resources/spine/action1/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "0f58beb4-cb7e-4e50-a28a-10ce38dfc32a", + "importer": "spine", + "textures": [ + "a5f2b452-d4ae-446b-b58c-18a96343fab1" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action1/skeleton.png b/assets/resources/spine/action1/skeleton.png new file mode 100644 index 0000000..6a004df Binary files /dev/null and b/assets/resources/spine/action1/skeleton.png differ diff --git a/assets/resources/Window_Prop/daoju11.png.meta b/assets/resources/spine/action1/skeleton.png.meta similarity index 60% rename from assets/resources/Window_Prop/daoju11.png.meta rename to assets/resources/spine/action1/skeleton.png.meta index cfb16e7..7c1c81b 100644 --- a/assets/resources/Window_Prop/daoju11.png.meta +++ b/assets/resources/spine/action1/skeleton.png.meta @@ -1,6 +1,6 @@ { "ver": "2.3.7", - "uuid": "ca324a72-c9a6-4539-be8a-9db36b7f4952", + "uuid": "a5f2b452-d4ae-446b-b58c-18a96343fab1", "importer": "texture", "type": "sprite", "wrapMode": "clamp", @@ -8,26 +8,26 @@ "premultiplyAlpha": false, "genMipmaps": false, "packable": true, - "width": 733, - "height": 750, + "width": 910, + "height": 181, "platformSettings": {}, "subMetas": { - "daoju11": { + "skeleton": { "ver": "1.0.6", - "uuid": "dc936637-2ef4-40b6-95a3-f67a000803f7", + "uuid": "d047e66d-3ac7-43dc-b1d6-4c39c254067c", "importer": "sprite-frame", - "rawTextureUuid": "ca324a72-c9a6-4539-be8a-9db36b7f4952", + "rawTextureUuid": "a5f2b452-d4ae-446b-b58c-18a96343fab1", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 27, - "trimY": 0, - "width": 679, - "height": 750, - "rawWidth": 733, - "rawHeight": 750, + "trimX": 2, + "trimY": 2, + "width": 906, + "height": 177, + "rawWidth": 910, + "rawHeight": 181, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, diff --git a/assets/resources/spine/action11.meta b/assets/resources/spine/action11.meta new file mode 100644 index 0000000..373562c --- /dev/null +++ b/assets/resources/spine/action11.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "ac9f3b4d-e0fc-43ce-bc5b-e259e750b3dc", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action11/skeleton.atlas b/assets/resources/spine/action11/skeleton.atlas new file mode 100644 index 0000000..df1c700 --- /dev/null +++ b/assets/resources/spine/action11/skeleton.atlas @@ -0,0 +1,62 @@ + +skeleton.png +size: 357,507 +format: RGBA8888 +filter: Linear,Linear +repeat: none +110001 + rotate: true + xy: 182, 140 + size: 119, 172 + orig: 180, 180 + offset: 41, 0 + index: -1 +110002 + rotate: true + xy: 183, 384 + size: 121, 172 + orig: 180, 180 + offset: 43, 0 + index: -1 +110003 + rotate: true + xy: 2, 374 + size: 131, 179 + orig: 180, 180 + offset: 30, 0 + index: -1 +110004 + rotate: true + xy: 2, 244 + size: 128, 178 + orig: 180, 180 + offset: 32, 0 + index: -1 +110005 + rotate: true + xy: 183, 261 + size: 121, 172 + orig: 180, 180 + offset: 40, 0 + index: -1 +110006 + rotate: true + xy: 2, 123 + size: 119, 172 + orig: 180, 180 + offset: 41, 0 + index: -1 +110007 + rotate: true + xy: 176, 19 + size: 119, 172 + orig: 180, 180 + offset: 41, 0 + index: -1 +110008 + rotate: true + xy: 2, 2 + size: 119, 172 + orig: 180, 180 + offset: 41, 0 + index: -1 diff --git a/assets/resources/spine/action11/skeleton.atlas.meta b/assets/resources/spine/action11/skeleton.atlas.meta new file mode 100644 index 0000000..b2453c5 --- /dev/null +++ b/assets/resources/spine/action11/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "17f4dff8-676f-40fe-8ddc-7eeb83e68ba7", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action11/skeleton.json b/assets/resources/spine/action11/skeleton.json new file mode 100644 index 0000000..2f97abc --- /dev/null +++ b/assets/resources/spine/action11/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"ll9wXtlYGvuGlqOTXgTmSiA2qjU","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./11/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"110001","bone":"root","attachment":"110008"}],"skins":[{"name":"default","attachments":{"110001":{"110001":{"width":180,"height":180},"110002":{"width":180,"height":180},"110003":{"width":180,"height":180},"110004":{"width":180,"height":180},"110005":{"width":180,"height":180},"110006":{"width":180,"height":180},"110007":{"width":180,"height":180},"110008":{"width":180,"height":180}}}}],"animations":{"11":{"slots":{"110001":{"attachment":[{"name":"110001"},{"time":0.2,"name":"110002"},{"time":0.3,"name":"110003"},{"time":0.4,"name":"110004"},{"time":0.5,"name":"110005"},{"time":0.6,"name":"110006"},{"time":0.7,"name":"110007"},{"time":0.8,"name":"110008"},{"time":1.3,"name":"110007"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action11/skeleton.json.meta b/assets/resources/spine/action11/skeleton.json.meta new file mode 100644 index 0000000..151bb75 --- /dev/null +++ b/assets/resources/spine/action11/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "9a8cb5c6-2290-4dfc-8ddc-f007c49fe73a", + "importer": "spine", + "textures": [ + "c26b8ce4-6364-4be7-9fec-b6b52fa19df9" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action11/skeleton.png b/assets/resources/spine/action11/skeleton.png new file mode 100644 index 0000000..fe97485 Binary files /dev/null and b/assets/resources/spine/action11/skeleton.png differ diff --git a/assets/resources/Window_Prop/daoju13.png.meta b/assets/resources/spine/action11/skeleton.png.meta similarity index 60% rename from assets/resources/Window_Prop/daoju13.png.meta rename to assets/resources/spine/action11/skeleton.png.meta index d648bc9..c7041d2 100644 --- a/assets/resources/Window_Prop/daoju13.png.meta +++ b/assets/resources/spine/action11/skeleton.png.meta @@ -1,6 +1,6 @@ { "ver": "2.3.7", - "uuid": "27a9dcd8-e242-48f5-ad60-d90ceaa5fda9", + "uuid": "c26b8ce4-6364-4be7-9fec-b6b52fa19df9", "importer": "texture", "type": "sprite", "wrapMode": "clamp", @@ -8,26 +8,26 @@ "premultiplyAlpha": false, "genMipmaps": false, "packable": true, - "width": 739, - "height": 786, + "width": 357, + "height": 507, "platformSettings": {}, "subMetas": { - "daoju13": { + "skeleton": { "ver": "1.0.6", - "uuid": "b1c0c738-9960-4728-9d81-13a752f2684d", + "uuid": "127022e2-c27d-4873-9742-3a0dc4e785c6", "importer": "sprite-frame", - "rawTextureUuid": "27a9dcd8-e242-48f5-ad60-d90ceaa5fda9", + "rawTextureUuid": "c26b8ce4-6364-4be7-9fec-b6b52fa19df9", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 739, - "height": 786, - "rawWidth": 739, - "rawHeight": 786, + "trimX": 2, + "trimY": 2, + "width": 353, + "height": 503, + "rawWidth": 357, + "rawHeight": 507, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, diff --git a/assets/resources/spine/action13.meta b/assets/resources/spine/action13.meta new file mode 100644 index 0000000..7742316 --- /dev/null +++ b/assets/resources/spine/action13.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "71e781ef-be1c-48a7-ab86-d72607e369c1", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action13/skeleton.atlas b/assets/resources/spine/action13/skeleton.atlas new file mode 100644 index 0000000..9932b20 --- /dev/null +++ b/assets/resources/spine/action13/skeleton.atlas @@ -0,0 +1,62 @@ + +skeleton.png +size: 1437,143 +format: RGBA8888 +filter: Linear,Linear +repeat: none +130001 + rotate: true + xy: 179, 3 + size: 138, 174 + orig: 180, 180 + offset: 22, 0 + index: -1 +130002 + rotate: true + xy: 711, 2 + size: 139, 180 + orig: 180, 180 + offset: 24, 0 + index: -1 +130003 + rotate: true + xy: 893, 2 + size: 139, 180 + orig: 180, 180 + offset: 24, 0 + index: -1 +130004 + rotate: true + xy: 1075, 2 + size: 139, 180 + orig: 180, 180 + offset: 22, 0 + index: -1 +130005 + rotate: true + xy: 1257, 2 + size: 139, 178 + orig: 180, 180 + offset: 22, 0 + index: -1 +130006 + rotate: true + xy: 355, 3 + size: 138, 177 + orig: 180, 180 + offset: 22, 0 + index: -1 +130007 + rotate: true + xy: 2, 4 + size: 137, 175 + orig: 180, 180 + offset: 23, 0 + index: -1 +130008 + rotate: true + xy: 534, 3 + size: 138, 175 + orig: 180, 180 + offset: 22, 0 + index: -1 diff --git a/assets/resources/spine/action13/skeleton.atlas.meta b/assets/resources/spine/action13/skeleton.atlas.meta new file mode 100644 index 0000000..42e54b3 --- /dev/null +++ b/assets/resources/spine/action13/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "0eb8928f-7db0-4863-aa5f-e65d6b32ebd3", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action13/skeleton.json b/assets/resources/spine/action13/skeleton.json new file mode 100644 index 0000000..f685910 --- /dev/null +++ b/assets/resources/spine/action13/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"v2KXEmB86DGGYJd98E0dJQwMPxU","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./13/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"130001","bone":"root","attachment":"130008"}],"skins":[{"name":"default","attachments":{"130001":{"130001":{"width":180,"height":180},"130002":{"width":180,"height":180},"130003":{"width":180,"height":180},"130004":{"width":180,"height":180},"130005":{"width":180,"height":180},"130006":{"width":180,"height":180},"130007":{"width":180,"height":180},"130008":{"width":180,"height":180}}}}],"animations":{"13":{"slots":{"130001":{"attachment":[{"name":"130001"},{"time":0.2,"name":"130002"},{"time":0.3,"name":"130003"},{"time":0.4,"name":"130004"},{"time":0.5,"name":"130005"},{"time":0.6,"name":"130006"},{"time":0.7,"name":"130007"},{"time":0.8,"name":"130008"},{"time":0.9,"name":"130001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action13/skeleton.json.meta b/assets/resources/spine/action13/skeleton.json.meta new file mode 100644 index 0000000..135b17c --- /dev/null +++ b/assets/resources/spine/action13/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "f2f2dccf-0adf-4074-8e57-9fe4efdcbd4b", + "importer": "spine", + "textures": [ + "7e59f954-0322-4e9a-9918-d1f5e0dacc9b" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action13/skeleton.png b/assets/resources/spine/action13/skeleton.png new file mode 100644 index 0000000..558d652 Binary files /dev/null and b/assets/resources/spine/action13/skeleton.png differ diff --git a/assets/resources/spine/action13/skeleton.png.meta b/assets/resources/spine/action13/skeleton.png.meta new file mode 100644 index 0000000..5f7acc2 --- /dev/null +++ b/assets/resources/spine/action13/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "7e59f954-0322-4e9a-9918-d1f5e0dacc9b", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1437, + "height": 143, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "a92f3040-1e7c-4178-a214-e8c8f49cdde5", + "importer": "sprite-frame", + "rawTextureUuid": "7e59f954-0322-4e9a-9918-d1f5e0dacc9b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1433, + "height": 139, + "rawWidth": 1437, + "rawHeight": 143, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/spine/action14.meta b/assets/resources/spine/action14.meta new file mode 100644 index 0000000..8d631b7 --- /dev/null +++ b/assets/resources/spine/action14.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "cb05c834-5576-4c52-b8b6-a0dbc83f8e72", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action14/skeleton.atlas b/assets/resources/spine/action14/skeleton.atlas new file mode 100644 index 0000000..18e8f8f --- /dev/null +++ b/assets/resources/spine/action14/skeleton.atlas @@ -0,0 +1,48 @@ + +skeleton.png +size: 444,326 +format: RGBA8888 +filter: Linear,Linear +repeat: none +140001 + rotate: false + xy: 309, 165 + size: 133, 159 + orig: 180, 180 + offset: 26, 0 + index: -1 +140002 + rotate: false + xy: 309, 4 + size: 133, 159 + orig: 180, 180 + offset: 26, 0 + index: -1 +140003 + rotate: false + xy: 2, 2 + size: 145, 165 + orig: 180, 180 + offset: 21, 0 + index: -1 +140004 + rotate: false + xy: 162, 146 + size: 145, 178 + orig: 180, 180 + offset: 23, 0 + index: -1 +140005 + rotate: true + xy: 2, 169 + size: 155, 158 + orig: 180, 180 + offset: 11, 0 + index: -1 +140006 + rotate: true + xy: 149, 6 + size: 138, 158 + orig: 180, 180 + offset: 21, 0 + index: -1 diff --git a/assets/resources/spine/action14/skeleton.atlas.meta b/assets/resources/spine/action14/skeleton.atlas.meta new file mode 100644 index 0000000..52051fc --- /dev/null +++ b/assets/resources/spine/action14/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "c127f3a5-659d-4132-b770-680c2e8a461a", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action14/skeleton.json b/assets/resources/spine/action14/skeleton.json new file mode 100644 index 0000000..071aeb0 --- /dev/null +++ b/assets/resources/spine/action14/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"5i62cMrheYanz0bgkuDmiEWcMVg","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./14/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"140001","bone":"root","attachment":"140006"}],"skins":[{"name":"default","attachments":{"140001":{"140001":{"width":180,"height":180},"140002":{"width":180,"height":180},"140003":{"width":180,"height":180},"140004":{"width":180,"height":180},"140005":{"width":180,"height":180},"140006":{"width":180,"height":180}}}}],"animations":{"14":{"slots":{"140001":{"attachment":[{"name":"140001"},{"time":0.1,"name":"140002"},{"time":0.2,"name":"140003"},{"time":0.3,"name":"140004"},{"time":0.4,"name":"140005"},{"time":0.5,"name":"140006"},{"time":0.6,"name":"140001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action14/skeleton.json.meta b/assets/resources/spine/action14/skeleton.json.meta new file mode 100644 index 0000000..aeba71a --- /dev/null +++ b/assets/resources/spine/action14/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "115eeb82-1fcd-466b-baa8-4476d4ce4deb", + "importer": "spine", + "textures": [ + "128d44ed-3bec-4e0b-bfe4-8d9f9cb6df92" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action14/skeleton.png b/assets/resources/spine/action14/skeleton.png new file mode 100644 index 0000000..1fd9567 Binary files /dev/null and b/assets/resources/spine/action14/skeleton.png differ diff --git a/assets/resources/Window_Prop/daoju12.png.meta b/assets/resources/spine/action14/skeleton.png.meta similarity index 60% rename from assets/resources/Window_Prop/daoju12.png.meta rename to assets/resources/spine/action14/skeleton.png.meta index bb5dee3..35f995f 100644 --- a/assets/resources/Window_Prop/daoju12.png.meta +++ b/assets/resources/spine/action14/skeleton.png.meta @@ -1,6 +1,6 @@ { "ver": "2.3.7", - "uuid": "9c437e8d-6a67-483f-829b-859d339ee270", + "uuid": "128d44ed-3bec-4e0b-bfe4-8d9f9cb6df92", "importer": "texture", "type": "sprite", "wrapMode": "clamp", @@ -8,26 +8,26 @@ "premultiplyAlpha": false, "genMipmaps": false, "packable": true, - "width": 664, - "height": 750, + "width": 444, + "height": 326, "platformSettings": {}, "subMetas": { - "daoju12": { + "skeleton": { "ver": "1.0.6", - "uuid": "44f93c2f-a775-4468-a0c9-ec58e9acd9e8", + "uuid": "a87f3ed9-204a-4aee-9750-f16b1410d843", "importer": "sprite-frame", - "rawTextureUuid": "9c437e8d-6a67-483f-829b-859d339ee270", + "rawTextureUuid": "128d44ed-3bec-4e0b-bfe4-8d9f9cb6df92", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 664, - "height": 750, - "rawWidth": 664, - "rawHeight": 750, + "trimX": 2, + "trimY": 2, + "width": 440, + "height": 322, + "rawWidth": 444, + "rawHeight": 326, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, diff --git a/assets/resources/spine/action15.meta b/assets/resources/spine/action15.meta new file mode 100644 index 0000000..b74a8c6 --- /dev/null +++ b/assets/resources/spine/action15.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "00d63532-9c28-4c9f-80f4-29cb9ee0a9aa", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action15/skeleton.atlas b/assets/resources/spine/action15/skeleton.atlas new file mode 100644 index 0000000..de0cc8a --- /dev/null +++ b/assets/resources/spine/action15/skeleton.atlas @@ -0,0 +1,55 @@ + +skeleton.png +size: 925,183 +format: RGBA8888 +filter: Linear,Linear +repeat: none +150001 + rotate: false + xy: 553, 3 + size: 122, 178 + orig: 180, 180 + offset: 28, 0 + index: -1 +150002 + rotate: false + xy: 677, 3 + size: 122, 178 + orig: 180, 180 + offset: 28, 0 + index: -1 +150003 + rotate: false + xy: 300, 2 + size: 123, 179 + orig: 180, 180 + offset: 27, 0 + index: -1 +150004 + rotate: false + xy: 154, 5 + size: 144, 176 + orig: 180, 180 + offset: 5, 0 + index: -1 +150005 + rotate: false + xy: 801, 9 + size: 122, 172 + orig: 180, 180 + offset: 28, 0 + index: -1 +150006 + rotate: false + xy: 425, 7 + size: 126, 174 + orig: 180, 180 + offset: 29, 0 + index: -1 +150007 + rotate: false + xy: 2, 6 + size: 150, 175 + orig: 180, 180 + offset: 30, 0 + index: -1 diff --git a/assets/resources/spine/action15/skeleton.atlas.meta b/assets/resources/spine/action15/skeleton.atlas.meta new file mode 100644 index 0000000..e41024e --- /dev/null +++ b/assets/resources/spine/action15/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "bb2ef854-6b5a-4f80-a7ab-146fb0c0ff01", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action15/skeleton.json b/assets/resources/spine/action15/skeleton.json new file mode 100644 index 0000000..2e4b699 --- /dev/null +++ b/assets/resources/spine/action15/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"G2EyKbebCsvhNNGRP+x2wKRuVHQ","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./15/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"150001","bone":"root","attachment":"150007"}],"skins":[{"name":"default","attachments":{"150001":{"150001":{"width":180,"height":180},"150002":{"width":180,"height":180},"150003":{"width":180,"height":180},"150004":{"width":180,"height":180},"150005":{"width":180,"height":180},"150006":{"width":180,"height":180},"150007":{"width":180,"height":180}}}}],"animations":{"15":{"slots":{"150001":{"attachment":[{"name":"150002"},{"time":0.0667,"name":"150003"},{"time":0.1333,"name":"150004"},{"time":0.5,"name":"150005"},{"time":0.5667,"name":"150006"},{"time":0.6333,"name":"150007"},{"time":1.2,"name":"150006"},{"time":1.2667,"name":"150005"},{"time":1.3333,"name":"150002"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action15/skeleton.json.meta b/assets/resources/spine/action15/skeleton.json.meta new file mode 100644 index 0000000..a220691 --- /dev/null +++ b/assets/resources/spine/action15/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "8d2f5888-3ea7-42f3-864d-60b521d48af3", + "importer": "spine", + "textures": [ + "18a49406-f38e-4095-a6d8-f37bc30f45d4" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action15/skeleton.png b/assets/resources/spine/action15/skeleton.png new file mode 100644 index 0000000..652935c Binary files /dev/null and b/assets/resources/spine/action15/skeleton.png differ diff --git a/assets/resources/Window_Prop/daoju10.png.meta b/assets/resources/spine/action15/skeleton.png.meta similarity index 60% rename from assets/resources/Window_Prop/daoju10.png.meta rename to assets/resources/spine/action15/skeleton.png.meta index f03b680..a65fc35 100644 --- a/assets/resources/Window_Prop/daoju10.png.meta +++ b/assets/resources/spine/action15/skeleton.png.meta @@ -1,6 +1,6 @@ { "ver": "2.3.7", - "uuid": "56bb68cb-b9e7-4e96-b7de-2a974e468856", + "uuid": "18a49406-f38e-4095-a6d8-f37bc30f45d4", "importer": "texture", "type": "sprite", "wrapMode": "clamp", @@ -8,26 +8,26 @@ "premultiplyAlpha": false, "genMipmaps": false, "packable": true, - "width": 689, - "height": 528, + "width": 925, + "height": 183, "platformSettings": {}, "subMetas": { - "daoju10": { + "skeleton": { "ver": "1.0.6", - "uuid": "2692332a-ba65-4e13-bb54-40af830a664f", + "uuid": "ff1fd55d-68ea-45a0-b199-506d995d93fa", "importer": "sprite-frame", - "rawTextureUuid": "56bb68cb-b9e7-4e96-b7de-2a974e468856", + "rawTextureUuid": "18a49406-f38e-4095-a6d8-f37bc30f45d4", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 689, - "height": 528, - "rawWidth": 689, - "rawHeight": 528, + "trimX": 2, + "trimY": 2, + "width": 921, + "height": 179, + "rawWidth": 925, + "rawHeight": 183, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, diff --git a/assets/resources/spine/action16.meta b/assets/resources/spine/action16.meta new file mode 100644 index 0000000..9861a2c --- /dev/null +++ b/assets/resources/spine/action16.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "d68d34a6-9b15-40d4-b483-a22a33e424dd", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action16/skeleton.atlas b/assets/resources/spine/action16/skeleton.atlas new file mode 100644 index 0000000..e5fc2f4 --- /dev/null +++ b/assets/resources/spine/action16/skeleton.atlas @@ -0,0 +1,90 @@ + +skeleton.png +size: 1930,184 +format: RGBA8888 +filter: Linear,Linear +repeat: none +160001 + rotate: false + xy: 724, 4 + size: 178, 178 + orig: 180, 180 + offset: 0, 0 + index: -1 +160002 + rotate: false + xy: 1084, 3 + size: 170, 179 + orig: 180, 180 + offset: 4, 0 + index: -1 +160010 + rotate: false + xy: 1084, 3 + size: 170, 179 + orig: 180, 180 + offset: 4, 0 + index: -1 +160003 + rotate: false + xy: 1596, 4 + size: 165, 178 + orig: 180, 180 + offset: 10, 0 + index: -1 +160004 + rotate: true + xy: 2, 2 + size: 180, 179 + orig: 180, 180 + offset: 0, 0 + index: -1 +160005 + rotate: false + xy: 364, 3 + size: 178, 179 + orig: 180, 180 + offset: 2, 0 + index: -1 +160006 + rotate: false + xy: 904, 4 + size: 178, 178 + orig: 180, 180 + offset: 2, 0 + index: -1 +160007 + rotate: false + xy: 544, 3 + size: 178, 179 + orig: 180, 180 + offset: 2, 0 + index: -1 +160008 + rotate: true + xy: 183, 2 + size: 180, 179 + orig: 180, 180 + offset: 0, 0 + index: -1 +160009 + rotate: false + xy: 1763, 4 + size: 165, 178 + orig: 180, 180 + offset: 10, 0 + index: -1 +160011 + rotate: false + xy: 1256, 3 + size: 170, 179 + orig: 180, 180 + offset: 4, 0 + index: -1 +160012 + rotate: false + xy: 1428, 3 + size: 166, 179 + orig: 180, 180 + offset: 8, 0 + index: -1 diff --git a/assets/resources/spine/action16/skeleton.atlas.meta b/assets/resources/spine/action16/skeleton.atlas.meta new file mode 100644 index 0000000..78d36bf --- /dev/null +++ b/assets/resources/spine/action16/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "31c01dbb-37e1-4cc6-9457-a30002c8ff53", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action16/skeleton.json b/assets/resources/spine/action16/skeleton.json new file mode 100644 index 0000000..733ea70 --- /dev/null +++ b/assets/resources/spine/action16/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"AW1IIXwsbAlOEYboSChmiiTMiBE","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./16/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"160001","bone":"root","attachment":"160012"}],"skins":[{"name":"default","attachments":{"160001":{"160001":{"width":180,"height":180},"160002":{"width":180,"height":180},"160003":{"width":180,"height":180},"160004":{"width":180,"height":180},"160005":{"width":180,"height":180},"160006":{"width":180,"height":180},"160007":{"width":180,"height":180},"160008":{"width":180,"height":180},"160009":{"width":180,"height":180},"160010":{"width":180,"height":180},"160011":{"width":180,"height":180},"160012":{"width":180,"height":180}}}}],"animations":{"16":{"slots":{"160001":{"attachment":[{"name":"160001"},{"time":0.2,"name":"160002"},{"time":0.2667,"name":"160003"},{"time":0.3667,"name":"160004"},{"time":0.4333,"name":"160005"},{"time":0.5333,"name":"160006"},{"time":0.6,"name":"160007"},{"time":0.7,"name":"160008"},{"time":0.7667,"name":"160009"},{"time":0.8667,"name":"160010"},{"time":0.9667,"name":"160001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action16/skeleton.json.meta b/assets/resources/spine/action16/skeleton.json.meta new file mode 100644 index 0000000..bb1a5f0 --- /dev/null +++ b/assets/resources/spine/action16/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "e5a88596-4ce0-4744-bcb4-1374166a124c", + "importer": "spine", + "textures": [ + "82c04226-b913-447c-9049-9640f64a6afb" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action16/skeleton.png b/assets/resources/spine/action16/skeleton.png new file mode 100644 index 0000000..45e655b Binary files /dev/null and b/assets/resources/spine/action16/skeleton.png differ diff --git a/assets/resources/spine/action16/skeleton.png.meta b/assets/resources/spine/action16/skeleton.png.meta new file mode 100644 index 0000000..a2239cd --- /dev/null +++ b/assets/resources/spine/action16/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "82c04226-b913-447c-9049-9640f64a6afb", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1930, + "height": 184, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "aa02c0de-49bf-475b-a230-54b78232fed1", + "importer": "sprite-frame", + "rawTextureUuid": "82c04226-b913-447c-9049-9640f64a6afb", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1926, + "height": 180, + "rawWidth": 1930, + "rawHeight": 184, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/spine/action18.meta b/assets/resources/spine/action18.meta new file mode 100644 index 0000000..6333a0a --- /dev/null +++ b/assets/resources/spine/action18.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "6a2d416b-2042-4059-8041-d6d9df769ab7", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action18/skeleton.atlas b/assets/resources/spine/action18/skeleton.atlas new file mode 100644 index 0000000..9db709b --- /dev/null +++ b/assets/resources/spine/action18/skeleton.atlas @@ -0,0 +1,34 @@ + +skeleton.png +size: 163,648 +format: RGBA8888 +filter: Linear,Linear +repeat: none +180001 + rotate: true + xy: 2, 2 + size: 171, 157 + orig: 180, 180 + offset: 6, 0 + index: -1 +180002 + rotate: true + xy: 2, 175 + size: 160, 159 + orig: 180, 180 + offset: 0, 0 + index: -1 +180003 + rotate: false + xy: 2, 337 + size: 158, 157 + orig: 180, 180 + offset: 14, 0 + index: -1 +180004 + rotate: true + xy: 2, 496 + size: 150, 159 + orig: 180, 180 + offset: 30, 0 + index: -1 diff --git a/assets/resources/spine/action18/skeleton.atlas.meta b/assets/resources/spine/action18/skeleton.atlas.meta new file mode 100644 index 0000000..74cbe79 --- /dev/null +++ b/assets/resources/spine/action18/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "b9080cea-87a7-4b8b-acdb-85291d4753ec", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action18/skeleton.json b/assets/resources/spine/action18/skeleton.json new file mode 100644 index 0000000..902dae6 --- /dev/null +++ b/assets/resources/spine/action18/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"L2ICnlLy4NObp5XnoRfunQzdc+4","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./18/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"180001","bone":"root","attachment":"180004"}],"skins":[{"name":"default","attachments":{"180001":{"180001":{"width":180,"height":180},"180002":{"width":180,"height":180},"180003":{"width":180,"height":180},"180004":{"width":180,"height":180}}}}],"animations":{"18":{"slots":{"180001":{"attachment":[{"name":"180001"},{"time":0.1,"name":"180002"},{"time":0.3333,"name":"180003"},{"time":0.4333,"name":"180004"},{"time":0.6667,"name":"180001"},{"time":0.7667,"name":"180002"},{"time":1,"name":"180003"},{"time":1.1,"name":"180004"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action18/skeleton.json.meta b/assets/resources/spine/action18/skeleton.json.meta new file mode 100644 index 0000000..47cc9ea --- /dev/null +++ b/assets/resources/spine/action18/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "3ccf5084-85b3-4ebd-821c-51ee8cd40393", + "importer": "spine", + "textures": [ + "f5ca2741-cb4d-444b-97ad-bce46230e175" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action18/skeleton.png b/assets/resources/spine/action18/skeleton.png new file mode 100644 index 0000000..a3636f8 Binary files /dev/null and b/assets/resources/spine/action18/skeleton.png differ diff --git a/assets/resources/spine/action18/skeleton.png.meta b/assets/resources/spine/action18/skeleton.png.meta new file mode 100644 index 0000000..3393fd6 --- /dev/null +++ b/assets/resources/spine/action18/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f5ca2741-cb4d-444b-97ad-bce46230e175", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 163, + "height": 648, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "16ea5d3b-4a49-436c-837c-7ebf4580e866", + "importer": "sprite-frame", + "rawTextureUuid": "f5ca2741-cb4d-444b-97ad-bce46230e175", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 159, + "height": 644, + "rawWidth": 163, + "rawHeight": 648, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/spine/action2.meta b/assets/resources/spine/action2.meta new file mode 100644 index 0000000..73a3d6a --- /dev/null +++ b/assets/resources/spine/action2.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "6f6f41ed-114a-40da-85ba-64b8f750a4e5", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action2/skeleton.atlas b/assets/resources/spine/action2/skeleton.atlas new file mode 100644 index 0000000..cbd8fed --- /dev/null +++ b/assets/resources/spine/action2/skeleton.atlas @@ -0,0 +1,62 @@ + +skeleton.png +size: 1262,140 +format: RGBA8888 +filter: Linear,Linear +repeat: none +20001 + rotate: true + xy: 835, 2 + size: 136, 140 + orig: 180, 180 + offset: 25, 0 + index: -1 +20002 + rotate: true + xy: 692, 4 + size: 134, 141 + orig: 180, 180 + offset: 27, 0 + index: -1 +20003 + rotate: true + xy: 536, 7 + size: 131, 154 + orig: 180, 180 + offset: 30, 0 + index: -1 +20004 + rotate: true + xy: 2, 4 + size: 134, 177 + orig: 180, 180 + offset: 31, 0 + index: -1 +20005 + rotate: true + xy: 181, 8 + size: 130, 179 + orig: 180, 180 + offset: 31, 0 + index: -1 +20006 + rotate: true + xy: 362, 5 + size: 133, 172 + orig: 180, 180 + offset: 28, 0 + index: -1 +20007 + rotate: true + xy: 1119, 5 + size: 133, 141 + orig: 180, 180 + offset: 28, 0 + index: -1 +20008 + rotate: true + xy: 977, 3 + size: 135, 140 + orig: 180, 180 + offset: 26, 0 + index: -1 diff --git a/assets/resources/spine/action2/skeleton.atlas.meta b/assets/resources/spine/action2/skeleton.atlas.meta new file mode 100644 index 0000000..1bbea7f --- /dev/null +++ b/assets/resources/spine/action2/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "75bdece6-83aa-4fcc-8413-ce970c20edc2", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action2/skeleton.json b/assets/resources/spine/action2/skeleton.json new file mode 100644 index 0000000..9c15ee9 --- /dev/null +++ b/assets/resources/spine/action2/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"+hacfdSrTQpJuwvEkdu2GHSawjw","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"D:/默认头像拆件/01拆件/02","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"20001","bone":"root","attachment":"20008"}],"skins":[{"name":"default","attachments":{"20001":{"20001":{"width":180,"height":180},"20002":{"width":180,"height":180},"20003":{"width":180,"height":180},"20004":{"width":180,"height":180},"20005":{"width":180,"height":180},"20006":{"width":180,"height":180},"20007":{"width":180,"height":180},"20008":{"width":180,"height":180}}}}],"animations":{"02":{"slots":{"20001":{"attachment":[{"name":"20001"},{"time":0.1,"name":"20002"},{"time":0.2,"name":"20003"},{"time":0.3,"name":"20004"},{"time":0.4,"name":"20005"},{"time":0.5,"name":"20006"},{"time":0.6,"name":"20007"},{"time":0.7,"name":"20008"},{"time":0.8,"name":"20001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action2/skeleton.json.meta b/assets/resources/spine/action2/skeleton.json.meta new file mode 100644 index 0000000..26cba91 --- /dev/null +++ b/assets/resources/spine/action2/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "6d83525a-4680-4bef-a6da-442590a6b1e7", + "importer": "spine", + "textures": [ + "98504e33-1bb5-4587-8422-562bd3ce1388" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action2/skeleton.png b/assets/resources/spine/action2/skeleton.png new file mode 100644 index 0000000..d283345 Binary files /dev/null and b/assets/resources/spine/action2/skeleton.png differ diff --git a/assets/resources/spine/action2/skeleton.png.meta b/assets/resources/spine/action2/skeleton.png.meta new file mode 100644 index 0000000..a71eb86 --- /dev/null +++ b/assets/resources/spine/action2/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "98504e33-1bb5-4587-8422-562bd3ce1388", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1262, + "height": 140, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "395d6c2a-0bbb-4a46-9a05-fe3f96ae8614", + "importer": "sprite-frame", + "rawTextureUuid": "98504e33-1bb5-4587-8422-562bd3ce1388", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1258, + "height": 136, + "rawWidth": 1262, + "rawHeight": 140, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/spine/action3.meta b/assets/resources/spine/action3.meta new file mode 100644 index 0000000..877ea81 --- /dev/null +++ b/assets/resources/spine/action3.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "b4552068-8abf-422e-99b9-eed547cb63b4", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action3/skeleton.atlas b/assets/resources/spine/action3/skeleton.atlas new file mode 100644 index 0000000..1150c6d --- /dev/null +++ b/assets/resources/spine/action3/skeleton.atlas @@ -0,0 +1,48 @@ + +skeleton.png +size: 535,353 +format: RGBA8888 +filter: Linear,Linear +repeat: none +30001 + rotate: false + xy: 177, 178 + size: 178, 173 + orig: 180, 180 + offset: 2, 0 + index: -1 +30002 + rotate: false + xy: 2, 2 + size: 175, 174 + orig: 180, 180 + offset: 5, 0 + index: -1 +30003 + rotate: true + xy: 2, 179 + size: 172, 173 + orig: 180, 180 + offset: 8, 0 + index: -1 +30004 + rotate: false + xy: 357, 178 + size: 176, 173 + orig: 180, 180 + offset: 4, 0 + index: -1 +30005 + rotate: false + xy: 179, 2 + size: 175, 174 + orig: 180, 180 + offset: 5, 0 + index: -1 +30006 + rotate: false + xy: 356, 2 + size: 176, 174 + orig: 180, 180 + offset: 4, 0 + index: -1 diff --git a/assets/resources/spine/action3/skeleton.atlas.meta b/assets/resources/spine/action3/skeleton.atlas.meta new file mode 100644 index 0000000..644f90a --- /dev/null +++ b/assets/resources/spine/action3/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "a7388285-2129-4a93-9eae-552a1a8103d9", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action3/skeleton.json b/assets/resources/spine/action3/skeleton.json new file mode 100644 index 0000000..0265586 --- /dev/null +++ b/assets/resources/spine/action3/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"VBKvMABk9o5KRjs915fEgMgSWeM","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./03/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"30001","bone":"root","attachment":"30006"}],"skins":[{"name":"default","attachments":{"30001":{"30001":{"width":180,"height":180},"30002":{"width":180,"height":180},"30003":{"width":180,"height":180},"30004":{"width":180,"height":180},"30005":{"width":180,"height":180},"30006":{"width":180,"height":180}}}}],"animations":{"03":{"slots":{"30001":{"attachment":[{"name":"30001"},{"time":0.2,"name":"30002"},{"time":0.3,"name":"30003"},{"time":0.4,"name":"30004"},{"time":0.5,"name":"30002"},{"time":0.6,"name":"30003"},{"time":0.7,"name":"30004"},{"time":0.8,"name":"30005"},{"time":0.9,"name":"30006"},{"time":1,"name":"30001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action3/skeleton.json.meta b/assets/resources/spine/action3/skeleton.json.meta new file mode 100644 index 0000000..135e2c7 --- /dev/null +++ b/assets/resources/spine/action3/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "61c68c22-adc8-4855-a581-c9d3b1d20ce3", + "importer": "spine", + "textures": [ + "16f04375-6e80-4921-8d61-05c92887fd2d" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action3/skeleton.png b/assets/resources/spine/action3/skeleton.png new file mode 100644 index 0000000..66a1b64 Binary files /dev/null and b/assets/resources/spine/action3/skeleton.png differ diff --git a/assets/resources/spine/action3/skeleton.png.meta b/assets/resources/spine/action3/skeleton.png.meta new file mode 100644 index 0000000..f7d3edb --- /dev/null +++ b/assets/resources/spine/action3/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "16f04375-6e80-4921-8d61-05c92887fd2d", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 535, + "height": 353, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "b3cb0919-730c-4045-b60c-04ee91b6bb71", + "importer": "sprite-frame", + "rawTextureUuid": "16f04375-6e80-4921-8d61-05c92887fd2d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 531, + "height": 349, + "rawWidth": 535, + "rawHeight": 353, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/spine/action4.meta b/assets/resources/spine/action4.meta new file mode 100644 index 0000000..2ad305e --- /dev/null +++ b/assets/resources/spine/action4.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "b8a9b08c-95ef-4812-b5d5-c0f720c35c8c", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action4/skeleton.atlas b/assets/resources/spine/action4/skeleton.atlas new file mode 100644 index 0000000..163c369 --- /dev/null +++ b/assets/resources/spine/action4/skeleton.atlas @@ -0,0 +1,62 @@ + +skeleton.png +size: 534,291 +format: RGBA8888 +filter: Linear,Linear +repeat: none +40001 + rotate: true + xy: 2, 147 + size: 142, 175 + orig: 180, 180 + offset: 21, 0 + index: -1 +40002 + rotate: true + xy: 179, 147 + size: 142, 174 + orig: 180, 180 + offset: 21, 0 + index: -1 +40003 + rotate: true + xy: 355, 147 + size: 142, 175 + orig: 180, 180 + offset: 21, 0 + index: -1 +40005 + rotate: true + xy: 355, 147 + size: 142, 175 + orig: 180, 180 + offset: 21, 0 + index: -1 +40004 + rotate: true + xy: 2, 3 + size: 142, 178 + orig: 180, 180 + offset: 21, 0 + index: -1 +40006 + rotate: true + xy: 358, 2 + size: 143, 174 + orig: 180, 180 + offset: 20, 0 + index: -1 +40008 + rotate: true + xy: 358, 2 + size: 143, 174 + orig: 180, 180 + offset: 20, 0 + index: -1 +40007 + rotate: true + xy: 182, 3 + size: 142, 174 + orig: 180, 180 + offset: 21, 0 + index: -1 diff --git a/assets/resources/spine/action4/skeleton.atlas.meta b/assets/resources/spine/action4/skeleton.atlas.meta new file mode 100644 index 0000000..865cc3d --- /dev/null +++ b/assets/resources/spine/action4/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "aad100df-fe31-46ca-8fb1-cd62c3baa6cb", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action4/skeleton.json b/assets/resources/spine/action4/skeleton.json new file mode 100644 index 0000000..9ab7541 --- /dev/null +++ b/assets/resources/spine/action4/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"vKz5bAfGOB7h97GVC0dS6DLJYe8","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./04/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"40001","bone":"root","attachment":"40001"}],"skins":[{"name":"default","attachments":{"40001":{"40001":{"width":180,"height":180},"40002":{"width":180,"height":180},"40003":{"width":180,"height":180},"40004":{"width":180,"height":180},"40005":{"width":180,"height":180},"40006":{"width":180,"height":180},"40007":{"width":180,"height":180},"40008":{"width":180,"height":180}}}}],"animations":{"04":{"slots":{"40001":{"attachment":[{"time":0.2,"name":"40002"},{"time":0.3,"name":"40003"},{"time":0.4,"name":"40004"},{"time":0.5,"name":"40005"},{"time":0.6,"name":"40006"},{"time":0.7,"name":"40007"},{"time":0.8,"name":"40008"},{"time":0.9,"name":"40001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action4/skeleton.json.meta b/assets/resources/spine/action4/skeleton.json.meta new file mode 100644 index 0000000..9120947 --- /dev/null +++ b/assets/resources/spine/action4/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "721d1a74-bafa-4b0e-89b0-6c8504170801", + "importer": "spine", + "textures": [ + "5f8ffd50-eb7e-465c-8555-a3882c9f8dea" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action4/skeleton.png b/assets/resources/spine/action4/skeleton.png new file mode 100644 index 0000000..6e32e8d Binary files /dev/null and b/assets/resources/spine/action4/skeleton.png differ diff --git a/assets/resources/spine/action4/skeleton.png.meta b/assets/resources/spine/action4/skeleton.png.meta new file mode 100644 index 0000000..d8e51e2 --- /dev/null +++ b/assets/resources/spine/action4/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5f8ffd50-eb7e-465c-8555-a3882c9f8dea", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 534, + "height": 291, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "8f0aac8b-0077-421f-b5af-ef00c4c4f904", + "importer": "sprite-frame", + "rawTextureUuid": "5f8ffd50-eb7e-465c-8555-a3882c9f8dea", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 530, + "height": 287, + "rawWidth": 534, + "rawHeight": 291, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/spine/action5.meta b/assets/resources/spine/action5.meta new file mode 100644 index 0000000..2163fab --- /dev/null +++ b/assets/resources/spine/action5.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "19983066-85a2-48cf-9040-30024602ccdf", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action5/skeleton.atlas b/assets/resources/spine/action5/skeleton.atlas new file mode 100644 index 0000000..988c830 --- /dev/null +++ b/assets/resources/spine/action5/skeleton.atlas @@ -0,0 +1,48 @@ + +skeleton.png +size: 696,183 +format: RGBA8888 +filter: Linear,Linear +repeat: none +50001 + rotate: false + xy: 282, 4 + size: 136, 177 + orig: 180, 180 + offset: 22, 0 + index: -1 +50006 + rotate: false + xy: 282, 4 + size: 136, 177 + orig: 180, 180 + offset: 22, 0 + index: -1 +50002 + rotate: false + xy: 143, 3 + size: 137, 178 + orig: 180, 180 + offset: 20, 0 + index: -1 +50003 + rotate: false + xy: 2, 2 + size: 139, 179 + orig: 180, 180 + offset: 17, 0 + index: -1 +50004 + rotate: false + xy: 420, 4 + size: 136, 177 + orig: 180, 180 + offset: 20, 0 + index: -1 +50005 + rotate: false + xy: 558, 4 + size: 136, 177 + orig: 180, 180 + offset: 21, 0 + index: -1 diff --git a/assets/resources/spine/action5/skeleton.atlas.meta b/assets/resources/spine/action5/skeleton.atlas.meta new file mode 100644 index 0000000..df810d7 --- /dev/null +++ b/assets/resources/spine/action5/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "0add93c1-1ce1-4055-ae6b-d801f9ad889a", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action5/skeleton.json b/assets/resources/spine/action5/skeleton.json new file mode 100644 index 0000000..a65ef42 --- /dev/null +++ b/assets/resources/spine/action5/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"MfoiWUpY3UYwlWpqYpbujCiKWJo","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./05/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"50001","bone":"root","attachment":"50006"}],"skins":[{"name":"default","attachments":{"50001":{"50001":{"width":180,"height":180},"50002":{"width":180,"height":180},"50003":{"width":180,"height":180},"50004":{"width":180,"height":180},"50005":{"width":180,"height":180},"50006":{"width":180,"height":180}}}}],"animations":{"05":{"slots":{"50001":{"attachment":[{"name":"50001"},{"time":0.1,"name":"50002"},{"time":0.2,"name":"50003"},{"time":0.3,"name":"50004"},{"time":0.4,"name":"50005"},{"time":0.5,"name":"50006"},{"time":0.6,"name":"50001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action5/skeleton.json.meta b/assets/resources/spine/action5/skeleton.json.meta new file mode 100644 index 0000000..7010358 --- /dev/null +++ b/assets/resources/spine/action5/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "40ee67ca-a2cc-44a3-9361-a3a7026b04b3", + "importer": "spine", + "textures": [ + "8b3c9591-f074-4f5d-9e65-60c7acb04345" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action5/skeleton.png b/assets/resources/spine/action5/skeleton.png new file mode 100644 index 0000000..eab2c43 Binary files /dev/null and b/assets/resources/spine/action5/skeleton.png differ diff --git a/assets/resources/spine/action5/skeleton.png.meta b/assets/resources/spine/action5/skeleton.png.meta new file mode 100644 index 0000000..7f285c8 --- /dev/null +++ b/assets/resources/spine/action5/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "8b3c9591-f074-4f5d-9e65-60c7acb04345", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 696, + "height": 183, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "c87a21ac-7156-4961-b914-5b19c56d6f31", + "importer": "sprite-frame", + "rawTextureUuid": "8b3c9591-f074-4f5d-9e65-60c7acb04345", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 692, + "height": 179, + "rawWidth": 696, + "rawHeight": 183, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/spine/action6.meta b/assets/resources/spine/action6.meta new file mode 100644 index 0000000..ef19e6d --- /dev/null +++ b/assets/resources/spine/action6.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "c056ef3d-6fb0-489c-a92d-6beaf5fcb8b1", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action6/skeleton.atlas b/assets/resources/spine/action6/skeleton.atlas new file mode 100644 index 0000000..e0da177 --- /dev/null +++ b/assets/resources/spine/action6/skeleton.atlas @@ -0,0 +1,76 @@ + +skeleton.png +size: 362,724 +format: RGBA8888 +filter: Linear,Linear +repeat: none +60001 + rotate: true + xy: 2, 439 + size: 141, 173 + orig: 180, 180 + offset: 19, 0 + index: -1 +60002 + rotate: true + xy: 2, 294 + size: 143, 174 + orig: 180, 180 + offset: 18, 0 + index: -1 +60003 + rotate: true + xy: 178, 294 + size: 143, 178 + orig: 180, 180 + offset: 18, 0 + index: -1 +60004 + rotate: true + xy: 179, 148 + size: 144, 178 + orig: 180, 180 + offset: 18, 0 + index: -1 +60005 + rotate: true + xy: 2, 2 + size: 144, 179 + orig: 180, 180 + offset: 18, 0 + index: -1 +60006 + rotate: true + xy: 183, 2 + size: 144, 177 + orig: 180, 180 + offset: 18, 0 + index: -1 +60007 + rotate: true + xy: 2, 149 + size: 143, 175 + orig: 180, 180 + offset: 18, 0 + index: -1 +60008 + rotate: true + xy: 177, 439 + size: 141, 175 + orig: 180, 180 + offset: 18, 0 + index: -1 +60009 + rotate: true + xy: 2, 582 + size: 140, 175 + orig: 180, 180 + offset: 19, 0 + index: -1 +60010 + rotate: true + xy: 179, 582 + size: 140, 175 + orig: 180, 180 + offset: 19, 0 + index: -1 diff --git a/assets/resources/spine/action6/skeleton.atlas.meta b/assets/resources/spine/action6/skeleton.atlas.meta new file mode 100644 index 0000000..87dcb42 --- /dev/null +++ b/assets/resources/spine/action6/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "ff647d3a-f879-40d0-8019-32321226d2aa", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action6/skeleton.json b/assets/resources/spine/action6/skeleton.json new file mode 100644 index 0000000..88a2e45 --- /dev/null +++ b/assets/resources/spine/action6/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"YEOdA9axyF8N45PG17N4U39iiGg","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./06/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"60001","bone":"root","attachment":"60010"}],"skins":[{"name":"default","attachments":{"60001":{"60001":{"width":180,"height":180},"60002":{"width":180,"height":180},"60003":{"width":180,"height":180},"60004":{"width":180,"height":180},"60005":{"width":180,"height":180},"60006":{"width":180,"height":180},"60007":{"width":180,"height":180},"60008":{"width":180,"height":180},"60009":{"width":180,"height":180},"60010":{"width":180,"height":180}}}}],"animations":{"06":{"slots":{"60001":{"attachment":[{"name":"60001"},{"time":0.0667,"name":"60002"},{"time":0.1333,"name":"60003"},{"time":0.2,"name":"60004"},{"time":0.2667,"name":"60005"},{"time":0.3333,"name":"60006"},{"time":0.4,"name":"60007"},{"time":0.4667,"name":"60008"},{"time":0.5333,"name":"60009"},{"time":0.6,"name":"60010"},{"time":0.6667,"name":"60001"},{"time":0.7333,"name":"60002"},{"time":0.8,"name":"60003"},{"time":0.8667,"name":"60004"},{"time":0.9333,"name":"60005"},{"time":1,"name":"60006"},{"time":1.0667,"name":"60007"},{"time":1.1333,"name":"60008"},{"time":1.2,"name":"60009"},{"time":1.2667,"name":"60010"},{"time":1.3333,"name":"60001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action6/skeleton.json.meta b/assets/resources/spine/action6/skeleton.json.meta new file mode 100644 index 0000000..77db871 --- /dev/null +++ b/assets/resources/spine/action6/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "2780e8db-4e3f-4340-996e-f02a8d0f1419", + "importer": "spine", + "textures": [ + "5ba24f95-57ee-4f9e-9ae5-cb0fde8880b6" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action6/skeleton.png b/assets/resources/spine/action6/skeleton.png new file mode 100644 index 0000000..02a920d Binary files /dev/null and b/assets/resources/spine/action6/skeleton.png differ diff --git a/assets/resources/spine/action6/skeleton.png.meta b/assets/resources/spine/action6/skeleton.png.meta new file mode 100644 index 0000000..ba15778 --- /dev/null +++ b/assets/resources/spine/action6/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5ba24f95-57ee-4f9e-9ae5-cb0fde8880b6", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 362, + "height": 724, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "3ef2e275-a6de-417d-9ed7-e30ef414f814", + "importer": "sprite-frame", + "rawTextureUuid": "5ba24f95-57ee-4f9e-9ae5-cb0fde8880b6", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 358, + "height": 720, + "rawWidth": 362, + "rawHeight": 724, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/spine/action7.meta b/assets/resources/spine/action7.meta new file mode 100644 index 0000000..059b2cd --- /dev/null +++ b/assets/resources/spine/action7.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "f44ddb0a-76b4-40c7-ae27-18d5140fa288", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action7/skeleton.atlas b/assets/resources/spine/action7/skeleton.atlas new file mode 100644 index 0000000..d55e3c3 --- /dev/null +++ b/assets/resources/spine/action7/skeleton.atlas @@ -0,0 +1,48 @@ + +skeleton.png +size: 1045,156 +format: RGBA8888 +filter: Linear,Linear +repeat: none +70001 + rotate: true + xy: 543, 2 + size: 152, 174 + orig: 180, 180 + offset: 18, 0 + index: -1 +70002 + rotate: true + xy: 364, 3 + size: 151, 177 + orig: 180, 180 + offset: 18, 0 + index: -1 +70003 + rotate: true + xy: 2, 2 + size: 152, 180 + orig: 180, 180 + offset: 18, 0 + index: -1 +70004 + rotate: true + xy: 184, 3 + size: 151, 178 + orig: 180, 180 + offset: 20, 0 + index: -1 +70005 + rotate: true + xy: 719, 3 + size: 151, 164 + orig: 180, 180 + offset: 20, 0 + index: -1 +70006 + rotate: true + xy: 885, 3 + size: 151, 158 + orig: 180, 180 + offset: 20, 0 + index: -1 diff --git a/assets/resources/spine/action7/skeleton.atlas.meta b/assets/resources/spine/action7/skeleton.atlas.meta new file mode 100644 index 0000000..660a980 --- /dev/null +++ b/assets/resources/spine/action7/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "c1c736b6-9ece-4d37-8d67-ef9fd3e95e68", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action7/skeleton.json b/assets/resources/spine/action7/skeleton.json new file mode 100644 index 0000000..f62e3fb --- /dev/null +++ b/assets/resources/spine/action7/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"DppAA/Oj+faHitCqIZ3X0B6l6/c","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./07/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"70001","bone":"root","attachment":"70006"}],"skins":[{"name":"default","attachments":{"70001":{"70001":{"width":180,"height":180},"70002":{"width":180,"height":180},"70003":{"width":180,"height":180},"70004":{"width":180,"height":180},"70005":{"width":180,"height":180},"70006":{"width":180,"height":180}}}}],"animations":{"07":{"slots":{"70001":{"attachment":[{"name":"70001"},{"time":0.1,"name":"70002"},{"time":0.2,"name":"70003"},{"time":0.3,"name":"70004"},{"time":0.4,"name":"70005"},{"time":0.5,"name":"70006"},{"time":0.6,"name":"70001"},{"time":0.7,"name":"70002"},{"time":0.8,"name":"70003"},{"time":0.9333,"name":"70004"},{"time":1.0333,"name":"70005"},{"time":1.1333,"name":"70006"},{"time":1.2333,"name":"70001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action7/skeleton.json.meta b/assets/resources/spine/action7/skeleton.json.meta new file mode 100644 index 0000000..3a2a083 --- /dev/null +++ b/assets/resources/spine/action7/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "0ef7549d-0dd1-4fd1-99c4-d0cbba88b64c", + "importer": "spine", + "textures": [ + "60cf0fa9-6eca-4b61-b568-7a88f935bceb" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action7/skeleton.png b/assets/resources/spine/action7/skeleton.png new file mode 100644 index 0000000..b834d17 Binary files /dev/null and b/assets/resources/spine/action7/skeleton.png differ diff --git a/assets/resources/spine/action7/skeleton.png.meta b/assets/resources/spine/action7/skeleton.png.meta new file mode 100644 index 0000000..4beadec --- /dev/null +++ b/assets/resources/spine/action7/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "60cf0fa9-6eca-4b61-b568-7a88f935bceb", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1045, + "height": 156, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "278d2dd2-41a8-4bd7-b6be-2d8519f0c6d7", + "importer": "sprite-frame", + "rawTextureUuid": "60cf0fa9-6eca-4b61-b568-7a88f935bceb", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1041, + "height": 152, + "rawWidth": 1045, + "rawHeight": 156, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/spine/action9.meta b/assets/resources/spine/action9.meta new file mode 100644 index 0000000..9fe9069 --- /dev/null +++ b/assets/resources/spine/action9.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "a5ac1945-1cbb-4fcb-adb5-cb03a46aeec7", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action9/9.spine b/assets/resources/spine/action9/9.spine new file mode 100644 index 0000000..bcc4916 Binary files /dev/null and b/assets/resources/spine/action9/9.spine differ diff --git a/assets/resources/spine/action9/9.spine.meta b/assets/resources/spine/action9/9.spine.meta new file mode 100644 index 0000000..12f34ef --- /dev/null +++ b/assets/resources/spine/action9/9.spine.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "825913ed-dee8-487b-acdc-43cb9cee4135", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action9/skeleton.atlas b/assets/resources/spine/action9/skeleton.atlas new file mode 100644 index 0000000..bb52d5e --- /dev/null +++ b/assets/resources/spine/action9/skeleton.atlas @@ -0,0 +1,55 @@ + +skeleton.png +size: 415,363 +format: RGBA8888 +filter: Linear,Linear +repeat: none +80001 + rotate: true + xy: 239, 13 + size: 114, 167 + orig: 180, 180 + offset: 32, 0 + index: -1 +80002 + rotate: true + xy: 239, 246 + size: 115, 174 + orig: 180, 180 + offset: 30, 0 + index: -1 +80003 + rotate: false + xy: 2, 183 + size: 118, 178 + orig: 180, 180 + offset: 27, 0 + index: -1 +80004 + rotate: false + xy: 2, 2 + size: 116, 179 + orig: 180, 180 + offset: 29, 0 + index: -1 +80005 + rotate: false + xy: 120, 5 + size: 117, 176 + orig: 180, 180 + offset: 28, 0 + index: -1 +80006 + rotate: false + xy: 122, 186 + size: 115, 175 + orig: 180, 180 + offset: 29, 0 + index: -1 +80007 + rotate: true + xy: 239, 129 + size: 115, 174 + orig: 180, 180 + offset: 30, 0 + index: -1 diff --git a/assets/resources/spine/action9/skeleton.atlas.meta b/assets/resources/spine/action9/skeleton.atlas.meta new file mode 100644 index 0000000..69df7a5 --- /dev/null +++ b/assets/resources/spine/action9/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "16f3791e-dc5e-45f4-a006-98bac582e0bc", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action9/skeleton.json b/assets/resources/spine/action9/skeleton.json new file mode 100644 index 0000000..43f6888 --- /dev/null +++ b/assets/resources/spine/action9/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"sYsXXzfp6n/R2ru0AgFZwhXvKRA","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./09/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"80001","bone":"root","attachment":"80007"},{"name":"80002","bone":"root"},{"name":"80003","bone":"root"},{"name":"80004","bone":"root"},{"name":"80005","bone":"root"},{"name":"80006","bone":"root"},{"name":"80007","bone":"root"}],"skins":[{"name":"default","attachments":{"80001":{"80001":{"width":180,"height":180},"80002":{"width":180,"height":180},"80003":{"width":180,"height":180},"80004":{"width":180,"height":180},"80005":{"width":180,"height":180},"80006":{"width":180,"height":180},"80007":{"width":180,"height":180}}}}],"animations":{"9":{"slots":{"80001":{"attachment":[{"name":"80001"},{"time":0.2,"name":"80002"},{"time":0.3,"name":"80003"},{"time":0.4,"name":"80004"},{"time":0.5,"name":"80005"},{"time":0.6,"name":"80006"},{"time":0.7,"name":"80007"},{"time":0.8,"name":"80001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action9/skeleton.json.meta b/assets/resources/spine/action9/skeleton.json.meta new file mode 100644 index 0000000..9235b27 --- /dev/null +++ b/assets/resources/spine/action9/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "47acaaac-d654-4e92-a7b0-c3358bcb7c01", + "importer": "spine", + "textures": [ + "fd8630a0-c72e-4152-98e6-11d546c84959" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action9/skeleton.png b/assets/resources/spine/action9/skeleton.png new file mode 100644 index 0000000..20c2390 Binary files /dev/null and b/assets/resources/spine/action9/skeleton.png differ diff --git a/assets/resources/spine/action9/skeleton.png.meta b/assets/resources/spine/action9/skeleton.png.meta new file mode 100644 index 0000000..896f8c3 --- /dev/null +++ b/assets/resources/spine/action9/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "fd8630a0-c72e-4152-98e6-11d546c84959", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 415, + "height": 363, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "4b84a81f-f403-4704-b5d1-c7a0e7b1c3b6", + "importer": "sprite-frame", + "rawTextureUuid": "fd8630a0-c72e-4152-98e6-11d546c84959", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 411, + "height": 359, + "rawWidth": 415, + "rawHeight": 363, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/settings/project.json b/settings/project.json index 9434f6d..4e640ba 100644 --- a/settings/project.json +++ b/settings/project.json @@ -1,5 +1,5 @@ { - "last-module-event-record-time": 1768881764145, + "last-module-event-record-time": 1769501608729, "group-list": [ "default", "Map"