尝试 增加头像
|
|
@ -142,7 +142,7 @@ export default class JiaZai extends cc.Component {
|
||||||
// }
|
// }
|
||||||
// });
|
// });
|
||||||
|
|
||||||
// this.createIcon();
|
this.createIcon();
|
||||||
|
|
||||||
|
|
||||||
cc.fx.GameConfig.GM_INFO.sceneValue = "HomeScene";
|
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++) {
|
for (let i = 0; i < iconCount; i++) {
|
||||||
let iconNode = cc.instantiate(this.icon);
|
let iconNode = cc.instantiate(this.icon);
|
||||||
iconNode.parent = this.node.getChildByName("action");
|
iconNode.parent = this.node.getChildByName("action");
|
||||||
|
this.loadSpineSimple(iconNode, "action2");
|
||||||
// 计算每个icon的位置
|
// 计算每个icon的位置
|
||||||
let position: cc.Vec2;
|
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() {
|
onGames() {
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
|
|
|
||||||
|
|
@ -7,97 +7,97 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 15,
|
"level": 15,
|
||||||
"name": "daoju1",
|
"name": "daoju0",
|
||||||
"tips": "叠加方块第一次出现"
|
"tips": "叠加方块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 25,
|
"level": 25,
|
||||||
"name": "daoju2",
|
"name": "daoju0",
|
||||||
"tips": "冻结方块第一次出现"
|
"tips": "冻结方块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 35,
|
"level": 35,
|
||||||
"name": "daoju3",
|
"name": "daoju0",
|
||||||
"tips": "星星方块第一次出现"
|
"tips": "星星方块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 44,
|
"level": 44,
|
||||||
"name": "daoju4",
|
"name": "daoju0",
|
||||||
"tips": "钥匙锁方块第一次出现"
|
"tips": "钥匙锁方块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 52,
|
"level": 52,
|
||||||
"name": "daoju5",
|
"name": "daoju0",
|
||||||
"tips": "粘合方块第一次出现"
|
"tips": "粘合方块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 61,
|
"level": 61,
|
||||||
"name": "daoju6",
|
"name": "daoju0",
|
||||||
"tips": "开关门第一次出现"
|
"tips": "开关门第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 70,
|
"level": 70,
|
||||||
"name": "daoju7",
|
"name": "daoju0",
|
||||||
"tips": "炸弹方块第一次出现"
|
"tips": "炸弹方块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 120,
|
"level": 120,
|
||||||
"name": "daoju8",
|
"name": "daoju0",
|
||||||
"tips": "单色通过地块第一次出现"
|
"tips": "单色通过地块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 170,
|
"level": 170,
|
||||||
"name": "daoju9",
|
"name": "daoju0",
|
||||||
"tips": "冻结门第一次出现"
|
"tips": "冻结门第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 375,
|
"level": 375,
|
||||||
"name": "daoju10",
|
"name": "daoju0",
|
||||||
"tips": "果酱门第一次出现"
|
"tips": "果酱门第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 396,
|
"level": 396,
|
||||||
"name": "daoju11",
|
"name": "daoju0",
|
||||||
"tips": "灰色不可消除方块第一次出现"
|
"tips": "灰色不可消除方块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 464,
|
"level": 464,
|
||||||
"name": "daoju12",
|
"name": "daoju0",
|
||||||
"tips": "木板块第一次出现"
|
"tips": "木板块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 511,
|
"level": 511,
|
||||||
"name": "daoju13",
|
"name": "daoju0",
|
||||||
"tips": "变色门第一次出现"
|
"tips": "变色门第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 580,
|
"level": 580,
|
||||||
"name": "daoju14",
|
"name": "daoju0",
|
||||||
"tips": "带锁的门第一次出现"
|
"tips": "带锁的门第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 673,
|
"level": 673,
|
||||||
"name": "daoju15",
|
"name": "daoju0",
|
||||||
"tips": "伸缩门第一次出现"
|
"tips": "伸缩门第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 734,
|
"level": 734,
|
||||||
"name": "daoju16",
|
"name": "daoju0",
|
||||||
"tips": "问号块第一次出现"
|
"tips": "问号块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 761,
|
"level": 761,
|
||||||
"name": "daoju17",
|
"name": "daoju0",
|
||||||
"tips": "定次粘合块第一次出现"
|
"tips": "定次粘合块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 849,
|
"level": 849,
|
||||||
"name": "daoju18",
|
"name": "daoju0",
|
||||||
"tips": "定次炸弹块第一次出现"
|
"tips": "定次炸弹块第一次出现"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"level": 903,
|
"level": 903,
|
||||||
"name": "daoju19",
|
"name": "daoju0",
|
||||||
"tips": "铁皮方块第一次出现"
|
"tips": "铁皮方块第一次出现"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 48 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 23 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 30 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 36 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 36 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 33 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 51 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 35 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 47 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 47 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 33 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 45 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 30 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 34 KiB |
|
|
@ -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": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
13
assets/resources/spine.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
13
assets/resources/spine/action1.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
48
assets/resources/spine/action1/skeleton.atlas
Normal file
|
|
@ -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
|
||||||
6
assets/resources/spine/action1/skeleton.atlas.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"ver": "1.0.3",
|
||||||
|
"uuid": "94be2a73-bedc-47ea-87e0-7b8de4a2fe88",
|
||||||
|
"importer": "asset",
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
1
assets/resources/spine/action1/skeleton.json
Normal file
|
|
@ -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":{}}}
|
||||||
10
assets/resources/spine/action1/skeleton.json.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
BIN
assets/resources/spine/action1/skeleton.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"ver": "2.3.7",
|
"ver": "2.3.7",
|
||||||
"uuid": "ca324a72-c9a6-4539-be8a-9db36b7f4952",
|
"uuid": "a5f2b452-d4ae-446b-b58c-18a96343fab1",
|
||||||
"importer": "texture",
|
"importer": "texture",
|
||||||
"type": "sprite",
|
"type": "sprite",
|
||||||
"wrapMode": "clamp",
|
"wrapMode": "clamp",
|
||||||
|
|
@ -8,26 +8,26 @@
|
||||||
"premultiplyAlpha": false,
|
"premultiplyAlpha": false,
|
||||||
"genMipmaps": false,
|
"genMipmaps": false,
|
||||||
"packable": true,
|
"packable": true,
|
||||||
"width": 733,
|
"width": 910,
|
||||||
"height": 750,
|
"height": 181,
|
||||||
"platformSettings": {},
|
"platformSettings": {},
|
||||||
"subMetas": {
|
"subMetas": {
|
||||||
"daoju11": {
|
"skeleton": {
|
||||||
"ver": "1.0.6",
|
"ver": "1.0.6",
|
||||||
"uuid": "dc936637-2ef4-40b6-95a3-f67a000803f7",
|
"uuid": "d047e66d-3ac7-43dc-b1d6-4c39c254067c",
|
||||||
"importer": "sprite-frame",
|
"importer": "sprite-frame",
|
||||||
"rawTextureUuid": "ca324a72-c9a6-4539-be8a-9db36b7f4952",
|
"rawTextureUuid": "a5f2b452-d4ae-446b-b58c-18a96343fab1",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 27,
|
"trimX": 2,
|
||||||
"trimY": 0,
|
"trimY": 2,
|
||||||
"width": 679,
|
"width": 906,
|
||||||
"height": 750,
|
"height": 177,
|
||||||
"rawWidth": 733,
|
"rawWidth": 910,
|
||||||
"rawHeight": 750,
|
"rawHeight": 181,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
13
assets/resources/spine/action11.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
62
assets/resources/spine/action11/skeleton.atlas
Normal file
|
|
@ -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
|
||||||
6
assets/resources/spine/action11/skeleton.atlas.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"ver": "1.0.3",
|
||||||
|
"uuid": "17f4dff8-676f-40fe-8ddc-7eeb83e68ba7",
|
||||||
|
"importer": "asset",
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
1
assets/resources/spine/action11/skeleton.json
Normal file
|
|
@ -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":{}}}
|
||||||
10
assets/resources/spine/action11/skeleton.json.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
BIN
assets/resources/spine/action11/skeleton.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"ver": "2.3.7",
|
"ver": "2.3.7",
|
||||||
"uuid": "27a9dcd8-e242-48f5-ad60-d90ceaa5fda9",
|
"uuid": "c26b8ce4-6364-4be7-9fec-b6b52fa19df9",
|
||||||
"importer": "texture",
|
"importer": "texture",
|
||||||
"type": "sprite",
|
"type": "sprite",
|
||||||
"wrapMode": "clamp",
|
"wrapMode": "clamp",
|
||||||
|
|
@ -8,26 +8,26 @@
|
||||||
"premultiplyAlpha": false,
|
"premultiplyAlpha": false,
|
||||||
"genMipmaps": false,
|
"genMipmaps": false,
|
||||||
"packable": true,
|
"packable": true,
|
||||||
"width": 739,
|
"width": 357,
|
||||||
"height": 786,
|
"height": 507,
|
||||||
"platformSettings": {},
|
"platformSettings": {},
|
||||||
"subMetas": {
|
"subMetas": {
|
||||||
"daoju13": {
|
"skeleton": {
|
||||||
"ver": "1.0.6",
|
"ver": "1.0.6",
|
||||||
"uuid": "b1c0c738-9960-4728-9d81-13a752f2684d",
|
"uuid": "127022e2-c27d-4873-9742-3a0dc4e785c6",
|
||||||
"importer": "sprite-frame",
|
"importer": "sprite-frame",
|
||||||
"rawTextureUuid": "27a9dcd8-e242-48f5-ad60-d90ceaa5fda9",
|
"rawTextureUuid": "c26b8ce4-6364-4be7-9fec-b6b52fa19df9",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 2,
|
||||||
"trimY": 0,
|
"trimY": 2,
|
||||||
"width": 739,
|
"width": 353,
|
||||||
"height": 786,
|
"height": 503,
|
||||||
"rawWidth": 739,
|
"rawWidth": 357,
|
||||||
"rawHeight": 786,
|
"rawHeight": 507,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
13
assets/resources/spine/action13.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
62
assets/resources/spine/action13/skeleton.atlas
Normal file
|
|
@ -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
|
||||||
6
assets/resources/spine/action13/skeleton.atlas.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"ver": "1.0.3",
|
||||||
|
"uuid": "0eb8928f-7db0-4863-aa5f-e65d6b32ebd3",
|
||||||
|
"importer": "asset",
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
1
assets/resources/spine/action13/skeleton.json
Normal file
|
|
@ -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":{}}}
|
||||||
10
assets/resources/spine/action13/skeleton.json.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
BIN
assets/resources/spine/action13/skeleton.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
38
assets/resources/spine/action13/skeleton.png.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
assets/resources/spine/action14.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
48
assets/resources/spine/action14/skeleton.atlas
Normal file
|
|
@ -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
|
||||||
6
assets/resources/spine/action14/skeleton.atlas.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"ver": "1.0.3",
|
||||||
|
"uuid": "c127f3a5-659d-4132-b770-680c2e8a461a",
|
||||||
|
"importer": "asset",
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
1
assets/resources/spine/action14/skeleton.json
Normal file
|
|
@ -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":{}}}
|
||||||
10
assets/resources/spine/action14/skeleton.json.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
BIN
assets/resources/spine/action14/skeleton.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"ver": "2.3.7",
|
"ver": "2.3.7",
|
||||||
"uuid": "9c437e8d-6a67-483f-829b-859d339ee270",
|
"uuid": "128d44ed-3bec-4e0b-bfe4-8d9f9cb6df92",
|
||||||
"importer": "texture",
|
"importer": "texture",
|
||||||
"type": "sprite",
|
"type": "sprite",
|
||||||
"wrapMode": "clamp",
|
"wrapMode": "clamp",
|
||||||
|
|
@ -8,26 +8,26 @@
|
||||||
"premultiplyAlpha": false,
|
"premultiplyAlpha": false,
|
||||||
"genMipmaps": false,
|
"genMipmaps": false,
|
||||||
"packable": true,
|
"packable": true,
|
||||||
"width": 664,
|
"width": 444,
|
||||||
"height": 750,
|
"height": 326,
|
||||||
"platformSettings": {},
|
"platformSettings": {},
|
||||||
"subMetas": {
|
"subMetas": {
|
||||||
"daoju12": {
|
"skeleton": {
|
||||||
"ver": "1.0.6",
|
"ver": "1.0.6",
|
||||||
"uuid": "44f93c2f-a775-4468-a0c9-ec58e9acd9e8",
|
"uuid": "a87f3ed9-204a-4aee-9750-f16b1410d843",
|
||||||
"importer": "sprite-frame",
|
"importer": "sprite-frame",
|
||||||
"rawTextureUuid": "9c437e8d-6a67-483f-829b-859d339ee270",
|
"rawTextureUuid": "128d44ed-3bec-4e0b-bfe4-8d9f9cb6df92",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 2,
|
||||||
"trimY": 0,
|
"trimY": 2,
|
||||||
"width": 664,
|
"width": 440,
|
||||||
"height": 750,
|
"height": 322,
|
||||||
"rawWidth": 664,
|
"rawWidth": 444,
|
||||||
"rawHeight": 750,
|
"rawHeight": 326,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
13
assets/resources/spine/action15.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
55
assets/resources/spine/action15/skeleton.atlas
Normal file
|
|
@ -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
|
||||||
6
assets/resources/spine/action15/skeleton.atlas.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"ver": "1.0.3",
|
||||||
|
"uuid": "bb2ef854-6b5a-4f80-a7ab-146fb0c0ff01",
|
||||||
|
"importer": "asset",
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
1
assets/resources/spine/action15/skeleton.json
Normal file
|
|
@ -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":{}}}
|
||||||
10
assets/resources/spine/action15/skeleton.json.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
BIN
assets/resources/spine/action15/skeleton.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"ver": "2.3.7",
|
"ver": "2.3.7",
|
||||||
"uuid": "56bb68cb-b9e7-4e96-b7de-2a974e468856",
|
"uuid": "18a49406-f38e-4095-a6d8-f37bc30f45d4",
|
||||||
"importer": "texture",
|
"importer": "texture",
|
||||||
"type": "sprite",
|
"type": "sprite",
|
||||||
"wrapMode": "clamp",
|
"wrapMode": "clamp",
|
||||||
|
|
@ -8,26 +8,26 @@
|
||||||
"premultiplyAlpha": false,
|
"premultiplyAlpha": false,
|
||||||
"genMipmaps": false,
|
"genMipmaps": false,
|
||||||
"packable": true,
|
"packable": true,
|
||||||
"width": 689,
|
"width": 925,
|
||||||
"height": 528,
|
"height": 183,
|
||||||
"platformSettings": {},
|
"platformSettings": {},
|
||||||
"subMetas": {
|
"subMetas": {
|
||||||
"daoju10": {
|
"skeleton": {
|
||||||
"ver": "1.0.6",
|
"ver": "1.0.6",
|
||||||
"uuid": "2692332a-ba65-4e13-bb54-40af830a664f",
|
"uuid": "ff1fd55d-68ea-45a0-b199-506d995d93fa",
|
||||||
"importer": "sprite-frame",
|
"importer": "sprite-frame",
|
||||||
"rawTextureUuid": "56bb68cb-b9e7-4e96-b7de-2a974e468856",
|
"rawTextureUuid": "18a49406-f38e-4095-a6d8-f37bc30f45d4",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 2,
|
||||||
"trimY": 0,
|
"trimY": 2,
|
||||||
"width": 689,
|
"width": 921,
|
||||||
"height": 528,
|
"height": 179,
|
||||||
"rawWidth": 689,
|
"rawWidth": 925,
|
||||||
"rawHeight": 528,
|
"rawHeight": 183,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
13
assets/resources/spine/action16.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
90
assets/resources/spine/action16/skeleton.atlas
Normal file
|
|
@ -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
|
||||||
6
assets/resources/spine/action16/skeleton.atlas.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"ver": "1.0.3",
|
||||||
|
"uuid": "31c01dbb-37e1-4cc6-9457-a30002c8ff53",
|
||||||
|
"importer": "asset",
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
1
assets/resources/spine/action16/skeleton.json
Normal file
|
|
@ -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":{}}}
|
||||||
10
assets/resources/spine/action16/skeleton.json.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
BIN
assets/resources/spine/action16/skeleton.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
38
assets/resources/spine/action16/skeleton.png.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
assets/resources/spine/action18.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
34
assets/resources/spine/action18/skeleton.atlas
Normal file
|
|
@ -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
|
||||||
6
assets/resources/spine/action18/skeleton.atlas.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"ver": "1.0.3",
|
||||||
|
"uuid": "b9080cea-87a7-4b8b-acdb-85291d4753ec",
|
||||||
|
"importer": "asset",
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
1
assets/resources/spine/action18/skeleton.json
Normal file
|
|
@ -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":{}}}
|
||||||
10
assets/resources/spine/action18/skeleton.json.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
BIN
assets/resources/spine/action18/skeleton.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
38
assets/resources/spine/action18/skeleton.png.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
assets/resources/spine/action2.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
62
assets/resources/spine/action2/skeleton.atlas
Normal file
|
|
@ -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
|
||||||
6
assets/resources/spine/action2/skeleton.atlas.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"ver": "1.0.3",
|
||||||
|
"uuid": "75bdece6-83aa-4fcc-8413-ce970c20edc2",
|
||||||
|
"importer": "asset",
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
1
assets/resources/spine/action2/skeleton.json
Normal file
|
|
@ -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":{}}}
|
||||||
10
assets/resources/spine/action2/skeleton.json.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
BIN
assets/resources/spine/action2/skeleton.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
38
assets/resources/spine/action2/skeleton.png.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
assets/resources/spine/action3.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
48
assets/resources/spine/action3/skeleton.atlas
Normal file
|
|
@ -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
|
||||||
6
assets/resources/spine/action3/skeleton.atlas.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"ver": "1.0.3",
|
||||||
|
"uuid": "a7388285-2129-4a93-9eae-552a1a8103d9",
|
||||||
|
"importer": "asset",
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
1
assets/resources/spine/action3/skeleton.json
Normal file
|
|
@ -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":{}}}
|
||||||
10
assets/resources/spine/action3/skeleton.json.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
BIN
assets/resources/spine/action3/skeleton.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
38
assets/resources/spine/action3/skeleton.png.meta
Normal file
|
|
@ -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": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||