更新 新功能

This commit is contained in:
COMPUTER\EDY 2026-01-26 20:07:04 +08:00
parent b585313c35
commit 558881832b
117 changed files with 688 additions and 1968 deletions

View File

@ -435,7 +435,7 @@
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "bg", "_name": "bg",
"_objFlags": 512, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 7 "__id__": 7
}, },
@ -5561,6 +5561,9 @@
"CityName": { "CityName": {
"__uuid__": "933f7976-6238-4e66-bef6-a7e118893b12" "__uuid__": "933f7976-6238-4e66-bef6-a7e118893b12"
}, },
"wallJumpPrefab": {
"__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b"
},
"timeBtn": { "timeBtn": {
"__id__": 93 "__id__": 93
}, },

View File

@ -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";

View File

@ -48,6 +48,9 @@ export default class MapConroler extends cc.Component {
@property(cc.SpriteAtlas) @property(cc.SpriteAtlas)
CityName: cc.SpriteAtlas = null; CityName: cc.SpriteAtlas = null;
@property(cc.Prefab)
wallJumpPrefab: cc.Prefab = null;
@property(cc.Button) @property(cc.Button)
timeBtn: cc.Button = null; timeBtn: cc.Button = null;
@property(cc.Button) @property(cc.Button)
@ -166,6 +169,8 @@ export default class MapConroler extends cc.Component {
lastHammerTime: number;//上次使用锤子的时间 lastHammerTime: number;//上次使用锤子的时间
revolving_state: number = 0;//是否是旋转门关卡,0:不是,1:顺时针旋转,2:逆时针旋转 revolving_state: number = 0;//是否是旋转门关卡,0:不是,1:顺时针旋转,2:逆时针旋转
revolvingWallArray: any; //旋转门数组 revolvingWallArray: any; //旋转门数组
jumpWallArray: any; //跳跃门数组
jump_state: number = 0;//跳跃门关卡的顺时针逆时针顺序1:顺时针,2:逆时针
hitSoundCount: number; hitSoundCount: number;
hitSoundTime: number; hitSoundTime: number;
hammerSpecial: boolean = false; hammerSpecial: boolean = false;
@ -228,6 +233,7 @@ export default class MapConroler extends cc.Component {
this.teamDoors = []; this.teamDoors = [];
this.colorDoors = []; this.colorDoors = [];
this.revolvingWallArray = []; //旋转门数组 this.revolvingWallArray = []; //旋转门数组
this.jumpWallArray = []; //跳跃门数组
this.longAndShortWall = []; this.longAndShortWall = [];
this.gameWin = false; this.gameWin = false;
this.gameOver = false; this.gameOver = false;
@ -248,6 +254,7 @@ export default class MapConroler extends cc.Component {
this.changeColor = false; this.changeColor = false;
this.floorMove = false; this.floorMove = false;
this.revolving_state = 0; this.revolving_state = 0;
this.jump_state = 0;
this.hitSoundCount = 0; this.hitSoundCount = 0;
this.hitSoundTime = 0; this.hitSoundTime = 0;
this.cityRank = cc.fx.GameConfig.GM_INFO.cityRank; this.cityRank = cc.fx.GameConfig.GM_INFO.cityRank;
@ -866,6 +873,9 @@ export default class MapConroler extends cc.Component {
if (this.revolving_state != 0) { if (this.revolving_state != 0) {
this.createRevolvingWall(); this.createRevolvingWall();
} }
if (this.jump_state != 0) {
this.createJumpWall();
}
} }
}; };
@ -1219,6 +1229,9 @@ export default class MapConroler extends cc.Component {
else if (doorInfo[j].special == 5) { else if (doorInfo[j].special == 5) {
this.revolving_state = 2; this.revolving_state = 2;
} }
else if (doorInfo[j].jump != undefined && doorInfo[j].jump != null) {
this.jump_state = doorInfo[j].jump;
}
wall.getComponent("Wall").init(doorInfo[j], null, null, null); wall.getComponent("Wall").init(doorInfo[j], null, null, null);
this.wallArray.push(wall.parent); this.wallArray.push(wall.parent);
@ -1289,6 +1302,58 @@ export default class MapConroler extends cc.Component {
} }
//创建跳跃门设置功能
createJumpWall() {
// 第一步将数组分为N个小数组每个小数组以length不为0的元素开头
let wallTemp = [];
for (let j = 0; j < cc.fx.GameConfig.WALL_INFO[0].length; j++) {
for (let k = 0; k < this.wallArray.length; k++) {
if (this.wallArray[k].getChildByName("wall").getComponent("Wall").num == cc.fx.GameConfig.WALL_INFO[0][j].num
&& (this.wallArray[k].getChildByName("wall").getComponent("Wall").special < 2 || this.wallArray[k].getChildByName("wall").getComponent("Wall").special > 5)) {
wallTemp.push(this.wallArray[k]);
}
}
}
let i = 0;
while (i < wallTemp.length) {
if (wallTemp[i].getChildByName("wall").getComponent("Wall").wall_Info.length === 0) {
i++;
continue;
}
const length = wallTemp[i].getChildByName("wall").getComponent("Wall").wall_Info.length;
const group = wallTemp.slice(i, i + length);
this.jumpWallArray.push(group);
// 移动到下一组的位置
i += length;
}
if (this.jump_state == 1) {
}
//如果是逆时针
else if (this.jump_state == 2) {
let wallStart = this.jumpWallArray[0];
// 获取从索引1开始的剩余元素
const restOfArray = this.jumpWallArray.slice(1);
// 对剩余元素进行翻转
const reversedRest = restOfArray.reverse();
// 重新组合数组:第一个元素 + 翻转后的剩余元素
this.jumpWallArray = [wallStart, ...reversedRest];
for (let n = 0; n < this.wallArray.length; n++) {
let revolvingNode = this.wallArray[n].getChildByName("wall").getComponent("Wall").revolvingNode;
if (revolvingNode) revolvingNode.children[0].scaleX = -revolvingNode.children[0].scaleX;
}
}
for (let i = 0; i < this.jumpWallArray.length; i++) {
let wall = this.jumpWallArray[i][0].getChildByName("wall").getComponent("Wall");
if (wall.special == 2) {
this.jumpWallArray.splice(i, 1);
i--;
}
}
// console.log("排序后的WALL_INFO数组:", this.revolvingWallArray);
}
//创建旋转门设置功能 //创建旋转门设置功能
createRevolvingWall() { createRevolvingWall() {
@ -1342,7 +1407,6 @@ export default class MapConroler extends cc.Component {
// console.log("排序后的WALL_INFO数组:", this.revolvingWallArray); // console.log("排序后的WALL_INFO数组:", this.revolvingWallArray);
} }
revolvingWallAction(startPos, endPos, wall) { revolvingWallAction(startPos, endPos, wall) {
let startWall = this.revolvingWallArray[startPos][0].getChildByName("revolving"); let startWall = this.revolvingWallArray[startPos][0].getChildByName("revolving");
let startLength = this.revolvingWallArray[startPos][0].getChildByName("wall").getComponent("Wall").wall_Info.length; let startLength = this.revolvingWallArray[startPos][0].getChildByName("wall").getComponent("Wall").wall_Info.length;

View File

@ -443,8 +443,8 @@ var GameTool = {
//关卡上限 //关卡上限
maxLevel() { maxLevel() {
let jg = false; let jg = false;
if (cc.fx.GameConfig.GM_INFO.level > 1049) { if (cc.fx.GameConfig.GM_INFO.level > 1050) {
cc.fx.GameConfig.GM_INFO.level = 1050; cc.fx.GameConfig.GM_INFO.level = 1051;
jg = true; jg = true;
} }
return jg; return jg;

View File

@ -7,7 +7,7 @@
<key>10color1.png</key> <key>10color1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{843,1151},{138,69}}</string> <string>{{707,1141},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -46,7 +46,7 @@
<key>10color4.png</key> <key>10color4.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{489,1071},{61,146}}</string> <string>{{341,1134},{61,146}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -85,7 +85,7 @@
<key>1color1.png</key> <key>1color1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{703,1141},{138,69}}</string> <string>{{473,1268},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -124,7 +124,7 @@
<key>1color4.png</key> <key>1color4.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{341,1071},{61,146}}</string> <string>{{489,1071},{61,146}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -163,7 +163,7 @@
<key>2color1.png</key> <key>2color1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{848,1080},{138,69}}</string> <string>{{333,1268},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -202,7 +202,7 @@
<key>2color4.png</key> <key>2color4.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{762,485},{61,146}}</string> <string>{{341,1071},{61,146}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -241,7 +241,7 @@
<key>3color1.png</key> <key>3color1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{333,1268},{138,69}}</string> <string>{{2,1343},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -280,7 +280,7 @@
<key>3color4.png</key> <key>3color4.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{762,422},{61,146}}</string> <string>{{762,485},{61,146}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -319,11 +319,11 @@
<key>4color1.png</key> <key>4color1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{481,1266},{138,69}}</string> <string>{{142,1272},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
<false/> <true/>
<key>sourceColorRect</key> <key>sourceColorRect</key>
<string>{{0,0},{138,69}}</string> <string>{{0,0},{138,69}}</string>
<key>sourceSize</key> <key>sourceSize</key>
@ -358,7 +358,7 @@
<key>4color4.png</key> <key>4color4.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{770,359},{61,146}}</string> <string>{{762,422},{61,146}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -397,11 +397,11 @@
<key>5color1.png</key> <key>5color1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{262,1213},{138,69}}</string> <string>{{2,1272},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
<true/> <false/>
<key>sourceColorRect</key> <key>sourceColorRect</key>
<string>{{0,0},{138,69}}</string> <string>{{0,0},{138,69}}</string>
<key>sourceSize</key> <key>sourceSize</key>
@ -436,7 +436,7 @@
<key>5color4.png</key> <key>5color4.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{778,296},{61,146}}</string> <string>{{770,359},{61,146}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -475,7 +475,7 @@
<key>6color1.png</key> <key>6color1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{341,1197},{138,69}}</string> <string>{{481,1197},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -514,7 +514,7 @@
<key>6color4.png</key> <key>6color4.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{779,233},{61,146}}</string> <string>{{778,296},{61,146}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -553,11 +553,11 @@
<key>7color1.png</key> <key>7color1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{488,1195},{138,69}}</string> <string>{{262,1213},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
<false/> <true/>
<key>sourceColorRect</key> <key>sourceColorRect</key>
<string>{{0,0},{138,69}}</string> <string>{{0,0},{138,69}}</string>
<key>sourceSize</key> <key>sourceSize</key>
@ -631,11 +631,11 @@
<key>8color1.png</key> <key>8color1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{632,1136},{138,69}}</string> <string>{{341,1197},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
<true/> <false/>
<key>sourceColorRect</key> <key>sourceColorRect</key>
<string>{{0,0},{138,69}}</string> <string>{{0,0},{138,69}}</string>
<key>sourceSize</key> <key>sourceSize</key>
@ -670,7 +670,7 @@
<key>8color4.png</key> <key>8color4.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{341,1134},{61,145}}</string> <string>{{489,1134},{61,145}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -709,7 +709,7 @@
<key>9color1.png</key> <key>9color1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{708,1070},{138,69}}</string> <string>{{848,1070},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -787,7 +787,7 @@
<key>dikuai.png</key> <key>dikuai.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{471,1406},{120,120}}</string> <string>{{684,1281},{120,120}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -813,11 +813,11 @@
<key>downRight.png</key> <key>downRight.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{611,1339},{68,120}}</string> <string>{{806,1344},{68,120}}</string>
<key>offset</key> <key>offset</key>
<string>{33,-13}</string> <string>{33,-13}</string>
<key>rotated</key> <key>rotated</key>
<false/> <true/>
<key>sourceColorRect</key> <key>sourceColorRect</key>
<string>{{72,26},{68,120}}</string> <string>{{72,26},{68,120}}</string>
<key>sourceSize</key> <key>sourceSize</key>
@ -826,7 +826,7 @@
<key>heng1.png</key> <key>heng1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{333,1339},{136,67}}</string> <string>{{845,1275},{136,67}}</string>
<key>offset</key> <key>offset</key>
<string>{-1,1}</string> <string>{-1,1}</string>
<key>rotated</key> <key>rotated</key>
@ -839,7 +839,7 @@
<key>heng2.png</key> <key>heng2.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{473,1337},{136,67}}</string> <string>{{707,1212},{136,67}}</string>
<key>offset</key> <key>offset</key>
<string>{-1,1}</string> <string>{-1,1}</string>
<key>rotated</key> <key>rotated</key>
@ -875,6 +875,32 @@
<key>sourceSize</key> <key>sourceSize</key>
<string>{258,69}</string> <string>{258,69}</string>
</dict> </dict>
<key>jumpHeng.png</key>
<dict>
<key>frame</key>
<string>{{636,1136},{138,69}}</string>
<key>offset</key>
<string>{0,0}</string>
<key>rotated</key>
<true/>
<key>sourceColorRect</key>
<string>{{0,0},{138,69}}</string>
<key>sourceSize</key>
<string>{138,69}</string>
</dict>
<key>jumpShu.png</key>
<dict>
<key>frame</key>
<string>{{779,233},{61,146}}</string>
<key>offset</key>
<string>{0,0}</string>
<key>rotated</key>
<true/>
<key>sourceColorRect</key>
<string>{{0,0},{61,146}}</string>
<key>sourceSize</key>
<string>{61,146}</string>
</dict>
<key>leftDown.png</key> <key>leftDown.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
@ -930,7 +956,7 @@
<key>shu1.png</key> <key>shu1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{708,1009},{59,142}}</string> <string>{{852,1009},{59,142}}</string>
<key>offset</key> <key>offset</key>
<string>{-1,2}</string> <string>{-1,2}</string>
<key>rotated</key> <key>rotated</key>
@ -943,7 +969,7 @@
<key>shu2.png</key> <key>shu2.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{488,1134},{59,142}}</string> <string>{{708,1009},{59,142}}</string>
<key>offset</key> <key>offset</key>
<string>{-1,2}</string> <string>{-1,2}</string>
<key>rotated</key> <key>rotated</key>
@ -1190,7 +1216,7 @@
<key>wall1.png</key> <key>wall1.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{852,1009},{138,69}}</string> <string>{{708,1070},{138,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -1216,7 +1242,7 @@
<key>wall7.png</key> <key>wall7.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{621,1276},{61,69}}</string> <string>{{613,1276},{61,69}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -1242,7 +1268,7 @@
<key>zhangai.png</key> <key>zhangai.png</key>
<dict> <dict>
<key>frame</key> <key>frame</key>
<string>{{703,1212},{132,137}}</string> <string>{{847,1141},{132,137}}</string>
<key>offset</key> <key>offset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>rotated</key> <key>rotated</key>
@ -1262,7 +1288,7 @@
<key>size</key> <key>size</key>
<string>{1024,2048}</string> <string>{1024,2048}</string>
<key>smartupdate</key> <key>smartupdate</key>
<string>$TexturePacker:SmartUpdate:ab657b8e936164cbf114a3ff4c9926dc$</string> <string>$TexturePacker:SmartUpdate:fffbceb4fae7b43ac3c28f30ac0e304e$</string>
<key>textureFileName</key> <key>textureFileName</key>
<string>door.png</string> <string>door.png</string>
</dict> </dict>

View File

@ -19,8 +19,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 843, "trimX": 707,
"trimY": 1151, "trimY": 1141,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -88,8 +88,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 489, "trimX": 341,
"trimY": 1071, "trimY": 1134,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -157,8 +157,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 703, "trimX": 473,
"trimY": 1141, "trimY": 1268,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -226,7 +226,7 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 341, "trimX": 489,
"trimY": 1071, "trimY": 1071,
"width": 61, "width": 61,
"height": 146, "height": 146,
@ -295,8 +295,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 848, "trimX": 333,
"trimY": 1080, "trimY": 1268,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -364,8 +364,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 762, "trimX": 341,
"trimY": 485, "trimY": 1071,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -433,8 +433,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 333, "trimX": 2,
"trimY": 1268, "trimY": 1343,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -503,7 +503,7 @@
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 762, "trimX": 762,
"trimY": 422, "trimY": 485,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -568,11 +568,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 481, "trimX": 142,
"trimY": 1266, "trimY": 1272,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -640,8 +640,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 770, "trimX": 762,
"trimY": 359, "trimY": 422,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -706,11 +706,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 262, "trimX": 2,
"trimY": 1213, "trimY": 1272,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -778,8 +778,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 778, "trimX": 770,
"trimY": 296, "trimY": 359,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -847,7 +847,7 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 341, "trimX": 481,
"trimY": 1197, "trimY": 1197,
"width": 138, "width": 138,
"height": 69, "height": 69,
@ -916,8 +916,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 779, "trimX": 778,
"trimY": 233, "trimY": 296,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -982,11 +982,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 488, "trimX": 262,
"trimY": 1195, "trimY": 1213,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -1120,11 +1120,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 632, "trimX": 341,
"trimY": 1136, "trimY": 1197,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -1192,7 +1192,7 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 341, "trimX": 489,
"trimY": 1134, "trimY": 1134,
"width": 61, "width": 61,
"height": 145, "height": 145,
@ -1261,7 +1261,7 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 708, "trimX": 848,
"trimY": 1070, "trimY": 1070,
"width": 138, "width": 138,
"height": 69, "height": 69,
@ -1399,8 +1399,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 471, "trimX": 684,
"trimY": 1406, "trimY": 1281,
"width": 120, "width": 120,
"height": 120, "height": 120,
"rawWidth": 120, "rawWidth": 120,
@ -1442,11 +1442,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 33, "offsetX": 33,
"offsetY": -13, "offsetY": -13,
"trimX": 611, "trimX": 806,
"trimY": 1339, "trimY": 1344,
"width": 68, "width": 68,
"height": 120, "height": 120,
"rawWidth": 146, "rawWidth": 146,
@ -1468,8 +1468,8 @@
"rotated": false, "rotated": false,
"offsetX": -1, "offsetX": -1,
"offsetY": 1, "offsetY": 1,
"trimX": 333, "trimX": 845,
"trimY": 1339, "trimY": 1275,
"width": 136, "width": 136,
"height": 67, "height": 67,
"rawWidth": 138, "rawWidth": 138,
@ -1491,8 +1491,8 @@
"rotated": false, "rotated": false,
"offsetX": -1, "offsetX": -1,
"offsetY": 1, "offsetY": 1,
"trimX": 473, "trimX": 707,
"trimY": 1337, "trimY": 1212,
"width": 136, "width": 136,
"height": 67, "height": 67,
"rawWidth": 138, "rawWidth": 138,
@ -1550,6 +1550,52 @@
"spriteType": "normal", "spriteType": "normal",
"subMetas": {} "subMetas": {}
}, },
"jumpHeng.png": {
"ver": "1.0.6",
"uuid": "3702b92b-6a57-493c-8a8a-f1b8fcbacb5e",
"importer": "sprite-frame",
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
"offsetX": 0,
"offsetY": 0,
"trimX": 636,
"trimY": 1136,
"width": 138,
"height": 69,
"rawWidth": 138,
"rawHeight": 69,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"spriteType": "normal",
"subMetas": {}
},
"jumpShu.png": {
"ver": "1.0.6",
"uuid": "af314d12-e3f7-47d3-80b6-1fef0010e4c2",
"importer": "sprite-frame",
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
"offsetX": 0,
"offsetY": 0,
"trimX": 779,
"trimY": 233,
"width": 61,
"height": 146,
"rawWidth": 61,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"spriteType": "normal",
"subMetas": {}
},
"leftDown.png": { "leftDown.png": {
"ver": "1.0.6", "ver": "1.0.6",
"uuid": "66cdd4ba-4c1c-4221-b6c3-7e4b6f3d3000", "uuid": "66cdd4ba-4c1c-4221-b6c3-7e4b6f3d3000",
@ -1652,7 +1698,7 @@
"rotated": true, "rotated": true,
"offsetX": -1, "offsetX": -1,
"offsetY": 2, "offsetY": 2,
"trimX": 708, "trimX": 852,
"trimY": 1009, "trimY": 1009,
"width": 59, "width": 59,
"height": 142, "height": 142,
@ -1675,8 +1721,8 @@
"rotated": true, "rotated": true,
"offsetX": -1, "offsetX": -1,
"offsetY": 2, "offsetY": 2,
"trimX": 488, "trimX": 708,
"trimY": 1134, "trimY": 1009,
"width": 59, "width": 59,
"height": 142, "height": 142,
"rawWidth": 61, "rawWidth": 61,
@ -2112,8 +2158,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 852, "trimX": 708,
"trimY": 1009, "trimY": 1070,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -2158,7 +2204,7 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 621, "trimX": 613,
"trimY": 1276, "trimY": 1276,
"width": 61, "width": 61,
"height": 69, "height": 69,
@ -2204,8 +2250,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 703, "trimX": 847,
"trimY": 1212, "trimY": 1141,
"width": 132, "width": 132,
"height": 137, "height": 137,
"rawWidth": 132, "rawWidth": 132,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 KiB

After

Width:  |  Height:  |  Size: 155 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -1,6 +1,6 @@
{ {
"ver": "2.3.7", "ver": "2.3.7",
"uuid": "b373a346-f08c-4918-8a79-6ed7915845fc", "uuid": "5a69fa64-a89a-497c-a2be-5d7de287b512",
"importer": "texture", "importer": "texture",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
@ -8,15 +8,15 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 123, "width": 138,
"height": 54, "height": 69,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"jumpDoor": { "jumpHeng": {
"ver": "1.0.6", "ver": "1.0.6",
"uuid": "f8b05fd9-f842-4fc5-97f0-ba3ff3827a98", "uuid": "3acde7eb-0288-4e75-9198-3afd00de702a",
"importer": "sprite-frame", "importer": "sprite-frame",
"rawTextureUuid": "b373a346-f08c-4918-8a79-6ed7915845fc", "rawTextureUuid": "5a69fa64-a89a-497c-a2be-5d7de287b512",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
@ -24,10 +24,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 123, "width": 138,
"height": 54, "height": 69,
"rawWidth": 123, "rawWidth": 138,
"rawHeight": 54, "rawHeight": 69,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -1,6 +1,6 @@
{ {
"ver": "2.3.7", "ver": "2.3.7",
"uuid": "21c89128-787e-46c5-a9fb-48246c6bf88b", "uuid": "a2887ad8-16c2-4910-b0e8-6bc29ed627e2",
"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": 910, "width": 61,
"height": 181, "height": 146,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"skeleton": { "jumpShu": {
"ver": "1.0.6", "ver": "1.0.6",
"uuid": "38650115-4e14-46b7-98cd-d8059b265b60", "uuid": "72068613-d17d-44d0-b4da-6a94bd629bed",
"importer": "sprite-frame", "importer": "sprite-frame",
"rawTextureUuid": "21c89128-787e-46c5-a9fb-48246c6bf88b", "rawTextureUuid": "a2887ad8-16c2-4910-b0e8-6bc29ed627e2",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 2, "trimX": 0,
"trimY": 2, "trimY": 0,
"width": 906, "width": 61,
"height": 177, "height": 146,
"rawWidth": 910, "rawWidth": 61,
"rawHeight": 181, "rawHeight": 146,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "6bf7b0d0-b5a4-4553-9eac-812d30e8983f",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "ebb76f1b-2e0b-42ff-8437-241bb59df3ce",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,48 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "15fa1953-9ade-4464-a5f2-7c6479433714",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "523ca747-91cb-4e27-bc9d-a46505b6636c",
"importer": "spine",
"textures": [
"21c89128-787e-46c5-a9fb-48246c6bf88b"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "9016ec49-cf2f-4eb3-bbbb-acca39138ef6",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,62 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "17f4dff8-676f-40fe-8ddc-7eeb83e68ba7",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "9a8cb5c6-2290-4dfc-8ddc-f007c49fe73a",
"importer": "spine",
"textures": [
"c26b8ce4-6364-4be7-9fec-b6b52fa19df9"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "c26b8ce4-6364-4be7-9fec-b6b52fa19df9",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 357,
"height": 507,
"platformSettings": {},
"subMetas": {
"skeleton": {
"ver": "1.0.6",
"uuid": "127022e2-c27d-4873-9742-3a0dc4e785c6",
"importer": "sprite-frame",
"rawTextureUuid": "c26b8ce4-6364-4be7-9fec-b6b52fa19df9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 2,
"trimY": 2,
"width": 353,
"height": 503,
"rawWidth": 357,
"rawHeight": 507,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "74dd5815-a296-48b6-a987-8671b80e4a18",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,62 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "0eb8928f-7db0-4863-aa5f-e65d6b32ebd3",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "f2f2dccf-0adf-4074-8e57-9fe4efdcbd4b",
"importer": "spine",
"textures": [
"7e59f954-0322-4e9a-9918-d1f5e0dacc9b"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

View File

@ -1,38 +0,0 @@
{
"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": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "0ecaa12a-3e69-4bd6-951c-9efe885e0396",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,48 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "c127f3a5-659d-4132-b770-680c2e8a461a",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "115eeb82-1fcd-466b-baa8-4476d4ce4deb",
"importer": "spine",
"textures": [
"128d44ed-3bec-4e0b-bfe4-8d9f9cb6df92"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "128d44ed-3bec-4e0b-bfe4-8d9f9cb6df92",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 444,
"height": 326,
"platformSettings": {},
"subMetas": {
"skeleton": {
"ver": "1.0.6",
"uuid": "a87f3ed9-204a-4aee-9750-f16b1410d843",
"importer": "sprite-frame",
"rawTextureUuid": "128d44ed-3bec-4e0b-bfe4-8d9f9cb6df92",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 2,
"trimY": 2,
"width": 440,
"height": 322,
"rawWidth": 444,
"rawHeight": 326,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "373dde75-d8b9-4e18-8bff-c1117e4f95d8",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,55 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "bb2ef854-6b5a-4f80-a7ab-146fb0c0ff01",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "8d2f5888-3ea7-42f3-864d-60b521d48af3",
"importer": "spine",
"textures": [
"18a49406-f38e-4095-a6d8-f37bc30f45d4"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "18a49406-f38e-4095-a6d8-f37bc30f45d4",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 925,
"height": 183,
"platformSettings": {},
"subMetas": {
"skeleton": {
"ver": "1.0.6",
"uuid": "ff1fd55d-68ea-45a0-b199-506d995d93fa",
"importer": "sprite-frame",
"rawTextureUuid": "18a49406-f38e-4095-a6d8-f37bc30f45d4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 2,
"trimY": 2,
"width": 921,
"height": 179,
"rawWidth": 925,
"rawHeight": 183,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "b3a05555-319b-4339-a222-97dbc97b08ea",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,90 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "31c01dbb-37e1-4cc6-9457-a30002c8ff53",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "e5a88596-4ce0-4744-bcb4-1374166a124c",
"importer": "spine",
"textures": [
"82c04226-b913-447c-9049-9640f64a6afb"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

View File

@ -1,38 +0,0 @@
{
"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": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "70835e8a-c07d-43df-9525-752e4fee0446",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,34 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "b9080cea-87a7-4b8b-acdb-85291d4753ec",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "3ccf5084-85b3-4ebd-821c-51ee8cd40393",
"importer": "spine",
"textures": [
"f5ca2741-cb4d-444b-97ad-bce46230e175"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

View File

@ -1,38 +0,0 @@
{
"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": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "9ee805c9-1597-4494-b11b-7fcbfa5964c3",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,62 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "75bdece6-83aa-4fcc-8413-ce970c20edc2",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "6d83525a-4680-4bef-a6da-442590a6b1e7",
"importer": "spine",
"textures": [
"98504e33-1bb5-4587-8422-562bd3ce1388"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

View File

@ -1,38 +0,0 @@
{
"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": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "b4552068-8abf-422e-99b9-eed547cb63b4",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,48 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "a7388285-2129-4a93-9eae-552a1a8103d9",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "61c68c22-adc8-4855-a581-c9d3b1d20ce3",
"importer": "spine",
"textures": [
"16f04375-6e80-4921-8d61-05c92887fd2d"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

View File

@ -1,38 +0,0 @@
{
"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": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "b8a9b08c-95ef-4812-b5d5-c0f720c35c8c",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,62 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "aad100df-fe31-46ca-8fb1-cd62c3baa6cb",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "721d1a74-bafa-4b0e-89b0-6c8504170801",
"importer": "spine",
"textures": [
"5f8ffd50-eb7e-465c-8555-a3882c9f8dea"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

View File

@ -1,38 +0,0 @@
{
"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": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "219b26fb-2884-458f-b310-7918054d27c2",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,48 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "0add93c1-1ce1-4055-ae6b-d801f9ad889a",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "40ee67ca-a2cc-44a3-9361-a3a7026b04b3",
"importer": "spine",
"textures": [
"8b3c9591-f074-4f5d-9e65-60c7acb04345"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@ -1,38 +0,0 @@
{
"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": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "ffcf99c3-68be-4f42-b8b1-82e20dd4433c",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,76 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "ff647d3a-f879-40d0-8019-32321226d2aa",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "2780e8db-4e3f-4340-996e-f02a8d0f1419",
"importer": "spine",
"textures": [
"5ba24f95-57ee-4f9e-9ae5-cb0fde8880b6"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

View File

@ -1,38 +0,0 @@
{
"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": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "f44ddb0a-76b4-40c7-ae27-18d5140fa288",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,48 +0,0 @@
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

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "c1c736b6-9ece-4d37-8d67-ef9fd3e95e68",
"importer": "asset",
"subMetas": {}
}

View File

@ -1 +0,0 @@
{"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":{}}}

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