diff --git a/assets/Scene/GameScene.fire b/assets/Scene/GameScene.fire
index b987405..ec67d32 100644
--- a/assets/Scene/GameScene.fire
+++ b/assets/Scene/GameScene.fire
@@ -435,7 +435,7 @@
{
"__type__": "cc.Node",
"_name": "bg",
- "_objFlags": 512,
+ "_objFlags": 0,
"_parent": {
"__id__": 7
},
@@ -5561,6 +5561,9 @@
"CityName": {
"__uuid__": "933f7976-6238-4e66-bef6-a7e118893b12"
},
+ "wallJumpPrefab": {
+ "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b"
+ },
"timeBtn": {
"__id__": 93
},
diff --git a/assets/Script/JiaZai.ts b/assets/Script/JiaZai.ts
index 8c3a946..e62fbb6 100644
--- a/assets/Script/JiaZai.ts
+++ b/assets/Script/JiaZai.ts
@@ -142,7 +142,7 @@ export default class JiaZai extends cc.Component {
// }
// });
- this.createIcon();
+ // this.createIcon();
cc.fx.GameConfig.GM_INFO.sceneValue = "HomeScene";
diff --git a/assets/Script/Map.ts b/assets/Script/Map.ts
index 4880380..1ac9d1b 100644
--- a/assets/Script/Map.ts
+++ b/assets/Script/Map.ts
@@ -48,6 +48,9 @@ export default class MapConroler extends cc.Component {
@property(cc.SpriteAtlas)
CityName: cc.SpriteAtlas = null;
+ @property(cc.Prefab)
+ wallJumpPrefab: cc.Prefab = null;
+
@property(cc.Button)
timeBtn: cc.Button = null;
@property(cc.Button)
@@ -166,6 +169,8 @@ export default class MapConroler extends cc.Component {
lastHammerTime: number;//上次使用锤子的时间
revolving_state: number = 0;//是否是旋转门关卡,0:不是,1:顺时针旋转,2:逆时针旋转
revolvingWallArray: any; //旋转门数组
+ jumpWallArray: any; //跳跃门数组
+ jump_state: number = 0;//跳跃门关卡的顺时针逆时针顺序,1:顺时针,2:逆时针
hitSoundCount: number;
hitSoundTime: number;
hammerSpecial: boolean = false;
@@ -228,6 +233,7 @@ export default class MapConroler extends cc.Component {
this.teamDoors = [];
this.colorDoors = [];
this.revolvingWallArray = []; //旋转门数组
+ this.jumpWallArray = []; //跳跃门数组
this.longAndShortWall = [];
this.gameWin = false;
this.gameOver = false;
@@ -248,6 +254,7 @@ export default class MapConroler extends cc.Component {
this.changeColor = false;
this.floorMove = false;
this.revolving_state = 0;
+ this.jump_state = 0;
this.hitSoundCount = 0;
this.hitSoundTime = 0;
this.cityRank = cc.fx.GameConfig.GM_INFO.cityRank;
@@ -866,6 +873,9 @@ export default class MapConroler extends cc.Component {
if (this.revolving_state != 0) {
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) {
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);
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() {
@@ -1342,7 +1407,6 @@ export default class MapConroler extends cc.Component {
// console.log("排序后的WALL_INFO数组:", this.revolvingWallArray);
}
-
revolvingWallAction(startPos, endPos, wall) {
let startWall = this.revolvingWallArray[startPos][0].getChildByName("revolving");
let startLength = this.revolvingWallArray[startPos][0].getChildByName("wall").getComponent("Wall").wall_Info.length;
diff --git a/assets/Script/module/Tool/GameTool.ts b/assets/Script/module/Tool/GameTool.ts
index 5afa533..56ef985 100644
--- a/assets/Script/module/Tool/GameTool.ts
+++ b/assets/Script/module/Tool/GameTool.ts
@@ -443,8 +443,8 @@ var GameTool = {
//关卡上限
maxLevel() {
let jg = false;
- if (cc.fx.GameConfig.GM_INFO.level > 1049) {
- cc.fx.GameConfig.GM_INFO.level = 1050;
+ if (cc.fx.GameConfig.GM_INFO.level > 1050) {
+ cc.fx.GameConfig.GM_INFO.level = 1051;
jg = true;
}
return jg;
diff --git a/assets/TextureBlock/block/door.plist b/assets/TextureBlock/block/door.plist
index 452ed8b..084a7b1 100644
--- a/assets/TextureBlock/block/door.plist
+++ b/assets/TextureBlock/block/door.plist
@@ -7,7 +7,7 @@
10color1.png
frame
- {{843,1151},{138,69}}
+ {{707,1141},{138,69}}
offset
{0,0}
rotated
@@ -46,7 +46,7 @@
10color4.png
frame
- {{489,1071},{61,146}}
+ {{341,1134},{61,146}}
offset
{0,0}
rotated
@@ -85,7 +85,7 @@
1color1.png
frame
- {{703,1141},{138,69}}
+ {{473,1268},{138,69}}
offset
{0,0}
rotated
@@ -124,7 +124,7 @@
1color4.png
frame
- {{341,1071},{61,146}}
+ {{489,1071},{61,146}}
offset
{0,0}
rotated
@@ -163,7 +163,7 @@
2color1.png
frame
- {{848,1080},{138,69}}
+ {{333,1268},{138,69}}
offset
{0,0}
rotated
@@ -202,7 +202,7 @@
2color4.png
frame
- {{762,485},{61,146}}
+ {{341,1071},{61,146}}
offset
{0,0}
rotated
@@ -241,7 +241,7 @@
3color1.png
frame
- {{333,1268},{138,69}}
+ {{2,1343},{138,69}}
offset
{0,0}
rotated
@@ -280,7 +280,7 @@
3color4.png
frame
- {{762,422},{61,146}}
+ {{762,485},{61,146}}
offset
{0,0}
rotated
@@ -319,11 +319,11 @@
4color1.png
frame
- {{481,1266},{138,69}}
+ {{142,1272},{138,69}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{138,69}}
sourceSize
@@ -358,7 +358,7 @@
4color4.png
frame
- {{770,359},{61,146}}
+ {{762,422},{61,146}}
offset
{0,0}
rotated
@@ -397,11 +397,11 @@
5color1.png
frame
- {{262,1213},{138,69}}
+ {{2,1272},{138,69}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{138,69}}
sourceSize
@@ -436,7 +436,7 @@
5color4.png
frame
- {{778,296},{61,146}}
+ {{770,359},{61,146}}
offset
{0,0}
rotated
@@ -475,7 +475,7 @@
6color1.png
frame
- {{341,1197},{138,69}}
+ {{481,1197},{138,69}}
offset
{0,0}
rotated
@@ -514,7 +514,7 @@
6color4.png
frame
- {{779,233},{61,146}}
+ {{778,296},{61,146}}
offset
{0,0}
rotated
@@ -553,11 +553,11 @@
7color1.png
frame
- {{488,1195},{138,69}}
+ {{262,1213},{138,69}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{138,69}}
sourceSize
@@ -631,11 +631,11 @@
8color1.png
frame
- {{632,1136},{138,69}}
+ {{341,1197},{138,69}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{138,69}}
sourceSize
@@ -670,7 +670,7 @@
8color4.png
frame
- {{341,1134},{61,145}}
+ {{489,1134},{61,145}}
offset
{0,0}
rotated
@@ -709,7 +709,7 @@
9color1.png
frame
- {{708,1070},{138,69}}
+ {{848,1070},{138,69}}
offset
{0,0}
rotated
@@ -787,7 +787,7 @@
dikuai.png
frame
- {{471,1406},{120,120}}
+ {{684,1281},{120,120}}
offset
{0,0}
rotated
@@ -813,11 +813,11 @@
downRight.png
frame
- {{611,1339},{68,120}}
+ {{806,1344},{68,120}}
offset
{33,-13}
rotated
-
+
sourceColorRect
{{72,26},{68,120}}
sourceSize
@@ -826,7 +826,7 @@
heng1.png
frame
- {{333,1339},{136,67}}
+ {{845,1275},{136,67}}
offset
{-1,1}
rotated
@@ -839,7 +839,7 @@
heng2.png
frame
- {{473,1337},{136,67}}
+ {{707,1212},{136,67}}
offset
{-1,1}
rotated
@@ -875,6 +875,32 @@
sourceSize
{258,69}
+ jumpHeng.png
+
+ frame
+ {{636,1136},{138,69}}
+ offset
+ {0,0}
+ rotated
+
+ sourceColorRect
+ {{0,0},{138,69}}
+ sourceSize
+ {138,69}
+
+ jumpShu.png
+
+ frame
+ {{779,233},{61,146}}
+ offset
+ {0,0}
+ rotated
+
+ sourceColorRect
+ {{0,0},{61,146}}
+ sourceSize
+ {61,146}
+
leftDown.png
frame
@@ -930,7 +956,7 @@
shu1.png
frame
- {{708,1009},{59,142}}
+ {{852,1009},{59,142}}
offset
{-1,2}
rotated
@@ -943,7 +969,7 @@
shu2.png
frame
- {{488,1134},{59,142}}
+ {{708,1009},{59,142}}
offset
{-1,2}
rotated
@@ -1190,7 +1216,7 @@
wall1.png
frame
- {{852,1009},{138,69}}
+ {{708,1070},{138,69}}
offset
{0,0}
rotated
@@ -1216,7 +1242,7 @@
wall7.png
frame
- {{621,1276},{61,69}}
+ {{613,1276},{61,69}}
offset
{0,0}
rotated
@@ -1242,7 +1268,7 @@
zhangai.png
frame
- {{703,1212},{132,137}}
+ {{847,1141},{132,137}}
offset
{0,0}
rotated
@@ -1262,7 +1288,7 @@
size
{1024,2048}
smartupdate
- $TexturePacker:SmartUpdate:ab657b8e936164cbf114a3ff4c9926dc$
+ $TexturePacker:SmartUpdate:fffbceb4fae7b43ac3c28f30ac0e304e$
textureFileName
door.png
diff --git a/assets/TextureBlock/block/door.plist.meta b/assets/TextureBlock/block/door.plist.meta
index 5ece3cd..4b36a9e 100644
--- a/assets/TextureBlock/block/door.plist.meta
+++ b/assets/TextureBlock/block/door.plist.meta
@@ -19,8 +19,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 843,
- "trimY": 1151,
+ "trimX": 707,
+ "trimY": 1141,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -88,8 +88,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 489,
- "trimY": 1071,
+ "trimX": 341,
+ "trimY": 1134,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -157,8 +157,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 703,
- "trimY": 1141,
+ "trimX": 473,
+ "trimY": 1268,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -226,7 +226,7 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 341,
+ "trimX": 489,
"trimY": 1071,
"width": 61,
"height": 146,
@@ -295,8 +295,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 848,
- "trimY": 1080,
+ "trimX": 333,
+ "trimY": 1268,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -364,8 +364,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 762,
- "trimY": 485,
+ "trimX": 341,
+ "trimY": 1071,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -433,8 +433,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 333,
- "trimY": 1268,
+ "trimX": 2,
+ "trimY": 1343,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -503,7 +503,7 @@
"offsetX": 0,
"offsetY": 0,
"trimX": 762,
- "trimY": 422,
+ "trimY": 485,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -568,11 +568,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 481,
- "trimY": 1266,
+ "trimX": 142,
+ "trimY": 1272,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -640,8 +640,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 770,
- "trimY": 359,
+ "trimX": 762,
+ "trimY": 422,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -706,11 +706,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 262,
- "trimY": 1213,
+ "trimX": 2,
+ "trimY": 1272,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -778,8 +778,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 778,
- "trimY": 296,
+ "trimX": 770,
+ "trimY": 359,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -847,7 +847,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 341,
+ "trimX": 481,
"trimY": 1197,
"width": 138,
"height": 69,
@@ -916,8 +916,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 779,
- "trimY": 233,
+ "trimX": 778,
+ "trimY": 296,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -982,11 +982,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 488,
- "trimY": 1195,
+ "trimX": 262,
+ "trimY": 1213,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -1120,11 +1120,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 632,
- "trimY": 1136,
+ "trimX": 341,
+ "trimY": 1197,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -1192,7 +1192,7 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 341,
+ "trimX": 489,
"trimY": 1134,
"width": 61,
"height": 145,
@@ -1261,7 +1261,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 708,
+ "trimX": 848,
"trimY": 1070,
"width": 138,
"height": 69,
@@ -1399,8 +1399,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 471,
- "trimY": 1406,
+ "trimX": 684,
+ "trimY": 1281,
"width": 120,
"height": 120,
"rawWidth": 120,
@@ -1442,11 +1442,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 33,
"offsetY": -13,
- "trimX": 611,
- "trimY": 1339,
+ "trimX": 806,
+ "trimY": 1344,
"width": 68,
"height": 120,
"rawWidth": 146,
@@ -1468,8 +1468,8 @@
"rotated": false,
"offsetX": -1,
"offsetY": 1,
- "trimX": 333,
- "trimY": 1339,
+ "trimX": 845,
+ "trimY": 1275,
"width": 136,
"height": 67,
"rawWidth": 138,
@@ -1491,8 +1491,8 @@
"rotated": false,
"offsetX": -1,
"offsetY": 1,
- "trimX": 473,
- "trimY": 1337,
+ "trimX": 707,
+ "trimY": 1212,
"width": 136,
"height": 67,
"rawWidth": 138,
@@ -1550,6 +1550,52 @@
"spriteType": "normal",
"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": {
"ver": "1.0.6",
"uuid": "66cdd4ba-4c1c-4221-b6c3-7e4b6f3d3000",
@@ -1652,7 +1698,7 @@
"rotated": true,
"offsetX": -1,
"offsetY": 2,
- "trimX": 708,
+ "trimX": 852,
"trimY": 1009,
"width": 59,
"height": 142,
@@ -1675,8 +1721,8 @@
"rotated": true,
"offsetX": -1,
"offsetY": 2,
- "trimX": 488,
- "trimY": 1134,
+ "trimX": 708,
+ "trimY": 1009,
"width": 59,
"height": 142,
"rawWidth": 61,
@@ -2112,8 +2158,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 852,
- "trimY": 1009,
+ "trimX": 708,
+ "trimY": 1070,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -2158,7 +2204,7 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 621,
+ "trimX": 613,
"trimY": 1276,
"width": 61,
"height": 69,
@@ -2204,8 +2250,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 703,
- "trimY": 1212,
+ "trimX": 847,
+ "trimY": 1141,
"width": 132,
"height": 137,
"rawWidth": 132,
diff --git a/assets/TextureBlock/block/door.png b/assets/TextureBlock/block/door.png
index a308a48..a321670 100644
Binary files a/assets/TextureBlock/block/door.png and b/assets/TextureBlock/block/door.png differ
diff --git a/assets/TextureBlock/block/jumpDoor.png b/assets/TextureBlock/block/jumpDoor.png
deleted file mode 100644
index 33e6c79..0000000
Binary files a/assets/TextureBlock/block/jumpDoor.png and /dev/null differ
diff --git a/assets/TextureBlock/block/jumpHeng.png b/assets/TextureBlock/block/jumpHeng.png
new file mode 100644
index 0000000..873be70
Binary files /dev/null and b/assets/TextureBlock/block/jumpHeng.png differ
diff --git a/assets/TextureBlock/block/jumpDoor.png.meta b/assets/TextureBlock/block/jumpHeng.png.meta
similarity index 64%
rename from assets/TextureBlock/block/jumpDoor.png.meta
rename to assets/TextureBlock/block/jumpHeng.png.meta
index fdf2b1f..5d41451 100644
--- a/assets/TextureBlock/block/jumpDoor.png.meta
+++ b/assets/TextureBlock/block/jumpHeng.png.meta
@@ -1,6 +1,6 @@
{
"ver": "2.3.7",
- "uuid": "b373a346-f08c-4918-8a79-6ed7915845fc",
+ "uuid": "5a69fa64-a89a-497c-a2be-5d7de287b512",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
@@ -8,15 +8,15 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
- "width": 123,
- "height": 54,
+ "width": 138,
+ "height": 69,
"platformSettings": {},
"subMetas": {
- "jumpDoor": {
+ "jumpHeng": {
"ver": "1.0.6",
- "uuid": "f8b05fd9-f842-4fc5-97f0-ba3ff3827a98",
+ "uuid": "3acde7eb-0288-4e75-9198-3afd00de702a",
"importer": "sprite-frame",
- "rawTextureUuid": "b373a346-f08c-4918-8a79-6ed7915845fc",
+ "rawTextureUuid": "5a69fa64-a89a-497c-a2be-5d7de287b512",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@@ -24,10 +24,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
- "width": 123,
- "height": 54,
- "rawWidth": 123,
- "rawHeight": 54,
+ "width": 138,
+ "height": 69,
+ "rawWidth": 138,
+ "rawHeight": 69,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
diff --git a/assets/TextureBlock/block/jumpShu.png b/assets/TextureBlock/block/jumpShu.png
new file mode 100644
index 0000000..7085a60
Binary files /dev/null and b/assets/TextureBlock/block/jumpShu.png differ
diff --git a/assets/UI/action/action1/skeleton.png.meta b/assets/TextureBlock/block/jumpShu.png.meta
similarity index 60%
rename from assets/UI/action/action1/skeleton.png.meta
rename to assets/TextureBlock/block/jumpShu.png.meta
index 7d45105..c7c34cd 100644
--- a/assets/UI/action/action1/skeleton.png.meta
+++ b/assets/TextureBlock/block/jumpShu.png.meta
@@ -1,6 +1,6 @@
{
"ver": "2.3.7",
- "uuid": "21c89128-787e-46c5-a9fb-48246c6bf88b",
+ "uuid": "a2887ad8-16c2-4910-b0e8-6bc29ed627e2",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
@@ -8,26 +8,26 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
- "width": 910,
- "height": 181,
+ "width": 61,
+ "height": 146,
"platformSettings": {},
"subMetas": {
- "skeleton": {
+ "jumpShu": {
"ver": "1.0.6",
- "uuid": "38650115-4e14-46b7-98cd-d8059b265b60",
+ "uuid": "72068613-d17d-44d0-b4da-6a94bd629bed",
"importer": "sprite-frame",
- "rawTextureUuid": "21c89128-787e-46c5-a9fb-48246c6bf88b",
+ "rawTextureUuid": "a2887ad8-16c2-4910-b0e8-6bc29ed627e2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 2,
- "trimY": 2,
- "width": 906,
- "height": 177,
- "rawWidth": 910,
- "rawHeight": 181,
+ "trimX": 0,
+ "trimY": 0,
+ "width": 61,
+ "height": 146,
+ "rawWidth": 61,
+ "rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
diff --git a/assets/UI/action.meta b/assets/UI/action.meta
deleted file mode 100644
index 071e296..0000000
--- a/assets/UI/action.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action1.meta b/assets/UI/action/action1.meta
deleted file mode 100644
index 14f4fb6..0000000
--- a/assets/UI/action/action1.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action1/skeleton.atlas b/assets/UI/action/action1/skeleton.atlas
deleted file mode 100644
index 0729bbb..0000000
--- a/assets/UI/action/action1/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action1/skeleton.atlas.meta b/assets/UI/action/action1/skeleton.atlas.meta
deleted file mode 100644
index 74d2368..0000000
--- a/assets/UI/action/action1/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "15fa1953-9ade-4464-a5f2-7c6479433714",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action1/skeleton.json b/assets/UI/action/action1/skeleton.json
deleted file mode 100644
index bfb00d9..0000000
--- a/assets/UI/action/action1/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action1/skeleton.json.meta b/assets/UI/action/action1/skeleton.json.meta
deleted file mode 100644
index fe94ba7..0000000
--- a/assets/UI/action/action1/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action1/skeleton.png b/assets/UI/action/action1/skeleton.png
deleted file mode 100644
index 6a004df..0000000
Binary files a/assets/UI/action/action1/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action11.meta b/assets/UI/action/action11.meta
deleted file mode 100644
index a3cb377..0000000
--- a/assets/UI/action/action11.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action11/skeleton.atlas b/assets/UI/action/action11/skeleton.atlas
deleted file mode 100644
index df1c700..0000000
--- a/assets/UI/action/action11/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action11/skeleton.atlas.meta b/assets/UI/action/action11/skeleton.atlas.meta
deleted file mode 100644
index b2453c5..0000000
--- a/assets/UI/action/action11/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "17f4dff8-676f-40fe-8ddc-7eeb83e68ba7",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action11/skeleton.json b/assets/UI/action/action11/skeleton.json
deleted file mode 100644
index 2f97abc..0000000
--- a/assets/UI/action/action11/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action11/skeleton.json.meta b/assets/UI/action/action11/skeleton.json.meta
deleted file mode 100644
index 151bb75..0000000
--- a/assets/UI/action/action11/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action11/skeleton.png b/assets/UI/action/action11/skeleton.png
deleted file mode 100644
index fe97485..0000000
Binary files a/assets/UI/action/action11/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action11/skeleton.png.meta b/assets/UI/action/action11/skeleton.png.meta
deleted file mode 100644
index c7041d2..0000000
--- a/assets/UI/action/action11/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action13.meta b/assets/UI/action/action13.meta
deleted file mode 100644
index 3af68d2..0000000
--- a/assets/UI/action/action13.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action13/skeleton.atlas b/assets/UI/action/action13/skeleton.atlas
deleted file mode 100644
index 9932b20..0000000
--- a/assets/UI/action/action13/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action13/skeleton.atlas.meta b/assets/UI/action/action13/skeleton.atlas.meta
deleted file mode 100644
index 42e54b3..0000000
--- a/assets/UI/action/action13/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "0eb8928f-7db0-4863-aa5f-e65d6b32ebd3",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action13/skeleton.json b/assets/UI/action/action13/skeleton.json
deleted file mode 100644
index f685910..0000000
--- a/assets/UI/action/action13/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action13/skeleton.json.meta b/assets/UI/action/action13/skeleton.json.meta
deleted file mode 100644
index 135b17c..0000000
--- a/assets/UI/action/action13/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action13/skeleton.png b/assets/UI/action/action13/skeleton.png
deleted file mode 100644
index 558d652..0000000
Binary files a/assets/UI/action/action13/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action13/skeleton.png.meta b/assets/UI/action/action13/skeleton.png.meta
deleted file mode 100644
index 5f7acc2..0000000
--- a/assets/UI/action/action13/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action14.meta b/assets/UI/action/action14.meta
deleted file mode 100644
index 0d374f2..0000000
--- a/assets/UI/action/action14.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action14/skeleton.atlas b/assets/UI/action/action14/skeleton.atlas
deleted file mode 100644
index 18e8f8f..0000000
--- a/assets/UI/action/action14/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action14/skeleton.atlas.meta b/assets/UI/action/action14/skeleton.atlas.meta
deleted file mode 100644
index 52051fc..0000000
--- a/assets/UI/action/action14/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "c127f3a5-659d-4132-b770-680c2e8a461a",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action14/skeleton.json b/assets/UI/action/action14/skeleton.json
deleted file mode 100644
index 071aeb0..0000000
--- a/assets/UI/action/action14/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action14/skeleton.json.meta b/assets/UI/action/action14/skeleton.json.meta
deleted file mode 100644
index aeba71a..0000000
--- a/assets/UI/action/action14/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action14/skeleton.png b/assets/UI/action/action14/skeleton.png
deleted file mode 100644
index 1fd9567..0000000
Binary files a/assets/UI/action/action14/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action14/skeleton.png.meta b/assets/UI/action/action14/skeleton.png.meta
deleted file mode 100644
index 35f995f..0000000
--- a/assets/UI/action/action14/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action15.meta b/assets/UI/action/action15.meta
deleted file mode 100644
index 55f99f9..0000000
--- a/assets/UI/action/action15.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action15/skeleton.atlas b/assets/UI/action/action15/skeleton.atlas
deleted file mode 100644
index de0cc8a..0000000
--- a/assets/UI/action/action15/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action15/skeleton.atlas.meta b/assets/UI/action/action15/skeleton.atlas.meta
deleted file mode 100644
index e41024e..0000000
--- a/assets/UI/action/action15/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "bb2ef854-6b5a-4f80-a7ab-146fb0c0ff01",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action15/skeleton.json b/assets/UI/action/action15/skeleton.json
deleted file mode 100644
index 2e4b699..0000000
--- a/assets/UI/action/action15/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action15/skeleton.json.meta b/assets/UI/action/action15/skeleton.json.meta
deleted file mode 100644
index a220691..0000000
--- a/assets/UI/action/action15/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action15/skeleton.png b/assets/UI/action/action15/skeleton.png
deleted file mode 100644
index 652935c..0000000
Binary files a/assets/UI/action/action15/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action15/skeleton.png.meta b/assets/UI/action/action15/skeleton.png.meta
deleted file mode 100644
index a65fc35..0000000
--- a/assets/UI/action/action15/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action16.meta b/assets/UI/action/action16.meta
deleted file mode 100644
index e65f573..0000000
--- a/assets/UI/action/action16.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action16/skeleton.atlas b/assets/UI/action/action16/skeleton.atlas
deleted file mode 100644
index e5fc2f4..0000000
--- a/assets/UI/action/action16/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action16/skeleton.atlas.meta b/assets/UI/action/action16/skeleton.atlas.meta
deleted file mode 100644
index 78d36bf..0000000
--- a/assets/UI/action/action16/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "31c01dbb-37e1-4cc6-9457-a30002c8ff53",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action16/skeleton.json b/assets/UI/action/action16/skeleton.json
deleted file mode 100644
index 733ea70..0000000
--- a/assets/UI/action/action16/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action16/skeleton.json.meta b/assets/UI/action/action16/skeleton.json.meta
deleted file mode 100644
index bb1a5f0..0000000
--- a/assets/UI/action/action16/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action16/skeleton.png b/assets/UI/action/action16/skeleton.png
deleted file mode 100644
index 45e655b..0000000
Binary files a/assets/UI/action/action16/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action16/skeleton.png.meta b/assets/UI/action/action16/skeleton.png.meta
deleted file mode 100644
index a2239cd..0000000
--- a/assets/UI/action/action16/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action18.meta b/assets/UI/action/action18.meta
deleted file mode 100644
index b0aa750..0000000
--- a/assets/UI/action/action18.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action18/skeleton.atlas b/assets/UI/action/action18/skeleton.atlas
deleted file mode 100644
index 9db709b..0000000
--- a/assets/UI/action/action18/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action18/skeleton.atlas.meta b/assets/UI/action/action18/skeleton.atlas.meta
deleted file mode 100644
index 74cbe79..0000000
--- a/assets/UI/action/action18/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "b9080cea-87a7-4b8b-acdb-85291d4753ec",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action18/skeleton.json b/assets/UI/action/action18/skeleton.json
deleted file mode 100644
index 902dae6..0000000
--- a/assets/UI/action/action18/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action18/skeleton.json.meta b/assets/UI/action/action18/skeleton.json.meta
deleted file mode 100644
index 47cc9ea..0000000
--- a/assets/UI/action/action18/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action18/skeleton.png b/assets/UI/action/action18/skeleton.png
deleted file mode 100644
index a3636f8..0000000
Binary files a/assets/UI/action/action18/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action18/skeleton.png.meta b/assets/UI/action/action18/skeleton.png.meta
deleted file mode 100644
index 3393fd6..0000000
--- a/assets/UI/action/action18/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action2.meta b/assets/UI/action/action2.meta
deleted file mode 100644
index b69fa0c..0000000
--- a/assets/UI/action/action2.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action2/skeleton.atlas b/assets/UI/action/action2/skeleton.atlas
deleted file mode 100644
index cbd8fed..0000000
--- a/assets/UI/action/action2/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action2/skeleton.atlas.meta b/assets/UI/action/action2/skeleton.atlas.meta
deleted file mode 100644
index 1bbea7f..0000000
--- a/assets/UI/action/action2/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "75bdece6-83aa-4fcc-8413-ce970c20edc2",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action2/skeleton.json b/assets/UI/action/action2/skeleton.json
deleted file mode 100644
index 9c15ee9..0000000
--- a/assets/UI/action/action2/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action2/skeleton.json.meta b/assets/UI/action/action2/skeleton.json.meta
deleted file mode 100644
index 26cba91..0000000
--- a/assets/UI/action/action2/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action2/skeleton.png b/assets/UI/action/action2/skeleton.png
deleted file mode 100644
index d283345..0000000
Binary files a/assets/UI/action/action2/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action2/skeleton.png.meta b/assets/UI/action/action2/skeleton.png.meta
deleted file mode 100644
index a71eb86..0000000
--- a/assets/UI/action/action2/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action3.meta b/assets/UI/action/action3.meta
deleted file mode 100644
index 877ea81..0000000
--- a/assets/UI/action/action3.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action3/skeleton.atlas b/assets/UI/action/action3/skeleton.atlas
deleted file mode 100644
index 1150c6d..0000000
--- a/assets/UI/action/action3/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action3/skeleton.atlas.meta b/assets/UI/action/action3/skeleton.atlas.meta
deleted file mode 100644
index 644f90a..0000000
--- a/assets/UI/action/action3/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "a7388285-2129-4a93-9eae-552a1a8103d9",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action3/skeleton.json b/assets/UI/action/action3/skeleton.json
deleted file mode 100644
index 0265586..0000000
--- a/assets/UI/action/action3/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action3/skeleton.json.meta b/assets/UI/action/action3/skeleton.json.meta
deleted file mode 100644
index 135e2c7..0000000
--- a/assets/UI/action/action3/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action3/skeleton.png b/assets/UI/action/action3/skeleton.png
deleted file mode 100644
index 66a1b64..0000000
Binary files a/assets/UI/action/action3/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action3/skeleton.png.meta b/assets/UI/action/action3/skeleton.png.meta
deleted file mode 100644
index f7d3edb..0000000
--- a/assets/UI/action/action3/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action4.meta b/assets/UI/action/action4.meta
deleted file mode 100644
index 2ad305e..0000000
--- a/assets/UI/action/action4.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action4/skeleton.atlas b/assets/UI/action/action4/skeleton.atlas
deleted file mode 100644
index 163c369..0000000
--- a/assets/UI/action/action4/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action4/skeleton.atlas.meta b/assets/UI/action/action4/skeleton.atlas.meta
deleted file mode 100644
index 865cc3d..0000000
--- a/assets/UI/action/action4/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "aad100df-fe31-46ca-8fb1-cd62c3baa6cb",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action4/skeleton.json b/assets/UI/action/action4/skeleton.json
deleted file mode 100644
index 9ab7541..0000000
--- a/assets/UI/action/action4/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action4/skeleton.json.meta b/assets/UI/action/action4/skeleton.json.meta
deleted file mode 100644
index 9120947..0000000
--- a/assets/UI/action/action4/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action4/skeleton.png b/assets/UI/action/action4/skeleton.png
deleted file mode 100644
index 6e32e8d..0000000
Binary files a/assets/UI/action/action4/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action4/skeleton.png.meta b/assets/UI/action/action4/skeleton.png.meta
deleted file mode 100644
index d8e51e2..0000000
--- a/assets/UI/action/action4/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action5.meta b/assets/UI/action/action5.meta
deleted file mode 100644
index d3b20aa..0000000
--- a/assets/UI/action/action5.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action5/skeleton.atlas b/assets/UI/action/action5/skeleton.atlas
deleted file mode 100644
index 988c830..0000000
--- a/assets/UI/action/action5/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action5/skeleton.atlas.meta b/assets/UI/action/action5/skeleton.atlas.meta
deleted file mode 100644
index df810d7..0000000
--- a/assets/UI/action/action5/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "0add93c1-1ce1-4055-ae6b-d801f9ad889a",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action5/skeleton.json b/assets/UI/action/action5/skeleton.json
deleted file mode 100644
index a65ef42..0000000
--- a/assets/UI/action/action5/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action5/skeleton.json.meta b/assets/UI/action/action5/skeleton.json.meta
deleted file mode 100644
index 7010358..0000000
--- a/assets/UI/action/action5/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action5/skeleton.png b/assets/UI/action/action5/skeleton.png
deleted file mode 100644
index eab2c43..0000000
Binary files a/assets/UI/action/action5/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action5/skeleton.png.meta b/assets/UI/action/action5/skeleton.png.meta
deleted file mode 100644
index 7f285c8..0000000
--- a/assets/UI/action/action5/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action6.meta b/assets/UI/action/action6.meta
deleted file mode 100644
index 0b9a782..0000000
--- a/assets/UI/action/action6.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action6/skeleton.atlas b/assets/UI/action/action6/skeleton.atlas
deleted file mode 100644
index e0da177..0000000
--- a/assets/UI/action/action6/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action6/skeleton.atlas.meta b/assets/UI/action/action6/skeleton.atlas.meta
deleted file mode 100644
index 87dcb42..0000000
--- a/assets/UI/action/action6/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "ff647d3a-f879-40d0-8019-32321226d2aa",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action6/skeleton.json b/assets/UI/action/action6/skeleton.json
deleted file mode 100644
index 88a2e45..0000000
--- a/assets/UI/action/action6/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action6/skeleton.json.meta b/assets/UI/action/action6/skeleton.json.meta
deleted file mode 100644
index 77db871..0000000
--- a/assets/UI/action/action6/skeleton.json.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action6/skeleton.png b/assets/UI/action/action6/skeleton.png
deleted file mode 100644
index 02a920d..0000000
Binary files a/assets/UI/action/action6/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action6/skeleton.png.meta b/assets/UI/action/action6/skeleton.png.meta
deleted file mode 100644
index ba15778..0000000
--- a/assets/UI/action/action6/skeleton.png.meta
+++ /dev/null
@@ -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": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action7.meta b/assets/UI/action/action7.meta
deleted file mode 100644
index 059b2cd..0000000
--- a/assets/UI/action/action7.meta
+++ /dev/null
@@ -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": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action7/skeleton.atlas b/assets/UI/action/action7/skeleton.atlas
deleted file mode 100644
index d55e3c3..0000000
--- a/assets/UI/action/action7/skeleton.atlas
+++ /dev/null
@@ -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
diff --git a/assets/UI/action/action7/skeleton.atlas.meta b/assets/UI/action/action7/skeleton.atlas.meta
deleted file mode 100644
index 660a980..0000000
--- a/assets/UI/action/action7/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "c1c736b6-9ece-4d37-8d67-ef9fd3e95e68",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action7/skeleton.json b/assets/UI/action/action7/skeleton.json
deleted file mode 100644
index f62e3fb..0000000
--- a/assets/UI/action/action7/skeleton.json
+++ /dev/null
@@ -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":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action7/skeleton.json.meta b/assets/UI/action/action7/skeleton.json.meta
deleted file mode 100644
index 3a2a083..0000000
--- a/assets/UI/action/action7/skeleton.json.meta
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "ver": "1.2.5",
- "uuid": "0ef7549d-0dd1-4fd1-99c4-d0cbba88b64c",
- "importer": "spine",
- "textures": [
- "60cf0fa9-6eca-4b61-b568-7a88f935bceb"
- ],
- "scale": 1,
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action7/skeleton.png b/assets/UI/action/action7/skeleton.png
deleted file mode 100644
index b834d17..0000000
Binary files a/assets/UI/action/action7/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action7/skeleton.png.meta b/assets/UI/action/action7/skeleton.png.meta
deleted file mode 100644
index 4beadec..0000000
--- a/assets/UI/action/action7/skeleton.png.meta
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "ver": "2.3.7",
- "uuid": "60cf0fa9-6eca-4b61-b568-7a88f935bceb",
- "importer": "texture",
- "type": "sprite",
- "wrapMode": "clamp",
- "filterMode": "bilinear",
- "premultiplyAlpha": false,
- "genMipmaps": false,
- "packable": true,
- "width": 1045,
- "height": 156,
- "platformSettings": {},
- "subMetas": {
- "skeleton": {
- "ver": "1.0.6",
- "uuid": "278d2dd2-41a8-4bd7-b6be-2d8519f0c6d7",
- "importer": "sprite-frame",
- "rawTextureUuid": "60cf0fa9-6eca-4b61-b568-7a88f935bceb",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 2,
- "width": 1041,
- "height": 152,
- "rawWidth": 1045,
- "rawHeight": 156,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "subMetas": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/UI/action/action9.meta b/assets/UI/action/action9.meta
deleted file mode 100644
index 9fe9069..0000000
--- a/assets/UI/action/action9.meta
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "ver": "1.1.3",
- "uuid": "a5ac1945-1cbb-4fcb-adb5-cb03a46aeec7",
- "importer": "folder",
- "isBundle": false,
- "bundleName": "",
- "priority": 1,
- "compressionType": {},
- "optimizeHotUpdate": {},
- "inlineSpriteFrames": {},
- "isRemoteBundle": {},
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action9/9.spine b/assets/UI/action/action9/9.spine
deleted file mode 100644
index bcc4916..0000000
Binary files a/assets/UI/action/action9/9.spine and /dev/null differ
diff --git a/assets/UI/action/action9/9.spine.meta b/assets/UI/action/action9/9.spine.meta
deleted file mode 100644
index 12f34ef..0000000
--- a/assets/UI/action/action9/9.spine.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "825913ed-dee8-487b-acdc-43cb9cee4135",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action9/skeleton.atlas b/assets/UI/action/action9/skeleton.atlas
deleted file mode 100644
index bb52d5e..0000000
--- a/assets/UI/action/action9/skeleton.atlas
+++ /dev/null
@@ -1,55 +0,0 @@
-
-skeleton.png
-size: 415,363
-format: RGBA8888
-filter: Linear,Linear
-repeat: none
-80001
- rotate: true
- xy: 239, 13
- size: 114, 167
- orig: 180, 180
- offset: 32, 0
- index: -1
-80002
- rotate: true
- xy: 239, 246
- size: 115, 174
- orig: 180, 180
- offset: 30, 0
- index: -1
-80003
- rotate: false
- xy: 2, 183
- size: 118, 178
- orig: 180, 180
- offset: 27, 0
- index: -1
-80004
- rotate: false
- xy: 2, 2
- size: 116, 179
- orig: 180, 180
- offset: 29, 0
- index: -1
-80005
- rotate: false
- xy: 120, 5
- size: 117, 176
- orig: 180, 180
- offset: 28, 0
- index: -1
-80006
- rotate: false
- xy: 122, 186
- size: 115, 175
- orig: 180, 180
- offset: 29, 0
- index: -1
-80007
- rotate: true
- xy: 239, 129
- size: 115, 174
- orig: 180, 180
- offset: 30, 0
- index: -1
diff --git a/assets/UI/action/action9/skeleton.atlas.meta b/assets/UI/action/action9/skeleton.atlas.meta
deleted file mode 100644
index 69df7a5..0000000
--- a/assets/UI/action/action9/skeleton.atlas.meta
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ver": "1.0.3",
- "uuid": "16f3791e-dc5e-45f4-a006-98bac582e0bc",
- "importer": "asset",
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action9/skeleton.json b/assets/UI/action/action9/skeleton.json
deleted file mode 100644
index 43f6888..0000000
--- a/assets/UI/action/action9/skeleton.json
+++ /dev/null
@@ -1 +0,0 @@
-{"skeleton":{"hash":"sYsXXzfp6n/R2ru0AgFZwhXvKRA","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./09/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"80001","bone":"root","attachment":"80007"},{"name":"80002","bone":"root"},{"name":"80003","bone":"root"},{"name":"80004","bone":"root"},{"name":"80005","bone":"root"},{"name":"80006","bone":"root"},{"name":"80007","bone":"root"}],"skins":[{"name":"default","attachments":{"80001":{"80001":{"width":180,"height":180},"80002":{"width":180,"height":180},"80003":{"width":180,"height":180},"80004":{"width":180,"height":180},"80005":{"width":180,"height":180},"80006":{"width":180,"height":180},"80007":{"width":180,"height":180}}}}],"animations":{"9":{"slots":{"80001":{"attachment":[{"name":"80001"},{"time":0.2,"name":"80002"},{"time":0.3,"name":"80003"},{"time":0.4,"name":"80004"},{"time":0.5,"name":"80005"},{"time":0.6,"name":"80006"},{"time":0.7,"name":"80007"},{"time":0.8,"name":"80001"}]}}},"animation":{}}}
\ No newline at end of file
diff --git a/assets/UI/action/action9/skeleton.json.meta b/assets/UI/action/action9/skeleton.json.meta
deleted file mode 100644
index 9235b27..0000000
--- a/assets/UI/action/action9/skeleton.json.meta
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "ver": "1.2.5",
- "uuid": "47acaaac-d654-4e92-a7b0-c3358bcb7c01",
- "importer": "spine",
- "textures": [
- "fd8630a0-c72e-4152-98e6-11d546c84959"
- ],
- "scale": 1,
- "subMetas": {}
-}
\ No newline at end of file
diff --git a/assets/UI/action/action9/skeleton.png b/assets/UI/action/action9/skeleton.png
deleted file mode 100644
index 20c2390..0000000
Binary files a/assets/UI/action/action9/skeleton.png and /dev/null differ
diff --git a/assets/UI/action/action9/skeleton.png.meta b/assets/UI/action/action9/skeleton.png.meta
deleted file mode 100644
index 896f8c3..0000000
--- a/assets/UI/action/action9/skeleton.png.meta
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "ver": "2.3.7",
- "uuid": "fd8630a0-c72e-4152-98e6-11d546c84959",
- "importer": "texture",
- "type": "sprite",
- "wrapMode": "clamp",
- "filterMode": "bilinear",
- "premultiplyAlpha": false,
- "genMipmaps": false,
- "packable": true,
- "width": 415,
- "height": 363,
- "platformSettings": {},
- "subMetas": {
- "skeleton": {
- "ver": "1.0.6",
- "uuid": "4b84a81f-f403-4704-b5d1-c7a0e7b1c3b6",
- "importer": "sprite-frame",
- "rawTextureUuid": "fd8630a0-c72e-4152-98e6-11d546c84959",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 2,
- "width": 411,
- "height": 359,
- "rawWidth": 415,
- "rawHeight": 363,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "subMetas": {}
- }
- }
-}
\ No newline at end of file
diff --git a/assets/custom/Json/level1051.json b/assets/custom/Json/level1051.json
new file mode 100644
index 0000000..45631f5
--- /dev/null
+++ b/assets/custom/Json/level1051.json
@@ -0,0 +1,72 @@
+{
+ "LEVEL_INFO": [
+ {
+ "id": "1",
+ "map": [
+ 6,
+ 7
+ ],
+ "time": 300,
+ "gap": []
+ }
+ ],
+ "BLOCK_INFO": [
+ [
+ {
+ "block": 5,
+ "color": 5,
+ "type": 0,
+ "position": {
+ "x": 0,
+ "y": -180,
+ "z": 0
+ },
+ "id": 210
+ },
+ {
+ "block": 5,
+ "color": 10,
+ "type": 0,
+ "position": {
+ "x": 240,
+ "y": -60,
+ "z": 0
+ },
+ "id": 220
+ }
+ ]
+ ],
+ "WALL_INFO": [
+ [
+ {
+ "id": 1,
+ "num": 10,
+ "color": 10,
+ "special": 0,
+ "jump": 1,
+ "length": 2
+ },
+ {
+ "id": 1,
+ "num": 12,
+ "color": 10,
+ "special": 0,
+ "length": 0
+ },
+ {
+ "id": 2,
+ "num": 0,
+ "color": 5,
+ "special": 0,
+ "length": 2
+ },
+ {
+ "id": 3,
+ "num": 1,
+ "color": 5,
+ "special": 0,
+ "length": 0
+ }
+ ]
+ ]
+}
\ No newline at end of file
diff --git a/assets/custom/Json/level1051.json.meta b/assets/custom/Json/level1051.json.meta
new file mode 100644
index 0000000..6bb3eab
--- /dev/null
+++ b/assets/custom/Json/level1051.json.meta
@@ -0,0 +1,6 @@
+{
+ "ver": "1.0.2",
+ "uuid": "95578faa-994f-4a16-a982-9220c45f9cea",
+ "importer": "json",
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/assets/prefab/map/jump.prefab b/assets/prefab/map/jump.prefab
new file mode 100644
index 0000000..f5e064a
--- /dev/null
+++ b/assets/prefab/map/jump.prefab
@@ -0,0 +1,346 @@
+[
+ {
+ "__type__": "cc.Prefab",
+ "_name": "",
+ "_objFlags": 0,
+ "_native": "",
+ "data": {
+ "__id__": 1
+ },
+ "optimizationPolicy": 0,
+ "asyncLoadAssets": false,
+ "readonly": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "rotate",
+ "_objFlags": 0,
+ "_parent": null,
+ "_children": [
+ {
+ "__id__": 2
+ },
+ {
+ "__id__": 5
+ }
+ ],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 8
+ }
+ ],
+ "_prefab": {
+ "__id__": 9
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 79,
+ "height": 53
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 180,
+ -33,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "arror",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 1
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 3
+ }
+ ],
+ "_prefab": {
+ "__id__": 4
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 0,
+ "g": 255,
+ "b": 167,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 36,
+ "height": 24
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ -1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 2
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "abl+L48MxEJ6gjdOC/lCrz",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "New Sprite",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 1
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 6
+ }
+ ],
+ "_prefab": {
+ "__id__": 7
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 138,
+ "height": 69
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 0,
+ -6.265,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "3702b92b-6a57-493c-8a8a-f1b8fcbacb5e"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "a3kkTbautPNZFSW42UJLRv",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 1
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb"
+ },
+ "_type": 1,
+ "_sizeMode": 0,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "",
+ "sync": false
+ }
+]
\ No newline at end of file
diff --git a/assets/prefab/map/jump.prefab.meta b/assets/prefab/map/jump.prefab.meta
new file mode 100644
index 0000000..9857ea5
--- /dev/null
+++ b/assets/prefab/map/jump.prefab.meta
@@ -0,0 +1,9 @@
+{
+ "ver": "1.3.2",
+ "uuid": "6c71e89a-1b22-4a26-81a0-3b61f0b6aa79",
+ "importer": "prefab",
+ "optimizationPolicy": "AUTO",
+ "asyncLoadAssets": false,
+ "readonly": false,
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/assets/prefab/prop/icon.prefab b/assets/prefab/prop/icon.prefab
index 08a7ce0..d408a76 100644
--- a/assets/prefab/prop/icon.prefab
+++ b/assets/prefab/prop/icon.prefab
@@ -16,19 +16,15 @@
"_name": "icon",
"_objFlags": 0,
"_parent": null,
- "_children": [
+ "_children": [],
+ "_active": true,
+ "_components": [
{
"__id__": 2
}
],
- "_active": true,
- "_components": [
- {
- "__id__": 5
- }
- ],
"_prefab": {
- "__id__": 6
+ "__id__": 3
},
"_opacity": 255,
"_color": {
@@ -77,123 +73,6 @@
"groupIndex": 0,
"_id": ""
},
- {
- "__type__": "cc.Node",
- "_name": "skeleton",
- "_objFlags": 0,
- "_parent": {
- "__id__": 1
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 3
- }
- ],
- "_prefab": {
- "__id__": 4
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 180,
- "height": 180
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- 4.112,
- 3.084,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 1
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "sp.Skeleton",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 2
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
- }
- ],
- "paused": false,
- "defaultSkin": "default",
- "defaultAnimation": "14",
- "_preCacheMode": 0,
- "_cacheMode": 0,
- "loop": true,
- "premultipliedAlpha": true,
- "timeScale": 1,
- "_accTime": 0,
- "_playCount": 0,
- "_frameCache": null,
- "_curFrame": null,
- "_skeletonCache": null,
- "_animationName": "14",
- "_animationQueue": [],
- "_headAniInfo": null,
- "_playTimes": 0,
- "_isAniComplete": true,
- "_N$skeletonData": {
- "__uuid__": "115eeb82-1fcd-466b-baa8-4476d4ce4deb"
- },
- "_N$_defaultCacheMode": 0,
- "_N$debugSlots": false,
- "_N$debugBones": false,
- "_N$debugMesh": false,
- "_N$useTint": false,
- "_N$enableBatch": false,
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "76puEJXNVMCZyBrSro19oY",
- "sync": false
- },
{
"__type__": "cc.Sprite",
"_name": "",