diff --git a/assets/Script/GameManager.ts b/assets/Script/GameManager.ts
index 2f4b775..85a6c46 100644
--- a/assets/Script/GameManager.ts
+++ b/assets/Script/GameManager.ts
@@ -137,7 +137,7 @@ export default class GameManager extends cc.Component {
setWallPrefabSort() {
- const order = ['down', 'downLeft', 'downRight', 'left', 'right', 'up', 'upLeft', 'upRight'];
+ const order = ['down', 'downleft', 'downright', 'left', 'leftdown', 'leftup', 'right', 'rightdown', 'rightup', 'up', 'upleft', 'upright'];
this.Wall_Prefab.sort((a, b) => {
const indexA = order.indexOf(a.name);
const indexB = order.indexOf(b.name);
@@ -145,7 +145,6 @@ export default class GameManager extends cc.Component {
if (indexB === -1) return -1;
return indexA - indexB;
});
-
}
setParticleSort() {
diff --git a/assets/Script/Map.ts b/assets/Script/Map.ts
index 646f1e8..bd60a8c 100644
--- a/assets/Script/Map.ts
+++ b/assets/Script/Map.ts
@@ -218,7 +218,6 @@ export default class MapConroler extends cc.Component {
this.Wall_Prefab = GameManager._instance.Wall_Prefab;
this.Block_Color = GameManager._instance.Block_Color;
// this.particleEffects = GameManager._instance.particleEffects;
-
this.initMap();
}
@@ -405,7 +404,7 @@ export default class MapConroler extends cc.Component {
let startY = this.mapHeight % 2 == 0 ? -(this.mapHeight - 1) * 60 : -(this.mapHeight - 1) * 60;
// startX =(this.mapWidth-1)*60 + 60;
// startY =-(this.mapHeight-1)*60 - 60;
-
+ this.node.getChildByName("mapBlock").zIndex = -100;
for (let i = 0; i < this.mapWidth; i++) {
this.mapBlocksWall[i] = [];
@@ -771,7 +770,9 @@ export default class MapConroler extends cc.Component {
if (block.opacity != 250) {
let dir = this.getWllDiraction("turn", cc.v2(block.getComponent("MapBlock").posX, block.getComponent("MapBlock").posY));
//console.log("转角方向", dir, block.getComponent("MapBlock").posX, block.getComponent("MapBlock").posY);
- if (dir != null) {
+ let blockDir = block.getComponent("MapBlock").direction;
+ //console.log("转角方向", dir, block.getComponent("MapBlock").posX, block.getComponent("MapBlock").posY);
+ if (dir != null && blockDir != "rightup" && blockDir != "leftdown" && blockDir != "rightdown" && blockDir != "leftup") {
this.createTurn(dir, block, block.getComponent("MapBlock").posX, block.getComponent("MapBlock").posY);
}
}
@@ -780,11 +781,12 @@ export default class MapConroler extends cc.Component {
createWall(direction, node) {
let wall = null;
+ let wall2 = null;
node.getComponent("MapBlock").setDiraction(direction);
switch (direction) {
case "right":
node.opacity = 250;
- wall = cc.instantiate(this.Wall_Prefab[4]);
+ wall = cc.instantiate(this.Wall_Prefab[6]);
this.leftDoors.push(wall);
// wall.parent = this.node.getChildByName("Wall");
wall.parent = this.node;
@@ -806,7 +808,7 @@ export default class MapConroler extends cc.Component {
// wall.parent = this.node.getChildByName("Wall");
this.rightDoors.push(wall);
wall.parent = this.node;
- wall.setPosition(cc.v2(node.x, node.y));
+ wall.setPosition(cc.v2(node.x + 4.5, node.y));
wall.getChildByName("wall").getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction);
this.setDoorInfo(wall.getChildByName("wall"));
//wall.getChildByName("wall").getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
@@ -818,7 +820,7 @@ export default class MapConroler extends cc.Component {
break;
case "up":
node.opacity = 250;
- wall = cc.instantiate(this.Wall_Prefab[5]);
+ wall = cc.instantiate(this.Wall_Prefab[9]);
this.topDoors.push(wall);
// wall.parent = this.node.getChildByName("Wall");
@@ -851,37 +853,43 @@ export default class MapConroler extends cc.Component {
else if (wall.getChildByName("wall").getComponent("Wall").special == 3)
this.freezeWall.push(wall);
break;
- case "upright": case "rightup":
+ case "rightup": case "upright":
node.opacity = 249;
- wall = cc.instantiate(this.Wall_Prefab[7]);
+ wall = cc.instantiate(this.Wall_Prefab[8]);
// wall.parent = this.node.getChildByName("Wall");
wall.parent = this.node;
wall.setPosition(cc.v2(node.x, node.y));
- wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction);
- wall.children[2].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction);
+ wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall.name);
//wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
- this.setDoorInfo(wall.children[0]);
- this.wallNum += 1;
- //wall.children[1].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
this.setDoorInfo(wall.children[1]);
this.wallNum += 1;
-
+ wall2 = cc.instantiate(this.Wall_Prefab[11]);
+ // wall.parent = this.node.getChildByName("Wall");
+ wall2.parent = this.node;
+ wall2.setPosition(cc.v2(node.x, node.y));
+ wall2.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall2.name);
+ //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
+ this.setDoorInfo(wall2.children[1]);
+ this.wallNum += 1;
break;
- case "upleft": case "leftup":
+ case "leftup": case "upleft":
node.opacity = 249;
- wall = cc.instantiate(this.Wall_Prefab[6]);
+ wall = cc.instantiate(this.Wall_Prefab[5]);
// wall.parent = this.node.getChildByName("Wall");
wall.parent = this.node;
wall.setPosition(cc.v2(node.x, node.y));
- wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction);
- wall.children[2].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction);
+ wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall.name);
//wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
- this.setDoorInfo(wall.children[0]);
- this.wallNum += 1;
- //wall.children[1].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
this.setDoorInfo(wall.children[1]);
this.wallNum += 1;
-
+ wall2 = cc.instantiate(this.Wall_Prefab[10]);
+ // wall.parent = this.node.getChildByName("Wall");
+ wall2.parent = this.node;
+ wall2.setPosition(cc.v2(node.x, node.y));
+ wall2.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall2.name);
+ //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
+ this.setDoorInfo(wall2.children[1]);
+ this.wallNum += 1;
break;
case "downright": case "rightdown":
node.opacity = 249;
@@ -889,33 +897,38 @@ export default class MapConroler extends cc.Component {
// wall.parent = this.node.getChildByName("Wall");
wall.parent = this.node;
wall.setPosition(cc.v2(node.x, node.y));
- wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction);
- wall.children[2].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction);
+ wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall.name);
//wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
- this.setDoorInfo(wall.children[0]);
- this.wallNum += 1;
- //wall.children[1].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
this.setDoorInfo(wall.children[1]);
this.wallNum += 1;
-
+ wall2 = cc.instantiate(this.Wall_Prefab[7]);
+ // wall.parent = this.node.getChildByName("Wall");
+ wall2.parent = this.node;
+ wall2.setPosition(cc.v2(node.x, node.y));
+ wall2.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall2.name);
+ //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
+ this.setDoorInfo(wall2.children[1]);
+ this.wallNum += 1;
break;
case "downleft": case "leftdown":
node.opacity = 249;
wall = cc.instantiate(this.Wall_Prefab[1]);
// wall.parent = this.node.getChildByName("Wall");
wall.parent = this.node;
- wall.setPosition(cc.v2(node.x, node.y));
- wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction);
- wall.children[2].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction);
+ wall.setPosition(cc.v2(node.x + 5, node.y));
+ wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall.name);
//wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
- this.setDoorInfo(wall.children[0]);
- this.wallNum += 1;
- //wall.children[1].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
this.setDoorInfo(wall.children[1]);
this.wallNum += 1;
-
+ wall2 = cc.instantiate(this.Wall_Prefab[4]);
+ // wall.parent = this.node.getChildByName("Wall");
+ wall2.parent = this.node;
+ wall2.setPosition(cc.v2(node.x + 5, node.y));
+ wall2.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall2.name);
+ //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString();
+ this.setDoorInfo(wall2.children[1]);
+ this.wallNum += 1;
break;
-
}
@@ -950,7 +963,7 @@ export default class MapConroler extends cc.Component {
case "upleft": case "leftup":
wall.angle = 90;
wall.getChildByName("icon").angle = -90;
- wall.getChildByName("icon").y += 5;
+ wall.getChildByName("icon").y += 0;
wall.getChildByName("icon").x -= 1.3;
break;
case "downright": case "rightdown":
@@ -962,7 +975,7 @@ export default class MapConroler extends cc.Component {
case "downleft": case "leftdown":
wall.angle = 180;
wall.getChildByName("icon").angle = -180;
- wall.getChildByName("icon").x += 4.5;
+ wall.getChildByName("icon").x -= 0.5;
wall.getChildByName("icon").y += 3.2;
break;
}
@@ -977,10 +990,13 @@ export default class MapConroler extends cc.Component {
) {
wall.zIndex = 100 + posX - posY * 3;
}
- else if (direction == "rightup" || direction == "upright" || direction == "rightdown" || direction == "downright" || direction == "downleft") {
+ else if (direction == "rightdown" || direction == "downright") {
+ wall.zIndex = -20 + posX - posY * 3;
+ }
+ else if (direction == "rightup" || direction == "upright") {
wall.zIndex = 50 + posX - posY * 3;
}
- else if (direction == "left" || direction == "leftdown") {
+ else if (direction == "left" || direction == "leftdown" || direction == "downleft") {
wall.zIndex = 70 + posX - posY * 3;
}
else wall.zIndex = 70 + posX - posY * 3;
diff --git a/assets/Script/Wall.ts b/assets/Script/Wall.ts
index 127bbb9..4239f00 100644
--- a/assets/Script/Wall.ts
+++ b/assets/Script/Wall.ts
@@ -133,14 +133,19 @@ export default class Wall extends cc.Component {
if (direction == "up") {
this.node.parent.zIndex = 100 + this.posX - this.posY * 3;
}
- else if (direction == "down" || direction == "right" ||
- direction == "rightdown" || direction == "downright"
- || direction == "rightup" || direction == "upright") {
- this.node.parent.zIndex = 50 + this.posX - this.posY * 3;
+ else if (direction == "down" || direction == "right") {
+ this.node.parent.zIndex = 20 + this.posX - this.posY * 3;
}
- else if (direction == "left" || direction == "leftdown" || direction == "downleft") {
+ else if (direction == "downleft" || direction == "downright" || direction == "rightup"
+ || direction == "rightdown") {
+ this.node.parent.zIndex = 20 + this.posX - this.posY * 3;
+ }
+ else if (direction == "left" || direction == "leftup" || direction == "upleft") {
this.node.parent.zIndex = 70 + this.posX - this.posY * 3;
}
+ else if (direction == "leftdown" || direction == "upright") {
+ this.node.parent.zIndex = 100 + this.posX - this.posY * 3;
+ }
else this.node.parent.zIndex = 70 + this.posX - this.posY * 3;
MapConroler._instance.mapBlocksWall[this.posX][this.posY].getComponent("MapBlock").block_Id = "Wall";
@@ -181,7 +186,8 @@ export default class Wall extends cc.Component {
if (this.wall_SpriteFrames) {
let name = this.color + "color" + (length + double);
var spriteFrame = this.wall_SpriteFrames._spriteFrames[name];
- this.node.getComponent(cc.Sprite).spriteFrame = spriteFrame;
+ if (this.node.getComponent(cc.Sprite)) this.node.getComponent(cc.Sprite).spriteFrame = spriteFrame;
+ if (this.node.getChildByName("icon")) this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame;
}
if (this.down_SpriteFrames) {
let name2 = this.color + "down" + (length + double);
diff --git a/assets/TextureBlock/block/door.plist b/assets/TextureBlock/block/door.plist
index 5268610..1f84b94 100644
--- a/assets/TextureBlock/block/door.plist
+++ b/assets/TextureBlock/block/door.plist
@@ -15,7 +15,7 @@
spriteSourceSize
{138,69}
textureRect
- {{741,1190},{138,69}}
+ {{755,1029},{138,69}}
textureRotated
@@ -30,7 +30,7 @@
spriteSourceSize
{258,69}
textureRect
- {{261,1113},{258,69}}
+ {{356,923},{258,69}}
textureRotated
@@ -45,7 +45,7 @@
spriteSourceSize
{378,69}
textureRect
- {{571,285},{378,69}}
+ {{381,600},{378,69}}
textureRotated
@@ -60,7 +60,7 @@
spriteSourceSize
{61,146}
textureRect
- {{261,1247},{61,146}}
+ {{761,547},{61,146}}
textureRotated
@@ -75,7 +75,7 @@
spriteSourceSize
{61,266}
textureRect
- {{578,482},{61,266}}
+ {{1,925},{61,266}}
textureRotated
@@ -90,7 +90,7 @@
spriteSourceSize
{61,386}
textureRect
- {{191,356},{61,386}}
+ {{389,253},{61,386}}
textureRotated
@@ -105,7 +105,7 @@
spriteSourceSize
{138,69}
textureRect
- {{584,901},{138,69}}
+ {{759,673},{138,69}}
textureRotated
@@ -120,7 +120,7 @@
spriteSourceSize
{258,69}
textureRect
- {{317,490},{258,69}}
+ {{759,744},{258,69}}
textureRotated
@@ -135,7 +135,7 @@
spriteSourceSize
{378,69}
textureRect
- {{191,1},{378,69}}
+ {{1,254},{378,69}}
textureRotated
@@ -150,9 +150,9 @@
spriteSourceSize
{61,146}
textureRect
- {{65,1167},{61,146}}
+ {{779,169},{61,146}}
textureRotated
-
+
1color5.png
@@ -165,7 +165,7 @@
spriteSourceSize
{61,267}
textureRect
- {{579,356},{61,267}}
+ {{1,673},{61,267}}
textureRotated
@@ -180,9 +180,9 @@
spriteSourceSize
{61,387}
textureRect
- {{1,390},{61,387}}
+ {{390,1},{61,387}}
textureRotated
-
+
2color1.png
@@ -195,9 +195,9 @@
spriteSourceSize
{138,69}
textureRect
- {{733,613},{138,69}}
+ {{617,745},{138,69}}
textureRotated
-
+
2color2.png
@@ -210,7 +210,7 @@
spriteSourceSize
{258,69}
textureRect
- {{317,561},{258,69}}
+ {{756,886},{258,69}}
textureRotated
@@ -225,7 +225,7 @@
spriteSourceSize
{378,69}
textureRect
- {{191,72},{378,69}}
+ {{381,316},{378,69}}
textureRotated
@@ -240,9 +240,9 @@
spriteSourceSize
{61,146}
textureRect
- {{696,972},{61,146}}
+ {{777,232},{61,146}}
textureRotated
-
+
2color5.png
@@ -255,7 +255,7 @@
spriteSourceSize
{61,266}
textureRect
- {{317,632},{61,266}}
+ {{1,862},{61,266}}
textureRotated
@@ -270,9 +270,9 @@
spriteSourceSize
{61,386}
textureRect
- {{64,779},{61,386}}
+ {{1,128},{61,386}}
textureRotated
-
+
3color1.png
@@ -285,7 +285,7 @@
spriteSourceSize
{138,69}
textureRect
- {{724,901},{138,69}}
+ {{616,816},{138,69}}
textureRotated
@@ -300,7 +300,7 @@
spriteSourceSize
{258,69}
textureRect
- {{316,695},{258,69}}
+ {{756,957},{258,69}}
textureRotated
@@ -315,7 +315,7 @@
spriteSourceSize
{378,69}
textureRect
- {{571,1},{378,69}}
+ {{1,325},{378,69}}
textureRotated
@@ -330,7 +330,7 @@
spriteSourceSize
{61,146}
textureRect
- {{557,1120},{61,146}}
+ {{777,295},{61,146}}
textureRotated
@@ -345,9 +345,9 @@
spriteSourceSize
{61,267}
textureRect
- {{190,688},{61,267}}
+ {{1,736},{61,267}}
textureRotated
-
+
3color6.png
@@ -360,9 +360,9 @@
spriteSourceSize
{61,387}
textureRect
- {{65,1},{61,387}}
+ {{390,64},{61,387}}
textureRotated
-
+
4color1.png
@@ -375,7 +375,7 @@
spriteSourceSize
{138,69}
textureRect
- {{409,1247},{138,69}}
+ {{616,887},{138,69}}
textureRotated
@@ -390,9 +390,9 @@
spriteSourceSize
{258,69}
textureRect
- {{316,766},{258,69}}
+ {{1,1001},{258,69}}
textureRotated
-
+
4color3.png
@@ -405,7 +405,7 @@
spriteSourceSize
{378,69}
textureRect
- {{191,143},{378,69}}
+ {{381,387},{378,69}}
textureRotated
@@ -420,7 +420,7 @@
spriteSourceSize
{61,146}
textureRect
- {{529,1183},{61,146}}
+ {{761,358},{61,146}}
textureRotated
@@ -435,9 +435,9 @@
spriteSourceSize
{61,267}
textureRect
- {{254,419},{61,267}}
+ {{348,671},{61,267}}
textureRotated
-
+
4color6.png
@@ -450,9 +450,9 @@
spriteSourceSize
{61,387}
textureRect
- {{1,779},{61,387}}
+ {{1,65},{61,387}}
textureRotated
-
+
5color1.png
@@ -465,7 +465,7 @@
spriteSourceSize
{138,69}
textureRect
- {{549,1246},{138,69}}
+ {{616,958},{138,69}}
textureRotated
@@ -480,9 +480,9 @@
spriteSourceSize
{258,69}
textureRect
- {{316,837},{258,69}}
+ {{72,1001},{258,69}}
textureRotated
-
+
5color3.png
@@ -495,7 +495,7 @@
spriteSourceSize
{378,69}
textureRect
- {{571,72},{378,69}}
+ {{1,396},{378,69}}
textureRotated
@@ -510,9 +510,9 @@
spriteSourceSize
{61,146}
textureRect
- {{716,753},{61,146}}
+ {{761,421},{61,146}}
textureRotated
-
+
5color5.png
@@ -525,7 +525,7 @@
spriteSourceSize
{61,266}
textureRect
- {{316,908},{61,266}}
+ {{348,797},{61,266}}
textureRotated
@@ -540,9 +540,9 @@
spriteSourceSize
{61,386}
textureRect
- {{127,390},{61,386}}
+ {{389,190},{61,386}}
textureRotated
-
+
6color1.png
@@ -555,9 +555,9 @@
spriteSourceSize
{138,69}
textureRect
- {{842,747},{138,69}}
+ {{356,1177},{138,69}}
textureRotated
-
+
6color2.png
@@ -570,7 +570,7 @@
spriteSourceSize
{258,69}
textureRect
- {{190,957},{258,69}}
+ {{143,1001},{258,69}}
textureRotated
@@ -585,7 +585,7 @@
spriteSourceSize
{378,69}
textureRect
- {{191,214},{378,69}}
+ {{381,458},{378,69}}
textureRotated
@@ -600,9 +600,9 @@
spriteSourceSize
{61,146}
textureRect
- {{779,753},{61,146}}
+ {{761,484},{61,146}}
textureRotated
-
+
6color5.png
@@ -615,9 +615,9 @@
spriteSourceSize
{61,267}
textureRect
- {{253,688},{61,267}}
+ {{348,734},{61,267}}
textureRotated
-
+
6color6.png
@@ -630,7 +630,7 @@
spriteSourceSize
{61,387}
textureRect
- {{64,390},{61,387}}
+ {{956,71},{61,387}}
textureRotated
@@ -645,7 +645,7 @@
spriteSourceSize
{138,69}
textureRect
- {{759,1119},{138,69}}
+ {{615,1029},{138,69}}
textureRotated
@@ -660,9 +660,9 @@
spriteSourceSize
{258,69}
textureRect
- {{261,971},{258,69}}
+ {{214,1001},{258,69}}
textureRotated
-
+
7color3.png
@@ -675,7 +675,7 @@
spriteSourceSize
{378,69}
textureRect
- {{571,143},{378,69}}
+ {{1,467},{378,69}}
textureRotated
@@ -690,9 +690,9 @@
spriteSourceSize
{62,147}
textureRect
- {{1,1168},{62,147}}
+ {{779,105},{62,147}}
textureRotated
-
+
7color5.png
@@ -705,9 +705,9 @@
spriteSourceSize
{62,267}
textureRect
- {{190,419},{62,267}}
+ {{1,609},{62,267}}
textureRotated
-
+
7color6.png
@@ -722,7 +722,7 @@
textureRect
{{1,1},{62,387}}
textureRotated
-
+
8color1.png
@@ -735,7 +735,7 @@
spriteSourceSize
{138,69}
textureRect
- {{898,894},{138,69}}
+ {{618,1100},{138,69}}
textureRotated
@@ -750,7 +750,7 @@
spriteSourceSize
{259,69}
textureRect
- {{317,419},{259,69}}
+ {{757,815},{259,69}}
textureRotated
@@ -765,7 +765,7 @@
spriteSourceSize
{378,69}
textureRect
- {{191,285},{378,69}}
+ {{381,529},{378,69}}
textureRotated
@@ -780,7 +780,7 @@
spriteSourceSize
{61,145}
textureRect
- {{913,747},{61,145}}
+ {{418,1029},{61,145}}
textureRotated
@@ -795,7 +795,7 @@
spriteSourceSize
{61,266}
textureRect
- {{261,1184},{61,266}}
+ {{348,860},{61,266}}
textureRotated
@@ -810,9 +810,9 @@
spriteSourceSize
{61,386}
textureRect
- {{127,778},{61,386}}
+ {{1,191},{61,386}}
textureRotated
-
+
9color1.png
@@ -825,7 +825,7 @@
spriteSourceSize
{138,69}
textureRect
- {{899,1034},{138,69}}
+ {{689,1100},{138,69}}
textureRotated
@@ -840,9 +840,9 @@
spriteSourceSize
{258,69}
textureRect
- {{261,1042},{258,69}}
+ {{285,1001},{258,69}}
textureRotated
-
+
9color3.png
@@ -855,7 +855,7 @@
spriteSourceSize
{378,69}
textureRect
- {{571,214},{378,69}}
+ {{1,538},{378,69}}
textureRotated
@@ -870,7 +870,7 @@
spriteSourceSize
{60,146}
textureRect
- {{128,1166},{60,146}}
+ {{356,1029},{60,146}}
textureRotated
@@ -885,7 +885,7 @@
spriteSourceSize
{61,267}
textureRect
- {{578,419},{61,267}}
+ {{1,799},{61,267}}
textureRotated
@@ -900,9 +900,9 @@
spriteSourceSize
{61,387}
textureRect
- {{128,1},{61,387}}
+ {{390,127},{61,387}}
textureRotated
-
+
dikuai.png
@@ -915,10 +915,100 @@
spriteSourceSize
{120,120}
textureRect
- {{848,356},{120,120}}
+ {{496,1133},{120,120}}
textureRotated
+ downLeft.png
+
+ aliases
+
+ spriteOffset
+ {-34,-11}
+ spriteSize
+ {76,124}
+ spriteSourceSize
+ {146,146}
+ textureRect
+ {{270,751},{76,124}}
+ textureRotated
+
+
+ downRight.png
+
+ aliases
+
+ spriteOffset
+ {33,-12}
+ spriteSize
+ {70,122}
+ spriteSourceSize
+ {146,146}
+ textureRect
+ {{269,877},{70,122}}
+ textureRotated
+
+
+ leftDown.png
+
+ aliases
+
+ spriteOffset
+ {-1,-37}
+ spriteSize
+ {140,72}
+ spriteSourceSize
+ {146,146}
+ textureRect
+ {{945,460},{140,72}}
+ textureRotated
+
+
+ leftUp.png
+
+ aliases
+
+ spriteOffset
+ {-39,16}
+ spriteSize
+ {64,114}
+ spriteSourceSize
+ {146,146}
+ textureRect
+ {{895,1028},{64,114}}
+ textureRotated
+
+
+ rightDown.png
+
+ aliases
+
+ spriteOffset
+ {-1,-35}
+ spriteSize
+ {140,76}
+ spriteSourceSize
+ {146,146}
+ textureRect
+ {{270,609},{140,76}}
+ textureRotated
+
+
+ rightUp.png
+
+ aliases
+
+ spriteOffset
+ {36,15}
+ spriteSize
+ {64,110}
+ spriteSourceSize
+ {146,146}
+ textureRect
+ {{895,1094},{64,110}}
+ textureRotated
+
+
shu_zl1.png
aliases
@@ -930,9 +1020,9 @@
spriteSourceSize
{9,42}
textureRect
- {{261,957},{9,42}}
+ {{940,105},{9,42}}
textureRotated
-
+
shu_zl1_1.png
@@ -945,7 +1035,7 @@
spriteSourceSize
{58,34}
textureRect
- {{190,1280},{58,34}}
+ {{959,35},{58,34}}
textureRotated
@@ -960,7 +1050,7 @@
spriteSourceSize
{118,34}
textureRect
- {{705,1120},{118,34}}
+ {{909,358},{118,34}}
textureRotated
@@ -975,9 +1065,9 @@
spriteSourceSize
{178,34}
textureRect
- {{521,971},{178,34}}
+ {{779,35},{178,34}}
textureRotated
-
+
shu_zl2.png
@@ -990,7 +1080,7 @@
spriteSourceSize
{40,10}
textureRect
- {{951,1},{40,10}}
+ {{928,105},{40,10}}
textureRotated
@@ -1005,7 +1095,7 @@
spriteSourceSize
{32,54}
textureRect
- {{759,545},{32,54}}
+ {{961,1},{32,54}}
textureRotated
@@ -1020,9 +1110,9 @@
spriteSourceSize
{32,59}
textureRect
- {{864,887},{32,59}}
+ {{356,994},{32,59}}
textureRotated
-
+
shu_zl2_2.png
@@ -1035,9 +1125,9 @@
spriteSourceSize
{32,114}
textureRect
- {{689,1261},{32,114}}
+ {{909,600},{32,114}}
textureRotated
-
+
shu_zl2_22.png
@@ -1050,9 +1140,9 @@
spriteSourceSize
{32,120}
textureRect
- {{847,478},{32,120}}
+ {{909,478},{32,120}}
textureRotated
-
+
shu_zl2_3.png
@@ -1065,7 +1155,7 @@
spriteSourceSize
{32,175}
textureRect
- {{577,579},{32,175}}
+ {{779,71},{32,175}}
textureRotated
@@ -1080,7 +1170,52 @@
spriteSourceSize
{32,180}
textureRect
- {{577,545},{32,180}}
+ {{779,1},{32,180}}
+ textureRotated
+
+
+ upLeft.png
+
+ aliases
+
+ spriteOffset
+ {-1,34}
+ spriteSize
+ {140,72}
+ spriteSourceSize
+ {146,146}
+ textureRect
+ {{943,602},{140,72}}
+ textureRotated
+
+
+ upRight.png
+
+ aliases
+
+ spriteOffset
+ {-2,35}
+ spriteSize
+ {140,72}
+ spriteSourceSize
+ {146,146}
+ textureRect
+ {{617,671},{140,72}}
+ textureRotated
+
+
+ wal_up.png
+
+ aliases
+
+ spriteOffset
+ {-39,16}
+ spriteSize
+ {64,114}
+ spriteSourceSize
+ {146,146}
+ textureRect
+ {{895,1028},{64,114}}
textureRotated
@@ -1095,7 +1230,7 @@
spriteSourceSize
{138,69}
textureRect
- {{899,1174},{138,69}}
+ {{760,1100},{138,69}}
textureRotated
@@ -1110,70 +1245,10 @@
spriteSourceSize
{61,146}
textureRect
- {{804,684},{61,146}}
+ {{761,610},{61,146}}
textureRotated
- wall3.png
-
- aliases
-
- spriteOffset
- {0,0}
- spriteSize
- {138,146}
- spriteSourceSize
- {138,146}
- textureRect
- {{585,613},{138,146}}
- textureRotated
-
-
- wall4.png
-
- aliases
-
- spriteOffset
- {0,0}
- spriteSize
- {137,145}
- spriteSourceSize
- {137,145}
- textureRect
- {{759,972},{137,145}}
- textureRotated
-
-
- wall5.png
-
- aliases
-
- spriteOffset
- {0,0}
- spriteSize
- {137,146}
- spriteSourceSize
- {137,146}
- textureRect
- {{557,972},{137,146}}
- textureRotated
-
-
- wall6.png
-
- aliases
-
- spriteOffset
- {0,0}
- spriteSize
- {138,146}
- spriteSourceSize
- {138,146}
- textureRect
- {{576,753},{138,146}}
- textureRotated
-
-
wall7.png
aliases
@@ -1185,7 +1260,22 @@
spriteSourceSize
{61,69}
textureRect
- {{190,1217},{61,69}}
+ {{831,1100},{61,69}}
+ textureRotated
+
+
+ wall_down.png
+
+ aliases
+
+ spriteOffset
+ {-1,-37}
+ spriteSize
+ {140,72}
+ spriteSourceSize
+ {146,146}
+ textureRect
+ {{945,460},{140,72}}
textureRotated
@@ -1200,7 +1290,7 @@
spriteSourceSize
{132,137}
textureRect
- {{842,545},{132,137}}
+ {{481,994},{132,137}}
textureRotated
@@ -1216,9 +1306,9 @@
realTextureFileName
door.png
size
- {975,1317}
+ {1018,1260}
smartupdate
- $TexturePacker:SmartUpdate:f5bae28f66ea3b1a792b8af8926caa86:2de56ca10f79f320e01cf0fec7444b62:db7a2f380db9915dc051ce2c1170bc84$
+ $TexturePacker:SmartUpdate:a481c0bc13ca6bd4b9ff4d2cf457789e:35d2cb3770c387f1c34752aed28ef2bd:db7a2f380db9915dc051ce2c1170bc84$
textureFileName
door.png
diff --git a/assets/TextureBlock/block/door.plist.meta b/assets/TextureBlock/block/door.plist.meta
index a7cb9cb..6f2f833 100644
--- a/assets/TextureBlock/block/door.plist.meta
+++ b/assets/TextureBlock/block/door.plist.meta
@@ -4,8 +4,8 @@
"importer": "asset",
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"size": {
- "width": 975,
- "height": 1317
+ "width": 1018,
+ "height": 1260
},
"type": "Texture Packer",
"subMetas": {
@@ -19,8 +19,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 741,
- "trimY": 1190,
+ "trimX": 755,
+ "trimY": 1029,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -42,8 +42,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 261,
- "trimY": 1113,
+ "trimX": 356,
+ "trimY": 923,
"width": 258,
"height": 69,
"rawWidth": 258,
@@ -65,8 +65,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 571,
- "trimY": 285,
+ "trimX": 381,
+ "trimY": 600,
"width": 378,
"height": 69,
"rawWidth": 378,
@@ -88,8 +88,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 261,
- "trimY": 1247,
+ "trimX": 761,
+ "trimY": 547,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -111,8 +111,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 578,
- "trimY": 482,
+ "trimX": 1,
+ "trimY": 925,
"width": 61,
"height": 266,
"rawWidth": 61,
@@ -134,8 +134,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 191,
- "trimY": 356,
+ "trimX": 389,
+ "trimY": 253,
"width": 61,
"height": 386,
"rawWidth": 61,
@@ -157,8 +157,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 584,
- "trimY": 901,
+ "trimX": 759,
+ "trimY": 673,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -180,8 +180,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 317,
- "trimY": 490,
+ "trimX": 759,
+ "trimY": 744,
"width": 258,
"height": 69,
"rawWidth": 258,
@@ -203,8 +203,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 191,
- "trimY": 1,
+ "trimX": 1,
+ "trimY": 254,
"width": 378,
"height": 69,
"rawWidth": 378,
@@ -223,11 +223,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 65,
- "trimY": 1167,
+ "trimX": 779,
+ "trimY": 169,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -249,8 +249,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 579,
- "trimY": 356,
+ "trimX": 1,
+ "trimY": 673,
"width": 61,
"height": 267,
"rawWidth": 61,
@@ -269,11 +269,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 1,
- "trimY": 390,
+ "trimX": 390,
+ "trimY": 1,
"width": 61,
"height": 387,
"rawWidth": 61,
@@ -292,11 +292,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 733,
- "trimY": 613,
+ "trimX": 617,
+ "trimY": 745,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -318,8 +318,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 317,
- "trimY": 561,
+ "trimX": 756,
+ "trimY": 886,
"width": 258,
"height": 69,
"rawWidth": 258,
@@ -341,8 +341,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 191,
- "trimY": 72,
+ "trimX": 381,
+ "trimY": 316,
"width": 378,
"height": 69,
"rawWidth": 378,
@@ -361,11 +361,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 696,
- "trimY": 972,
+ "trimX": 777,
+ "trimY": 232,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -387,8 +387,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 317,
- "trimY": 632,
+ "trimX": 1,
+ "trimY": 862,
"width": 61,
"height": 266,
"rawWidth": 61,
@@ -407,11 +407,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 64,
- "trimY": 779,
+ "trimX": 1,
+ "trimY": 128,
"width": 61,
"height": 386,
"rawWidth": 61,
@@ -433,8 +433,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 724,
- "trimY": 901,
+ "trimX": 616,
+ "trimY": 816,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -456,8 +456,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 316,
- "trimY": 695,
+ "trimX": 756,
+ "trimY": 957,
"width": 258,
"height": 69,
"rawWidth": 258,
@@ -479,8 +479,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 571,
- "trimY": 1,
+ "trimX": 1,
+ "trimY": 325,
"width": 378,
"height": 69,
"rawWidth": 378,
@@ -502,8 +502,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 557,
- "trimY": 1120,
+ "trimX": 777,
+ "trimY": 295,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -522,11 +522,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 190,
- "trimY": 688,
+ "trimX": 1,
+ "trimY": 736,
"width": 61,
"height": 267,
"rawWidth": 61,
@@ -545,11 +545,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 65,
- "trimY": 1,
+ "trimX": 390,
+ "trimY": 64,
"width": 61,
"height": 387,
"rawWidth": 61,
@@ -571,8 +571,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 409,
- "trimY": 1247,
+ "trimX": 616,
+ "trimY": 887,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -591,11 +591,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 316,
- "trimY": 766,
+ "trimX": 1,
+ "trimY": 1001,
"width": 258,
"height": 69,
"rawWidth": 258,
@@ -617,8 +617,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 191,
- "trimY": 143,
+ "trimX": 381,
+ "trimY": 387,
"width": 378,
"height": 69,
"rawWidth": 378,
@@ -640,8 +640,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 529,
- "trimY": 1183,
+ "trimX": 761,
+ "trimY": 358,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -660,11 +660,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 254,
- "trimY": 419,
+ "trimX": 348,
+ "trimY": 671,
"width": 61,
"height": 267,
"rawWidth": 61,
@@ -683,11 +683,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
"trimX": 1,
- "trimY": 779,
+ "trimY": 65,
"width": 61,
"height": 387,
"rawWidth": 61,
@@ -709,8 +709,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 549,
- "trimY": 1246,
+ "trimX": 616,
+ "trimY": 958,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -729,11 +729,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 316,
- "trimY": 837,
+ "trimX": 72,
+ "trimY": 1001,
"width": 258,
"height": 69,
"rawWidth": 258,
@@ -755,8 +755,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 571,
- "trimY": 72,
+ "trimX": 1,
+ "trimY": 396,
"width": 378,
"height": 69,
"rawWidth": 378,
@@ -775,11 +775,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 716,
- "trimY": 753,
+ "trimX": 761,
+ "trimY": 421,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -801,8 +801,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 316,
- "trimY": 908,
+ "trimX": 348,
+ "trimY": 797,
"width": 61,
"height": 266,
"rawWidth": 61,
@@ -821,11 +821,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 127,
- "trimY": 390,
+ "trimX": 389,
+ "trimY": 190,
"width": 61,
"height": 386,
"rawWidth": 61,
@@ -844,11 +844,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 842,
- "trimY": 747,
+ "trimX": 356,
+ "trimY": 1177,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -870,8 +870,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 190,
- "trimY": 957,
+ "trimX": 143,
+ "trimY": 1001,
"width": 258,
"height": 69,
"rawWidth": 258,
@@ -893,8 +893,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 191,
- "trimY": 214,
+ "trimX": 381,
+ "trimY": 458,
"width": 378,
"height": 69,
"rawWidth": 378,
@@ -913,11 +913,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 779,
- "trimY": 753,
+ "trimX": 761,
+ "trimY": 484,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -936,11 +936,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 253,
- "trimY": 688,
+ "trimX": 348,
+ "trimY": 734,
"width": 61,
"height": 267,
"rawWidth": 61,
@@ -962,8 +962,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 64,
- "trimY": 390,
+ "trimX": 956,
+ "trimY": 71,
"width": 61,
"height": 387,
"rawWidth": 61,
@@ -985,8 +985,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 759,
- "trimY": 1119,
+ "trimX": 615,
+ "trimY": 1029,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -1005,11 +1005,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 261,
- "trimY": 971,
+ "trimX": 214,
+ "trimY": 1001,
"width": 258,
"height": 69,
"rawWidth": 258,
@@ -1031,8 +1031,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 571,
- "trimY": 143,
+ "trimX": 1,
+ "trimY": 467,
"width": 378,
"height": 69,
"rawWidth": 378,
@@ -1051,11 +1051,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 1,
- "trimY": 1168,
+ "trimX": 779,
+ "trimY": 105,
"width": 62,
"height": 147,
"rawWidth": 62,
@@ -1074,11 +1074,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 190,
- "trimY": 419,
+ "trimX": 1,
+ "trimY": 609,
"width": 62,
"height": 267,
"rawWidth": 62,
@@ -1097,7 +1097,7 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
"trimX": 1,
@@ -1123,8 +1123,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 898,
- "trimY": 894,
+ "trimX": 618,
+ "trimY": 1100,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -1146,8 +1146,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 317,
- "trimY": 419,
+ "trimX": 757,
+ "trimY": 815,
"width": 259,
"height": 69,
"rawWidth": 259,
@@ -1169,8 +1169,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 191,
- "trimY": 285,
+ "trimX": 381,
+ "trimY": 529,
"width": 378,
"height": 69,
"rawWidth": 378,
@@ -1192,8 +1192,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 913,
- "trimY": 747,
+ "trimX": 418,
+ "trimY": 1029,
"width": 61,
"height": 145,
"rawWidth": 61,
@@ -1215,8 +1215,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 261,
- "trimY": 1184,
+ "trimX": 348,
+ "trimY": 860,
"width": 61,
"height": 266,
"rawWidth": 61,
@@ -1235,11 +1235,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 127,
- "trimY": 778,
+ "trimX": 1,
+ "trimY": 191,
"width": 61,
"height": 386,
"rawWidth": 61,
@@ -1261,8 +1261,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 899,
- "trimY": 1034,
+ "trimX": 689,
+ "trimY": 1100,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -1281,11 +1281,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 261,
- "trimY": 1042,
+ "trimX": 285,
+ "trimY": 1001,
"width": 258,
"height": 69,
"rawWidth": 258,
@@ -1307,8 +1307,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 571,
- "trimY": 214,
+ "trimX": 1,
+ "trimY": 538,
"width": 378,
"height": 69,
"rawWidth": 378,
@@ -1330,8 +1330,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 128,
- "trimY": 1166,
+ "trimX": 356,
+ "trimY": 1029,
"width": 60,
"height": 146,
"rawWidth": 60,
@@ -1353,8 +1353,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 578,
- "trimY": 419,
+ "trimX": 1,
+ "trimY": 799,
"width": 61,
"height": 267,
"rawWidth": 61,
@@ -1373,11 +1373,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 128,
- "trimY": 1,
+ "trimX": 390,
+ "trimY": 127,
"width": 61,
"height": 387,
"rawWidth": 61,
@@ -1399,8 +1399,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 848,
- "trimY": 356,
+ "trimX": 496,
+ "trimY": 1133,
"width": 120,
"height": 120,
"rawWidth": 120,
@@ -1412,6 +1412,144 @@
"spriteType": "normal",
"subMetas": {}
},
+ "downLeft.png": {
+ "ver": "1.0.6",
+ "uuid": "bd8e35a7-f384-4898-9af4-58e6fcea5c1c",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": -34,
+ "offsetY": -11,
+ "trimX": 270,
+ "trimY": 751,
+ "width": 76,
+ "height": 124,
+ "rawWidth": 146,
+ "rawHeight": 146,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "downRight.png": {
+ "ver": "1.0.6",
+ "uuid": "80f35751-d652-4086-8d03-c7d67a2157ed",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 33,
+ "offsetY": -12,
+ "trimX": 269,
+ "trimY": 877,
+ "width": 70,
+ "height": 122,
+ "rawWidth": 146,
+ "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",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": -1,
+ "offsetY": -37,
+ "trimX": 945,
+ "trimY": 460,
+ "width": 140,
+ "height": 72,
+ "rawWidth": 146,
+ "rawHeight": 146,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "leftUp.png": {
+ "ver": "1.0.6",
+ "uuid": "180c4165-112b-4a25-8631-f431f5abd9d1",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": -39,
+ "offsetY": 16,
+ "trimX": 895,
+ "trimY": 1028,
+ "width": 64,
+ "height": 114,
+ "rawWidth": 146,
+ "rawHeight": 146,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "rightDown.png": {
+ "ver": "1.0.6",
+ "uuid": "2ba1f715-79aa-4ceb-8590-ea2271e76f71",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": -1,
+ "offsetY": -35,
+ "trimX": 270,
+ "trimY": 609,
+ "width": 140,
+ "height": 76,
+ "rawWidth": 146,
+ "rawHeight": 146,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "rightUp.png": {
+ "ver": "1.0.6",
+ "uuid": "cfcc36af-42b3-41a5-874e-bb87f2ad3af1",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": 36,
+ "offsetY": 15,
+ "trimX": 895,
+ "trimY": 1094,
+ "width": 64,
+ "height": 110,
+ "rawWidth": 146,
+ "rawHeight": 146,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
"shu_zl1.png": {
"ver": "1.0.6",
"uuid": "4c2ac211-077a-4783-92b7-42964571ebfe",
@@ -1419,11 +1557,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 261,
- "trimY": 957,
+ "trimX": 940,
+ "trimY": 105,
"width": 9,
"height": 42,
"rawWidth": 9,
@@ -1445,8 +1583,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 190,
- "trimY": 1280,
+ "trimX": 959,
+ "trimY": 35,
"width": 58,
"height": 34,
"rawWidth": 58,
@@ -1468,8 +1606,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 705,
- "trimY": 1120,
+ "trimX": 909,
+ "trimY": 358,
"width": 118,
"height": 34,
"rawWidth": 118,
@@ -1488,11 +1626,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 521,
- "trimY": 971,
+ "trimX": 779,
+ "trimY": 35,
"width": 178,
"height": 34,
"rawWidth": 178,
@@ -1514,8 +1652,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 951,
- "trimY": 1,
+ "trimX": 928,
+ "trimY": 105,
"width": 40,
"height": 10,
"rawWidth": 40,
@@ -1537,8 +1675,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 759,
- "trimY": 545,
+ "trimX": 961,
+ "trimY": 1,
"width": 32,
"height": 54,
"rawWidth": 32,
@@ -1557,11 +1695,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 864,
- "trimY": 887,
+ "trimX": 356,
+ "trimY": 994,
"width": 32,
"height": 59,
"rawWidth": 32,
@@ -1580,11 +1718,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 689,
- "trimY": 1261,
+ "trimX": 909,
+ "trimY": 600,
"width": 32,
"height": 114,
"rawWidth": 32,
@@ -1603,10 +1741,10 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 847,
+ "trimX": 909,
"trimY": 478,
"width": 32,
"height": 120,
@@ -1629,8 +1767,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 577,
- "trimY": 579,
+ "trimX": 779,
+ "trimY": 71,
"width": 32,
"height": 175,
"rawWidth": 32,
@@ -1652,8 +1790,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 577,
- "trimY": 545,
+ "trimX": 779,
+ "trimY": 1,
"width": 32,
"height": 180,
"rawWidth": 32,
@@ -1665,6 +1803,75 @@
"spriteType": "normal",
"subMetas": {}
},
+ "upLeft.png": {
+ "ver": "1.0.6",
+ "uuid": "80fadb18-45ad-44f2-8fb0-ab08d70c375d",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": -1,
+ "offsetY": 34,
+ "trimX": 943,
+ "trimY": 602,
+ "width": 140,
+ "height": 72,
+ "rawWidth": 146,
+ "rawHeight": 146,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "upRight.png": {
+ "ver": "1.0.6",
+ "uuid": "a77a1165-4c89-4e9c-af8c-f3b0e16855bd",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": -2,
+ "offsetY": 35,
+ "trimX": 617,
+ "trimY": 671,
+ "width": 140,
+ "height": 72,
+ "rawWidth": 146,
+ "rawHeight": 146,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "wal_up.png": {
+ "ver": "1.0.6",
+ "uuid": "d7bf7128-c00c-40c3-8cb9-361ae6f0eb8f",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": -39,
+ "offsetY": 16,
+ "trimX": 895,
+ "trimY": 1028,
+ "width": 64,
+ "height": 114,
+ "rawWidth": 146,
+ "rawHeight": 146,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
"wall1.png": {
"ver": "1.0.6",
"uuid": "6db2aafd-c221-4be9-a20b-5bb361fe22ef",
@@ -1675,8 +1882,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 899,
- "trimY": 1174,
+ "trimX": 760,
+ "trimY": 1100,
"width": 138,
"height": 69,
"rawWidth": 138,
@@ -1698,8 +1905,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 804,
- "trimY": 684,
+ "trimX": 761,
+ "trimY": 610,
"width": 61,
"height": 146,
"rawWidth": 61,
@@ -1711,98 +1918,6 @@
"spriteType": "normal",
"subMetas": {}
},
- "wall3.png": {
- "ver": "1.0.6",
- "uuid": "232d4cf2-be5a-4a98-8d4d-10edb8325e08",
- "importer": "sprite-frame",
- "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": true,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 585,
- "trimY": 613,
- "width": 138,
- "height": 146,
- "rawWidth": 138,
- "rawHeight": 146,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "wall4.png": {
- "ver": "1.0.6",
- "uuid": "b679c771-a901-4df3-a592-4ebd4cad002e",
- "importer": "sprite-frame",
- "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 759,
- "trimY": 972,
- "width": 137,
- "height": 145,
- "rawWidth": 137,
- "rawHeight": 145,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "wall5.png": {
- "ver": "1.0.6",
- "uuid": "4891e811-ae55-4277-b9de-7592e8016504",
- "importer": "sprite-frame",
- "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 557,
- "trimY": 972,
- "width": 137,
- "height": 146,
- "rawWidth": 137,
- "rawHeight": 146,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "wall6.png": {
- "ver": "1.0.6",
- "uuid": "6aba7f92-7bd5-4b20-8a55-7730e1bfa75d",
- "importer": "sprite-frame",
- "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 576,
- "trimY": 753,
- "width": 138,
- "height": 146,
- "rawWidth": 138,
- "rawHeight": 146,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
"wall7.png": {
"ver": "1.0.6",
"uuid": "11ca11bf-c649-466a-aa87-a88c13ef46ca",
@@ -1810,11 +1925,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 190,
- "trimY": 1217,
+ "trimX": 831,
+ "trimY": 1100,
"width": 61,
"height": 69,
"rawWidth": 61,
@@ -1826,6 +1941,29 @@
"spriteType": "normal",
"subMetas": {}
},
+ "wall_down.png": {
+ "ver": "1.0.6",
+ "uuid": "0f8f8b47-2b3d-44e1-a0ca-f5a0f39ccb4f",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": -1,
+ "offsetY": -37,
+ "trimX": 945,
+ "trimY": 460,
+ "width": 140,
+ "height": 72,
+ "rawWidth": 146,
+ "rawHeight": 146,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
"zhangai.png": {
"ver": "1.0.6",
"uuid": "ef7dfa4e-4d74-4723-b2b9-4dd028f6bbfe",
@@ -1836,8 +1974,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 842,
- "trimY": 545,
+ "trimX": 481,
+ "trimY": 994,
"width": 132,
"height": 137,
"rawWidth": 132,
diff --git a/assets/TextureBlock/block/door.png b/assets/TextureBlock/block/door.png
index 21a655c..8787207 100644
Binary files a/assets/TextureBlock/block/door.png and b/assets/TextureBlock/block/door.png differ
diff --git a/assets/TextureBlock/block/door.png.meta b/assets/TextureBlock/block/door.png.meta
index 6dbec03..696343c 100644
--- a/assets/TextureBlock/block/door.png.meta
+++ b/assets/TextureBlock/block/door.png.meta
@@ -8,8 +8,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
- "width": 975,
- "height": 1317,
+ "width": 1018,
+ "height": 1260,
"platformSettings": {},
"subMetas": {}
}
\ No newline at end of file
diff --git a/assets/resources/prefab/wall/down.prefab b/assets/resources/prefab/wall/down.prefab
index f867b8b..5d4c808 100644
--- a/assets/resources/prefab/wall/down.prefab
+++ b/assets/resources/prefab/wall/down.prefab
@@ -23,20 +23,20 @@
{
"__id__": 5
},
- {
- "__id__": 11
- },
{
"__id__": 14
},
{
- "__id__": 37
+ "__id__": 17
+ },
+ {
+ "__id__": 40
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 107
+ "__id__": 110
},
"_opacity": 255,
"_color": {
@@ -199,24 +199,28 @@
"_parent": {
"__id__": 1
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
"_active": true,
"_components": [
- {
- "__id__": 6
- },
- {
- "__id__": 7
- },
- {
- "__id__": 8
- },
{
"__id__": 9
+ },
+ {
+ "__id__": 10
+ },
+ {
+ "__id__": 11
+ },
+ {
+ "__id__": 12
}
],
"_prefab": {
- "__id__": 10
+ "__id__": 13
},
"_opacity": 255,
"_color": {
@@ -265,6 +269,114 @@
"groupIndex": 0,
"_id": ""
},
+ {
+ "__type__": "cc.Node",
+ "_name": "num",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 5
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 7
+ }
+ ],
+ "_prefab": {
+ "__id__": 8
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 0,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 68,
+ 49,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "febdyZFdNEoYVDzrHtexXj",
+ "sync": false
+ },
{
"__type__": "cc.Sprite",
"_name": "",
@@ -409,11 +521,11 @@
"_active": false,
"_components": [
{
- "__id__": 12
+ "__id__": 15
}
],
"_prefab": {
- "__id__": 13
+ "__id__": 16
},
"_opacity": 255,
"_color": {
@@ -467,7 +579,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 11
+ "__id__": 14
},
"_enabled": true,
"_materials": [
@@ -512,22 +624,22 @@
},
"_children": [
{
- "__id__": 15
+ "__id__": 18
},
{
- "__id__": 21
+ "__id__": 24
},
{
- "__id__": 26
+ "__id__": 29
},
{
- "__id__": 31
+ "__id__": 34
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 36
+ "__id__": 39
},
"_opacity": 255,
"_color": {
@@ -581,21 +693,21 @@
"_name": "freeze0",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 16
+ "__id__": 19
}
],
"_active": false,
"_components": [
{
- "__id__": 19
+ "__id__": 22
}
],
"_prefab": {
- "__id__": 20
+ "__id__": 23
},
"_opacity": 255,
"_color": {
@@ -649,17 +761,17 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 15
+ "__id__": 18
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 17
+ "__id__": 20
}
],
"_prefab": {
- "__id__": 18
+ "__id__": 21
},
"_opacity": 0,
"_color": {
@@ -713,7 +825,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 16
+ "__id__": 19
},
"_enabled": true,
"_materials": [
@@ -757,7 +869,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 15
+ "__id__": 18
},
"_enabled": false,
"_materials": [
@@ -800,21 +912,21 @@
"_name": "freeze1",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 22
+ "__id__": 25
}
],
"_active": false,
"_components": [
{
- "__id__": 24
+ "__id__": 27
}
],
"_prefab": {
- "__id__": 25
+ "__id__": 28
},
"_opacity": 255,
"_color": {
@@ -868,13 +980,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 21
+ "__id__": 24
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 23
+ "__id__": 26
},
"_opacity": 255,
"_color": {
@@ -939,7 +1051,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 21
+ "__id__": 24
},
"_enabled": true,
"_materials": [
@@ -984,21 +1096,21 @@
"_name": "freeze2",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 27
+ "__id__": 30
}
],
"_active": false,
"_components": [
{
- "__id__": 29
+ "__id__": 32
}
],
"_prefab": {
- "__id__": 30
+ "__id__": 33
},
"_opacity": 255,
"_color": {
@@ -1052,13 +1164,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 26
+ "__id__": 29
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 28
+ "__id__": 31
},
"_opacity": 255,
"_color": {
@@ -1123,7 +1235,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 26
+ "__id__": 29
},
"_enabled": true,
"_materials": [
@@ -1168,21 +1280,21 @@
"_name": "freeze3",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 32
+ "__id__": 35
}
],
"_active": false,
"_components": [
{
- "__id__": 34
+ "__id__": 37
}
],
"_prefab": {
- "__id__": 35
+ "__id__": 38
},
"_opacity": 255,
"_color": {
@@ -1236,13 +1348,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 31
+ "__id__": 34
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 33
+ "__id__": 36
},
"_opacity": 255,
"_color": {
@@ -1307,7 +1419,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 31
+ "__id__": 34
},
"_enabled": true,
"_materials": [
@@ -1367,22 +1479,22 @@
},
"_children": [
{
- "__id__": 38
+ "__id__": 41
},
{
- "__id__": 46
+ "__id__": 49
},
{
- "__id__": 66
+ "__id__": 69
},
{
- "__id__": 86
+ "__id__": 89
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 106
+ "__id__": 109
},
"_opacity": 255,
"_color": {
@@ -1436,20 +1548,20 @@
"_name": "open0",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 39
+ "__id__": 42
},
{
- "__id__": 42
+ "__id__": 45
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 45
+ "__id__": 48
},
"_opacity": 255,
"_color": {
@@ -1503,113 +1615,8 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 38
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 40
- }
- ],
- "_prefab": {
"__id__": 41
},
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 0,
- "g": 255,
- "b": 248,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 55,
- "height": 25
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.346,
- -28.534,
- 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__": 39
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": null,
- "_type": 3,
- "_sizeMode": 0,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 1,
- "_isTrimmedMode": true,
- "_atlas": null,
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "cer2tXus1Nt69KWFYLVHw4",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "node2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 38
- },
"_children": [],
"_active": true,
"_components": [
@@ -1635,14 +1642,14 @@
},
"_anchorPoint": {
"__type__": "cc.Vec2",
- "x": 1,
+ "x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 112.862,
+ -2.346,
-28.534,
0,
0,
@@ -1697,6 +1704,111 @@
"_atlas": null,
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "cer2tXus1Nt69KWFYLVHw4",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "node2",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 41
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 46
+ }
+ ],
+ "_prefab": {
+ "__id__": 47
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 0,
+ "g": 255,
+ "b": 248,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 55,
+ "height": 25
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 1,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 112.862,
+ -28.534,
+ 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__": 45
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": null,
+ "_type": 3,
+ "_sizeMode": 0,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 1,
+ "_isTrimmedMode": true,
+ "_atlas": null,
+ "_id": ""
+ },
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -1724,26 +1836,26 @@
"_name": "open1",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 47
+ "__id__": 50
},
{
- "__id__": 53
- },
- {
- "__id__": 59
+ "__id__": 56
},
{
"__id__": 62
+ },
+ {
+ "__id__": 65
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 65
+ "__id__": 68
},
"_opacity": 255,
"_color": {
@@ -1797,21 +1909,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [
{
- "__id__": 48
+ "__id__": 51
}
],
"_active": true,
"_components": [
{
- "__id__": 51
+ "__id__": 54
}
],
"_prefab": {
- "__id__": 52
+ "__id__": 55
},
"_opacity": 255,
"_color": {
@@ -1865,17 +1977,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 47
+ "__id__": 50
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 49
+ "__id__": 52
}
],
"_prefab": {
- "__id__": 50
+ "__id__": 53
},
"_opacity": 255,
"_color": {
@@ -1929,7 +2041,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 48
+ "__id__": 51
},
"_enabled": true,
"_materials": [
@@ -1974,7 +2086,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 47
+ "__id__": 50
},
"_enabled": true,
"_materials": [
@@ -2019,21 +2131,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [
{
- "__id__": 54
+ "__id__": 57
}
],
"_active": true,
"_components": [
{
- "__id__": 57
+ "__id__": 60
}
],
"_prefab": {
- "__id__": 58
+ "__id__": 61
},
"_opacity": 255,
"_color": {
@@ -2087,17 +2199,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 53
+ "__id__": 56
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 55
+ "__id__": 58
}
],
"_prefab": {
- "__id__": 56
+ "__id__": 59
},
"_opacity": 255,
"_color": {
@@ -2151,7 +2263,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 54
+ "__id__": 57
},
"_enabled": true,
"_materials": [
@@ -2196,7 +2308,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 53
+ "__id__": 56
},
"_enabled": true,
"_materials": [
@@ -2241,116 +2353,7 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 46
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 60
- }
- ],
- "_prefab": {
- "__id__": 61
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 9,
- "height": 42
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.731,
- -25.614,
- 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__": 59
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
- },
- "_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": "3bl44LIkNH2aAXqlxp7wid",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "New Sprite",
- "_objFlags": 0,
- "_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [],
"_active": true,
@@ -2384,7 +2387,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 109.525,
+ -2.731,
-25.614,
0,
0,
@@ -2443,6 +2446,115 @@
},
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "3bl44LIkNH2aAXqlxp7wid",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "New Sprite",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 49
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 66
+ }
+ ],
+ "_prefab": {
+ "__id__": 67
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 9,
+ "height": 42
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 109.525,
+ -25.614,
+ 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__": 65
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
+ },
+ "_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": {
@@ -2470,26 +2582,26 @@
"_name": "open2",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 67
+ "__id__": 70
},
{
- "__id__": 73
- },
- {
- "__id__": 79
+ "__id__": 76
},
{
"__id__": 82
+ },
+ {
+ "__id__": 85
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 85
+ "__id__": 88
},
"_opacity": 255,
"_color": {
@@ -2543,21 +2655,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [
{
- "__id__": 68
+ "__id__": 71
}
],
"_active": true,
"_components": [
{
- "__id__": 71
+ "__id__": 74
}
],
"_prefab": {
- "__id__": 72
+ "__id__": 75
},
"_opacity": 255,
"_color": {
@@ -2611,17 +2723,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 67
+ "__id__": 70
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 69
+ "__id__": 72
}
],
"_prefab": {
- "__id__": 70
+ "__id__": 73
},
"_opacity": 255,
"_color": {
@@ -2675,7 +2787,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 68
+ "__id__": 71
},
"_enabled": true,
"_materials": [
@@ -2720,7 +2832,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 67
+ "__id__": 70
},
"_enabled": true,
"_materials": [
@@ -2765,21 +2877,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [
{
- "__id__": 74
+ "__id__": 77
}
],
"_active": true,
"_components": [
{
- "__id__": 77
+ "__id__": 80
}
],
"_prefab": {
- "__id__": 78
+ "__id__": 81
},
"_opacity": 255,
"_color": {
@@ -2833,17 +2945,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 73
+ "__id__": 76
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 75
+ "__id__": 78
}
],
"_prefab": {
- "__id__": 76
+ "__id__": 79
},
"_opacity": 255,
"_color": {
@@ -2897,7 +3009,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 74
+ "__id__": 77
},
"_enabled": true,
"_materials": [
@@ -2942,7 +3054,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 73
+ "__id__": 76
},
"_enabled": true,
"_materials": [
@@ -2987,116 +3099,7 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 66
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 80
- }
- ],
- "_prefab": {
- "__id__": 81
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 9,
- "height": 42
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.499,
- -25.614,
- 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__": 79
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
- },
- "_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": "bdEJJCb5FMargT30TILjhM",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "New Sprite",
- "_objFlags": 0,
- "_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [],
"_active": true,
@@ -3130,7 +3133,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 229.661,
+ -2.499,
-25.614,
0,
0,
@@ -3189,6 +3192,115 @@
},
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "bdEJJCb5FMargT30TILjhM",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "New Sprite",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 69
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 86
+ }
+ ],
+ "_prefab": {
+ "__id__": 87
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 9,
+ "height": 42
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 229.661,
+ -25.614,
+ 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__": 85
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
+ },
+ "_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": {
@@ -3216,26 +3328,26 @@
"_name": "open3",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 87
+ "__id__": 90
},
{
- "__id__": 93
- },
- {
- "__id__": 99
+ "__id__": 96
},
{
"__id__": 102
+ },
+ {
+ "__id__": 105
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 105
+ "__id__": 108
},
"_opacity": 255,
"_color": {
@@ -3289,21 +3401,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [
{
- "__id__": 88
+ "__id__": 91
}
],
"_active": true,
"_components": [
{
- "__id__": 91
+ "__id__": 94
}
],
"_prefab": {
- "__id__": 92
+ "__id__": 95
},
"_opacity": 255,
"_color": {
@@ -3357,17 +3469,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 87
+ "__id__": 90
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 89
+ "__id__": 92
}
],
"_prefab": {
- "__id__": 90
+ "__id__": 93
},
"_opacity": 255,
"_color": {
@@ -3421,7 +3533,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 88
+ "__id__": 91
},
"_enabled": true,
"_materials": [
@@ -3466,7 +3578,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 87
+ "__id__": 90
},
"_enabled": true,
"_materials": [
@@ -3511,21 +3623,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [
{
- "__id__": 94
+ "__id__": 97
}
],
"_active": true,
"_components": [
{
- "__id__": 97
+ "__id__": 100
}
],
"_prefab": {
- "__id__": 98
+ "__id__": 101
},
"_opacity": 255,
"_color": {
@@ -3579,17 +3691,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 93
+ "__id__": 96
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 95
+ "__id__": 98
}
],
"_prefab": {
- "__id__": 96
+ "__id__": 99
},
"_opacity": 255,
"_color": {
@@ -3643,7 +3755,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 94
+ "__id__": 97
},
"_enabled": true,
"_materials": [
@@ -3688,7 +3800,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 93
+ "__id__": 96
},
"_enabled": true,
"_materials": [
@@ -3733,17 +3845,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 100
+ "__id__": 103
}
],
"_prefab": {
- "__id__": 101
+ "__id__": 104
},
"_opacity": 255,
"_color": {
@@ -3797,7 +3909,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 99
+ "__id__": 102
},
"_enabled": true,
"_materials": [
@@ -3842,17 +3954,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 103
+ "__id__": 106
}
],
"_prefab": {
- "__id__": 104
+ "__id__": 107
},
"_opacity": 255,
"_color": {
@@ -3906,7 +4018,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 102
+ "__id__": 105
},
"_enabled": true,
"_materials": [
diff --git a/assets/resources/prefab/wall/downLeft.prefab b/assets/resources/prefab/wall/downLeft.prefab
index 4252244..0788064 100644
--- a/assets/resources/prefab/wall/downLeft.prefab
+++ b/assets/resources/prefab/wall/downLeft.prefab
@@ -13,7 +13,7 @@
},
{
"__type__": "cc.Node",
- "_name": "downLeft",
+ "_name": "downleft",
"_objFlags": 0,
"_parent": null,
"_children": [
@@ -22,15 +22,12 @@
},
{
"__id__": 5
- },
- {
- "__id__": 10
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 15
+ "__id__": 13
},
"_opacity": 255,
"_color": {
@@ -106,8 +103,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
- "width": 137,
- "height": 146
+ "width": 140,
+ "height": 72
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@@ -118,8 +115,8 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- -3,
- -1.5,
+ -2.999,
+ -38.149,
0,
0,
0,
@@ -159,7 +156,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "4891e811-ae55-4277-b9de-7592e8016504"
+ "__uuid__": "66cdd4ba-4c1c-4221-b6c3-7e4b6f3d3000"
},
"_type": 0,
"_sizeMode": 1,
@@ -185,7 +182,7 @@
"asset": {
"__id__": 0
},
- "fileId": "08N+M0GnhDGKw9ZkYnu55K",
+ "fileId": "0cXBppYPlK7bOjHXu/M2dR",
"sync": false
},
{
@@ -195,21 +192,25 @@
"_parent": {
"__id__": 1
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
"_active": true,
"_components": [
{
- "__id__": 6
+ "__id__": 9
},
{
- "__id__": 7
+ "__id__": 10
},
{
- "__id__": 8
+ "__id__": 11
}
],
"_prefab": {
- "__id__": 9
+ "__id__": 12
},
"_opacity": 255,
"_color": {
@@ -258,6 +259,114 @@
"groupIndex": 0,
"_id": ""
},
+ {
+ "__type__": "cc.Node",
+ "_name": "num",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 5
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 7
+ }
+ ],
+ "_prefab": {
+ "__id__": 8
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 0,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 10.519,
+ 31.608,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "dbVoqN4U9LQJm0rLaGX3/7",
+ "sync": false
+ },
{
"__type__": "87a44m5f/pPAKIrsyArSr/V",
"_name": "",
@@ -274,6 +383,7 @@
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"down_SpriteFrames": null,
+ "freezeSpine": null,
"_id": ""
},
{
@@ -352,170 +462,6 @@
"fileId": "2dQvokOBlIT7A25tUb+Jik",
"sync": false
},
- {
- "__type__": "cc.Node",
- "_name": "wall",
- "_objFlags": 0,
- "_parent": {
- "__id__": 1
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 11
- },
- {
- "__id__": 12
- },
- {
- "__id__": 13
- }
- ],
- "_prefab": {
- "__id__": 14
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 120,
- "height": 60
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -60,
- 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__": "87a44m5f/pPAKIrsyArSr/V",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 10
- },
- "_enabled": true,
- "number": null,
- "type": 4,
- "special": 0,
- "color": 0,
- "wall_SpriteFrames": {
- "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
- },
- "down_SpriteFrames": null,
- "_id": ""
- },
- {
- "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 10
- },
- "_enabled": true,
- "auto_update_point": true,
- "_id": ""
- },
- {
- "__type__": "d2addiRqXVKQ4YEp6sK5d6R",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 10
- },
- "_enabled": true,
- "_draw_collide": false,
- "can_move": false,
- "_collide_shape": 1,
- "collide_group_id": 0,
- "collide_scle": 1,
- "_radius": 50,
- "_size": {
- "__type__": "cc.Size",
- "width": 110,
- "height": 10
- },
- "_polygon_points": [
- {
- "__type__": "cc.Vec2",
- "x": -45,
- "y": -45
- },
- {
- "__type__": "cc.Vec2",
- "x": 45,
- "y": -45
- },
- {
- "__type__": "cc.Vec2",
- "x": 60,
- "y": 40
- },
- {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 70
- },
- {
- "__type__": "cc.Vec2",
- "x": -60,
- "y": 40
- }
- ],
- "_offset": {
- "__type__": "cc.Vec2",
- "x": 60,
- "y": -45
- },
- "data_string": "100",
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
- },
- "fileId": "66AGoIxQZOu5Ahe9/s8pOl",
- "sync": false
- },
{
"__type__": "cc.PrefabInfo",
"root": {
diff --git a/assets/resources/prefab/wall/downLeft.prefab.meta b/assets/resources/prefab/wall/downLeft.prefab.meta
index fde488a..34c3d96 100644
--- a/assets/resources/prefab/wall/downLeft.prefab.meta
+++ b/assets/resources/prefab/wall/downLeft.prefab.meta
@@ -1,6 +1,6 @@
{
"ver": "1.3.2",
- "uuid": "a710c09b-ab49-4276-9660-b882fcff8b24",
+ "uuid": "c60f2941-9164-45b7-a6b6-708306fcd39a",
"importer": "prefab",
"optimizationPolicy": "AUTO",
"asyncLoadAssets": false,
diff --git a/assets/resources/prefab/wall/downRight.prefab b/assets/resources/prefab/wall/downRight.prefab
index 349c141..c595882 100644
--- a/assets/resources/prefab/wall/downRight.prefab
+++ b/assets/resources/prefab/wall/downRight.prefab
@@ -13,7 +13,7 @@
},
{
"__type__": "cc.Node",
- "_name": "downRight",
+ "_name": "downright",
"_objFlags": 0,
"_parent": null,
"_children": [
@@ -22,15 +22,12 @@
},
{
"__id__": 5
- },
- {
- "__id__": 10
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 15
+ "__id__": 13
},
"_opacity": 255,
"_color": {
@@ -106,8 +103,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
- "width": 138,
- "height": 146
+ "width": 140,
+ "height": 76
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@@ -118,8 +115,8 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- -1.5,
- -1.5,
+ -1.43,
+ -32.246,
0,
0,
0,
@@ -159,7 +156,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "6aba7f92-7bd5-4b20-8a55-7730e1bfa75d"
+ "__uuid__": "2ba1f715-79aa-4ceb-8590-ea2271e76f71"
},
"_type": 0,
"_sizeMode": 1,
@@ -185,7 +182,7 @@
"asset": {
"__id__": 0
},
- "fileId": "7a5wWGuqFN35mU3w45s2NS",
+ "fileId": "afdF1qXAtMx53SnSA/u8Ps",
"sync": false
},
{
@@ -195,21 +192,25 @@
"_parent": {
"__id__": 1
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
"_active": true,
"_components": [
{
- "__id__": 6
+ "__id__": 9
},
{
- "__id__": 7
+ "__id__": 10
},
{
- "__id__": 8
+ "__id__": 11
}
],
"_prefab": {
- "__id__": 9
+ "__id__": 12
},
"_opacity": 255,
"_color": {
@@ -258,6 +259,114 @@
"groupIndex": 0,
"_id": ""
},
+ {
+ "__type__": "cc.Node",
+ "_name": "num",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 5
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 7
+ }
+ ],
+ "_prefab": {
+ "__id__": 8
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 0,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -5.08,
+ 31.062,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "dfoXua40VOVIZ0yECMF6RC",
+ "sync": false
+ },
{
"__type__": "87a44m5f/pPAKIrsyArSr/V",
"_name": "",
@@ -274,6 +383,7 @@
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"down_SpriteFrames": null,
+ "freezeSpine": null,
"_id": ""
},
{
@@ -352,170 +462,6 @@
"fileId": "487dzv0lVEAYRTrAgBdE/q",
"sync": false
},
- {
- "__type__": "cc.Node",
- "_name": "wall",
- "_objFlags": 0,
- "_parent": {
- "__id__": 1
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 11
- },
- {
- "__id__": 12
- },
- {
- "__id__": 13
- }
- ],
- "_prefab": {
- "__id__": 14
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 120,
- "height": 60
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -60,
- 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__": "87a44m5f/pPAKIrsyArSr/V",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 10
- },
- "_enabled": true,
- "number": null,
- "type": 4,
- "special": 0,
- "color": 0,
- "wall_SpriteFrames": {
- "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
- },
- "down_SpriteFrames": null,
- "_id": ""
- },
- {
- "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 10
- },
- "_enabled": true,
- "auto_update_point": true,
- "_id": ""
- },
- {
- "__type__": "d2addiRqXVKQ4YEp6sK5d6R",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 10
- },
- "_enabled": true,
- "_draw_collide": false,
- "can_move": false,
- "_collide_shape": 1,
- "collide_group_id": 0,
- "collide_scle": 1,
- "_radius": 50,
- "_size": {
- "__type__": "cc.Size",
- "width": 110,
- "height": 10
- },
- "_polygon_points": [
- {
- "__type__": "cc.Vec2",
- "x": -45,
- "y": -45
- },
- {
- "__type__": "cc.Vec2",
- "x": 45,
- "y": -45
- },
- {
- "__type__": "cc.Vec2",
- "x": 60,
- "y": 40
- },
- {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 70
- },
- {
- "__type__": "cc.Vec2",
- "x": -60,
- "y": 40
- }
- ],
- "_offset": {
- "__type__": "cc.Vec2",
- "x": 60,
- "y": -45
- },
- "data_string": "100",
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
- },
- "fileId": "9c4l7rfONPk63bPFtWj9GC",
- "sync": false
- },
{
"__type__": "cc.PrefabInfo",
"root": {
diff --git a/assets/resources/prefab/wall/left.prefab b/assets/resources/prefab/wall/left.prefab
index 6e375d6..060e492 100644
--- a/assets/resources/prefab/wall/left.prefab
+++ b/assets/resources/prefab/wall/left.prefab
@@ -23,20 +23,20 @@
{
"__id__": 5
},
- {
- "__id__": 11
- },
{
"__id__": 14
},
{
- "__id__": 37
+ "__id__": 17
+ },
+ {
+ "__id__": 40
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 107
+ "__id__": 110
},
"_opacity": 255,
"_color": {
@@ -199,24 +199,28 @@
"_parent": {
"__id__": 1
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
"_active": true,
"_components": [
- {
- "__id__": 6
- },
- {
- "__id__": 7
- },
- {
- "__id__": 8
- },
{
"__id__": 9
+ },
+ {
+ "__id__": 10
+ },
+ {
+ "__id__": 11
+ },
+ {
+ "__id__": 12
}
],
"_prefab": {
- "__id__": 10
+ "__id__": 13
},
"_opacity": 255,
"_color": {
@@ -265,6 +269,114 @@
"groupIndex": 0,
"_id": ""
},
+ {
+ "__type__": "cc.Node",
+ "_name": "num",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 5
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 7
+ }
+ ],
+ "_prefab": {
+ "__id__": 8
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 22.25,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 26,
+ 94,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "0ahXqv/FhM1pRuHeXCPtnJ",
+ "sync": false
+ },
{
"__type__": "cc.Sprite",
"_name": "",
@@ -409,11 +521,11 @@
"_active": false,
"_components": [
{
- "__id__": 12
+ "__id__": 15
}
],
"_prefab": {
- "__id__": 13
+ "__id__": 16
},
"_opacity": 255,
"_color": {
@@ -467,7 +579,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 11
+ "__id__": 14
},
"_enabled": true,
"_materials": [
@@ -512,22 +624,22 @@
},
"_children": [
{
- "__id__": 15
+ "__id__": 18
},
{
- "__id__": 21
+ "__id__": 24
},
{
- "__id__": 26
+ "__id__": 29
},
{
- "__id__": 31
+ "__id__": 34
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 36
+ "__id__": 39
},
"_opacity": 255,
"_color": {
@@ -581,21 +693,21 @@
"_name": "freeze0",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 16
+ "__id__": 19
}
],
"_active": false,
"_components": [
{
- "__id__": 19
+ "__id__": 22
}
],
"_prefab": {
- "__id__": 20
+ "__id__": 23
},
"_opacity": 255,
"_color": {
@@ -649,17 +761,17 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 15
+ "__id__": 18
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 17
+ "__id__": 20
}
],
"_prefab": {
- "__id__": 18
+ "__id__": 21
},
"_opacity": 0,
"_color": {
@@ -713,7 +825,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 16
+ "__id__": 19
},
"_enabled": true,
"_materials": [
@@ -757,7 +869,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 15
+ "__id__": 18
},
"_enabled": false,
"_materials": [
@@ -800,21 +912,21 @@
"_name": "freeze1",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 22
+ "__id__": 25
}
],
"_active": false,
"_components": [
{
- "__id__": 24
+ "__id__": 27
}
],
"_prefab": {
- "__id__": 25
+ "__id__": 28
},
"_opacity": 255,
"_color": {
@@ -868,13 +980,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 21
+ "__id__": 24
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 23
+ "__id__": 26
},
"_opacity": 255,
"_color": {
@@ -939,7 +1051,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 21
+ "__id__": 24
},
"_enabled": true,
"_materials": [
@@ -984,21 +1096,21 @@
"_name": "freeze2",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 27
+ "__id__": 30
}
],
"_active": false,
"_components": [
{
- "__id__": 29
+ "__id__": 32
}
],
"_prefab": {
- "__id__": 30
+ "__id__": 33
},
"_opacity": 255,
"_color": {
@@ -1052,13 +1164,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 26
+ "__id__": 29
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 28
+ "__id__": 31
},
"_opacity": 255,
"_color": {
@@ -1123,7 +1235,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 26
+ "__id__": 29
},
"_enabled": true,
"_materials": [
@@ -1168,21 +1280,21 @@
"_name": "freeze3",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 32
+ "__id__": 35
}
],
"_active": false,
"_components": [
{
- "__id__": 34
+ "__id__": 37
}
],
"_prefab": {
- "__id__": 35
+ "__id__": 38
},
"_opacity": 255,
"_color": {
@@ -1236,13 +1348,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 31
+ "__id__": 34
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 33
+ "__id__": 36
},
"_opacity": 255,
"_color": {
@@ -1307,7 +1419,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 31
+ "__id__": 34
},
"_enabled": true,
"_materials": [
@@ -1367,22 +1479,22 @@
},
"_children": [
{
- "__id__": 38
+ "__id__": 41
},
{
- "__id__": 46
+ "__id__": 49
},
{
- "__id__": 66
+ "__id__": 69
},
{
- "__id__": 86
+ "__id__": 89
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 106
+ "__id__": 109
},
"_opacity": 255,
"_color": {
@@ -1436,20 +1548,20 @@
"_name": "open0",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 39
+ "__id__": 42
},
{
- "__id__": 42
+ "__id__": 45
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 45
+ "__id__": 48
},
"_opacity": 255,
"_color": {
@@ -1503,113 +1615,8 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 38
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 40
- }
- ],
- "_prefab": {
"__id__": 41
},
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 0,
- "g": 255,
- "b": 248,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 55,
- "height": 25
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.346,
- -28.534,
- 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__": 39
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": null,
- "_type": 3,
- "_sizeMode": 0,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 1,
- "_isTrimmedMode": true,
- "_atlas": null,
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "50ZyhGXZlHzbfF61viafcs",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "node2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 38
- },
"_children": [],
"_active": true,
"_components": [
@@ -1635,14 +1642,14 @@
},
"_anchorPoint": {
"__type__": "cc.Vec2",
- "x": 1,
+ "x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 112.862,
+ -2.346,
-28.534,
0,
0,
@@ -1697,6 +1704,111 @@
"_atlas": null,
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "50ZyhGXZlHzbfF61viafcs",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "node2",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 41
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 46
+ }
+ ],
+ "_prefab": {
+ "__id__": 47
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 0,
+ "g": 255,
+ "b": 248,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 55,
+ "height": 25
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 1,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 112.862,
+ -28.534,
+ 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__": 45
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": null,
+ "_type": 3,
+ "_sizeMode": 0,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 1,
+ "_isTrimmedMode": true,
+ "_atlas": null,
+ "_id": ""
+ },
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -1724,26 +1836,26 @@
"_name": "open1",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 47
+ "__id__": 50
},
{
- "__id__": 53
- },
- {
- "__id__": 59
+ "__id__": 56
},
{
"__id__": 62
+ },
+ {
+ "__id__": 65
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 65
+ "__id__": 68
},
"_opacity": 255,
"_color": {
@@ -1797,21 +1909,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [
{
- "__id__": 48
+ "__id__": 51
}
],
"_active": true,
"_components": [
{
- "__id__": 51
+ "__id__": 54
}
],
"_prefab": {
- "__id__": 52
+ "__id__": 55
},
"_opacity": 255,
"_color": {
@@ -1865,17 +1977,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 47
+ "__id__": 50
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 49
+ "__id__": 52
}
],
"_prefab": {
- "__id__": 50
+ "__id__": 53
},
"_opacity": 255,
"_color": {
@@ -1929,7 +2041,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 48
+ "__id__": 51
},
"_enabled": true,
"_materials": [
@@ -1974,7 +2086,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 47
+ "__id__": 50
},
"_enabled": true,
"_materials": [
@@ -2019,21 +2131,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [
{
- "__id__": 54
+ "__id__": 57
}
],
"_active": true,
"_components": [
{
- "__id__": 57
+ "__id__": 60
}
],
"_prefab": {
- "__id__": 58
+ "__id__": 61
},
"_opacity": 255,
"_color": {
@@ -2087,17 +2199,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 53
+ "__id__": 56
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 55
+ "__id__": 58
}
],
"_prefab": {
- "__id__": 56
+ "__id__": 59
},
"_opacity": 255,
"_color": {
@@ -2151,7 +2263,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 54
+ "__id__": 57
},
"_enabled": true,
"_materials": [
@@ -2196,7 +2308,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 53
+ "__id__": 56
},
"_enabled": true,
"_materials": [
@@ -2241,116 +2353,7 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 46
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 60
- }
- ],
- "_prefab": {
- "__id__": 61
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 9,
- "height": 42
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.731,
- -25.614,
- 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__": 59
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
- },
- "_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": "45N2BGHJRAGaMY5ZjUeDK1",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "New Sprite",
- "_objFlags": 0,
- "_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [],
"_active": true,
@@ -2384,7 +2387,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 109.525,
+ -2.731,
-25.614,
0,
0,
@@ -2443,6 +2446,115 @@
},
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "45N2BGHJRAGaMY5ZjUeDK1",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "New Sprite",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 49
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 66
+ }
+ ],
+ "_prefab": {
+ "__id__": 67
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 9,
+ "height": 42
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 109.525,
+ -25.614,
+ 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__": 65
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
+ },
+ "_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": {
@@ -2470,26 +2582,26 @@
"_name": "open2",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 67
+ "__id__": 70
},
{
- "__id__": 73
- },
- {
- "__id__": 79
+ "__id__": 76
},
{
"__id__": 82
+ },
+ {
+ "__id__": 85
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 85
+ "__id__": 88
},
"_opacity": 255,
"_color": {
@@ -2543,21 +2655,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [
{
- "__id__": 68
+ "__id__": 71
}
],
"_active": true,
"_components": [
{
- "__id__": 71
+ "__id__": 74
}
],
"_prefab": {
- "__id__": 72
+ "__id__": 75
},
"_opacity": 255,
"_color": {
@@ -2611,17 +2723,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 67
+ "__id__": 70
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 69
+ "__id__": 72
}
],
"_prefab": {
- "__id__": 70
+ "__id__": 73
},
"_opacity": 255,
"_color": {
@@ -2675,7 +2787,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 68
+ "__id__": 71
},
"_enabled": true,
"_materials": [
@@ -2720,7 +2832,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 67
+ "__id__": 70
},
"_enabled": true,
"_materials": [
@@ -2765,21 +2877,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [
{
- "__id__": 74
+ "__id__": 77
}
],
"_active": true,
"_components": [
{
- "__id__": 77
+ "__id__": 80
}
],
"_prefab": {
- "__id__": 78
+ "__id__": 81
},
"_opacity": 255,
"_color": {
@@ -2833,17 +2945,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 73
+ "__id__": 76
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 75
+ "__id__": 78
}
],
"_prefab": {
- "__id__": 76
+ "__id__": 79
},
"_opacity": 255,
"_color": {
@@ -2897,7 +3009,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 74
+ "__id__": 77
},
"_enabled": true,
"_materials": [
@@ -2942,7 +3054,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 73
+ "__id__": 76
},
"_enabled": true,
"_materials": [
@@ -2987,116 +3099,7 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 66
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 80
- }
- ],
- "_prefab": {
- "__id__": 81
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 9,
- "height": 42
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.499,
- -25.614,
- 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__": 79
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
- },
- "_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": "2ekm8q7ylDCosJsRFndUmr",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "New Sprite",
- "_objFlags": 0,
- "_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [],
"_active": true,
@@ -3130,7 +3133,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 229.661,
+ -2.499,
-25.614,
0,
0,
@@ -3189,6 +3192,115 @@
},
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "2ekm8q7ylDCosJsRFndUmr",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "New Sprite",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 69
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 86
+ }
+ ],
+ "_prefab": {
+ "__id__": 87
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 9,
+ "height": 42
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 229.661,
+ -25.614,
+ 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__": 85
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
+ },
+ "_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": {
@@ -3216,26 +3328,26 @@
"_name": "open3",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 87
+ "__id__": 90
},
{
- "__id__": 93
- },
- {
- "__id__": 99
+ "__id__": 96
},
{
"__id__": 102
+ },
+ {
+ "__id__": 105
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 105
+ "__id__": 108
},
"_opacity": 255,
"_color": {
@@ -3289,21 +3401,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [
{
- "__id__": 88
+ "__id__": 91
}
],
"_active": true,
"_components": [
{
- "__id__": 91
+ "__id__": 94
}
],
"_prefab": {
- "__id__": 92
+ "__id__": 95
},
"_opacity": 255,
"_color": {
@@ -3357,17 +3469,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 87
+ "__id__": 90
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 89
+ "__id__": 92
}
],
"_prefab": {
- "__id__": 90
+ "__id__": 93
},
"_opacity": 255,
"_color": {
@@ -3421,7 +3533,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 88
+ "__id__": 91
},
"_enabled": true,
"_materials": [
@@ -3466,7 +3578,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 87
+ "__id__": 90
},
"_enabled": true,
"_materials": [
@@ -3511,21 +3623,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [
{
- "__id__": 94
+ "__id__": 97
}
],
"_active": true,
"_components": [
{
- "__id__": 97
+ "__id__": 100
}
],
"_prefab": {
- "__id__": 98
+ "__id__": 101
},
"_opacity": 255,
"_color": {
@@ -3579,17 +3691,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 93
+ "__id__": 96
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 95
+ "__id__": 98
}
],
"_prefab": {
- "__id__": 96
+ "__id__": 99
},
"_opacity": 255,
"_color": {
@@ -3643,7 +3755,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 94
+ "__id__": 97
},
"_enabled": true,
"_materials": [
@@ -3688,7 +3800,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 93
+ "__id__": 96
},
"_enabled": true,
"_materials": [
@@ -3733,17 +3845,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 100
+ "__id__": 103
}
],
"_prefab": {
- "__id__": 101
+ "__id__": 104
},
"_opacity": 255,
"_color": {
@@ -3797,7 +3909,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 99
+ "__id__": 102
},
"_enabled": true,
"_materials": [
@@ -3842,17 +3954,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 103
+ "__id__": 106
}
],
"_prefab": {
- "__id__": 104
+ "__id__": 107
},
"_opacity": 255,
"_color": {
@@ -3906,7 +4018,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 102
+ "__id__": 105
},
"_enabled": true,
"_materials": [
diff --git a/assets/resources/prefab/wall/leftdown.prefab b/assets/resources/prefab/wall/leftdown.prefab
new file mode 100644
index 0000000..51f251e
--- /dev/null
+++ b/assets/resources/prefab/wall/leftdown.prefab
@@ -0,0 +1,476 @@
+[
+ {
+ "__type__": "cc.Prefab",
+ "_name": "",
+ "_objFlags": 0,
+ "_native": "",
+ "data": {
+ "__id__": 1
+ },
+ "optimizationPolicy": 0,
+ "asyncLoadAssets": false,
+ "readonly": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "leftdown",
+ "_objFlags": 0,
+ "_parent": null,
+ "_children": [
+ {
+ "__id__": 2
+ },
+ {
+ "__id__": 5
+ }
+ ],
+ "_active": true,
+ "_components": [],
+ "_prefab": {
+ "__id__": 13
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 120,
+ "height": 120
+ },
+ "_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.Node",
+ "_name": "icon",
+ "_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": 64,
+ "height": 114
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -41.23,
+ 15.183,
+ 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__": "180c4165-112b-4a25-8631-f431f5abd9d1"
+ },
+ "_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": "20Az0LUIhCNooFpEikVm/Z",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "wall",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 1
+ },
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 9
+ },
+ {
+ "__id__": 10
+ },
+ {
+ "__id__": 11
+ }
+ ],
+ "_prefab": {
+ "__id__": 12
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 120,
+ "height": 60
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -60,
+ 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.Node",
+ "_name": "num",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 5
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 7
+ }
+ ],
+ "_prefab": {
+ "__id__": 8
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 0,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 13.803,
+ 30.67,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "3bnPJ5YNJA4638aP9ZTQo6",
+ "sync": false
+ },
+ {
+ "__type__": "87a44m5f/pPAKIrsyArSr/V",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "number": null,
+ "type": 4,
+ "special": 0,
+ "color": 0,
+ "wall_SpriteFrames": {
+ "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
+ },
+ "down_SpriteFrames": null,
+ "freezeSpine": null,
+ "_id": ""
+ },
+ {
+ "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "auto_update_point": true,
+ "_id": ""
+ },
+ {
+ "__type__": "d2addiRqXVKQ4YEp6sK5d6R",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "_draw_collide": false,
+ "can_move": false,
+ "_collide_shape": 1,
+ "collide_group_id": 0,
+ "collide_scle": 1,
+ "_radius": 50,
+ "_size": {
+ "__type__": "cc.Size",
+ "width": 110,
+ "height": 10
+ },
+ "_polygon_points": [
+ {
+ "__type__": "cc.Vec2",
+ "x": -45,
+ "y": -45
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 45,
+ "y": -45
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 60,
+ "y": 40
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 70
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": -60,
+ "y": 40
+ }
+ ],
+ "_offset": {
+ "__type__": "cc.Vec2",
+ "x": 60,
+ "y": -45
+ },
+ "data_string": "100",
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "66AGoIxQZOu5Ahe9/s8pOl",
+ "sync": false
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "",
+ "sync": false
+ }
+]
\ No newline at end of file
diff --git a/assets/resources/prefab/wall/leftdown.prefab.meta b/assets/resources/prefab/wall/leftdown.prefab.meta
new file mode 100644
index 0000000..70ef9bd
--- /dev/null
+++ b/assets/resources/prefab/wall/leftdown.prefab.meta
@@ -0,0 +1,9 @@
+{
+ "ver": "1.3.2",
+ "uuid": "6880788c-f9ff-4a7f-a2a8-d84b636c7175",
+ "importer": "prefab",
+ "optimizationPolicy": "AUTO",
+ "asyncLoadAssets": false,
+ "readonly": false,
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/assets/resources/prefab/wall/leftup.prefab b/assets/resources/prefab/wall/leftup.prefab
new file mode 100644
index 0000000..b487bf1
--- /dev/null
+++ b/assets/resources/prefab/wall/leftup.prefab
@@ -0,0 +1,476 @@
+[
+ {
+ "__type__": "cc.Prefab",
+ "_name": "",
+ "_objFlags": 0,
+ "_native": "",
+ "data": {
+ "__id__": 1
+ },
+ "optimizationPolicy": 0,
+ "asyncLoadAssets": false,
+ "readonly": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "leftup",
+ "_objFlags": 0,
+ "_parent": null,
+ "_children": [
+ {
+ "__id__": 2
+ },
+ {
+ "__id__": 5
+ }
+ ],
+ "_active": true,
+ "_components": [],
+ "_prefab": {
+ "__id__": 13
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 120,
+ "height": 120
+ },
+ "_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.Node",
+ "_name": "icon",
+ "_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": 76,
+ "height": 124
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -29.934,
+ -13.541,
+ 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__": "bd8e35a7-f384-4898-9af4-58e6fcea5c1c"
+ },
+ "_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": "adiMZrWKZCiqfb+vrwv0PO",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "wall",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 1
+ },
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 9
+ },
+ {
+ "__id__": 10
+ },
+ {
+ "__id__": 11
+ }
+ ],
+ "_prefab": {
+ "__id__": 12
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 120,
+ "height": 60
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -60,
+ -60.078,
+ 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": "num",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 5
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 7
+ }
+ ],
+ "_prefab": {
+ "__id__": 8
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 0,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 15.965,
+ 37.927,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "571mEFkJlKKZjlaxTF2a43",
+ "sync": false
+ },
+ {
+ "__type__": "87a44m5f/pPAKIrsyArSr/V",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "number": null,
+ "type": 4,
+ "special": 0,
+ "color": 0,
+ "wall_SpriteFrames": {
+ "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
+ },
+ "down_SpriteFrames": null,
+ "freezeSpine": null,
+ "_id": ""
+ },
+ {
+ "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "auto_update_point": true,
+ "_id": ""
+ },
+ {
+ "__type__": "d2addiRqXVKQ4YEp6sK5d6R",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "_draw_collide": false,
+ "can_move": false,
+ "_collide_shape": 1,
+ "collide_group_id": 0,
+ "collide_scle": 1,
+ "_radius": 50,
+ "_size": {
+ "__type__": "cc.Size",
+ "width": 10,
+ "height": 100
+ },
+ "_polygon_points": [
+ {
+ "__type__": "cc.Vec2",
+ "x": -45,
+ "y": -45
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 45,
+ "y": -45
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 60,
+ "y": 40
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 70
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": -60,
+ "y": 40
+ }
+ ],
+ "_offset": {
+ "__type__": "cc.Vec2",
+ "x": 10,
+ "y": 60
+ },
+ "data_string": "100",
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "3bosf+LTVIrKClWSc0imT9",
+ "sync": false
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "",
+ "sync": false
+ }
+]
\ No newline at end of file
diff --git a/assets/resources/prefab/wall/leftup.prefab.meta b/assets/resources/prefab/wall/leftup.prefab.meta
new file mode 100644
index 0000000..9976b5c
--- /dev/null
+++ b/assets/resources/prefab/wall/leftup.prefab.meta
@@ -0,0 +1,9 @@
+{
+ "ver": "1.3.2",
+ "uuid": "a2e2aab1-b8b2-4858-9d8c-14bdad524c08",
+ "importer": "prefab",
+ "optimizationPolicy": "AUTO",
+ "asyncLoadAssets": false,
+ "readonly": false,
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/assets/resources/prefab/wall/right.prefab b/assets/resources/prefab/wall/right.prefab
index bf1558f..cdac068 100644
--- a/assets/resources/prefab/wall/right.prefab
+++ b/assets/resources/prefab/wall/right.prefab
@@ -23,20 +23,20 @@
{
"__id__": 5
},
- {
- "__id__": 11
- },
{
"__id__": 14
},
{
- "__id__": 37
+ "__id__": 17
+ },
+ {
+ "__id__": 40
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 107
+ "__id__": 110
},
"_opacity": 255,
"_color": {
@@ -199,24 +199,28 @@
"_parent": {
"__id__": 1
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
"_active": true,
"_components": [
- {
- "__id__": 6
- },
- {
- "__id__": 7
- },
- {
- "__id__": 8
- },
{
"__id__": 9
+ },
+ {
+ "__id__": 10
+ },
+ {
+ "__id__": 11
+ },
+ {
+ "__id__": 12
}
],
"_prefab": {
- "__id__": 10
+ "__id__": 13
},
"_opacity": 255,
"_color": {
@@ -265,6 +269,114 @@
"groupIndex": 0,
"_id": ""
},
+ {
+ "__type__": "cc.Node",
+ "_name": "num",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 5
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 7
+ }
+ ],
+ "_prefab": {
+ "__id__": 8
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 22.25,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 26,
+ 90,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "1c/sIYX8hNIr2+mDJ9qxDv",
+ "sync": false
+ },
{
"__type__": "cc.Sprite",
"_name": "",
@@ -409,11 +521,11 @@
"_active": false,
"_components": [
{
- "__id__": 12
+ "__id__": 15
}
],
"_prefab": {
- "__id__": 13
+ "__id__": 16
},
"_opacity": 255,
"_color": {
@@ -467,7 +579,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 11
+ "__id__": 14
},
"_enabled": true,
"_materials": [
@@ -512,22 +624,22 @@
},
"_children": [
{
- "__id__": 15
+ "__id__": 18
},
{
- "__id__": 21
+ "__id__": 24
},
{
- "__id__": 26
+ "__id__": 29
},
{
- "__id__": 31
+ "__id__": 34
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 36
+ "__id__": 39
},
"_opacity": 255,
"_color": {
@@ -581,21 +693,21 @@
"_name": "freeze0",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 16
+ "__id__": 19
}
],
"_active": false,
"_components": [
{
- "__id__": 19
+ "__id__": 22
}
],
"_prefab": {
- "__id__": 20
+ "__id__": 23
},
"_opacity": 255,
"_color": {
@@ -649,17 +761,17 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 15
+ "__id__": 18
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 17
+ "__id__": 20
}
],
"_prefab": {
- "__id__": 18
+ "__id__": 21
},
"_opacity": 0,
"_color": {
@@ -713,7 +825,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 16
+ "__id__": 19
},
"_enabled": true,
"_materials": [
@@ -757,7 +869,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 15
+ "__id__": 18
},
"_enabled": false,
"_materials": [
@@ -800,21 +912,21 @@
"_name": "freeze1",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 22
+ "__id__": 25
}
],
"_active": false,
"_components": [
{
- "__id__": 24
+ "__id__": 27
}
],
"_prefab": {
- "__id__": 25
+ "__id__": 28
},
"_opacity": 255,
"_color": {
@@ -868,13 +980,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 21
+ "__id__": 24
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 23
+ "__id__": 26
},
"_opacity": 255,
"_color": {
@@ -939,7 +1051,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 21
+ "__id__": 24
},
"_enabled": true,
"_materials": [
@@ -984,21 +1096,21 @@
"_name": "freeze2",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 27
+ "__id__": 30
}
],
"_active": false,
"_components": [
{
- "__id__": 29
+ "__id__": 32
}
],
"_prefab": {
- "__id__": 30
+ "__id__": 33
},
"_opacity": 255,
"_color": {
@@ -1052,13 +1164,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 26
+ "__id__": 29
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 28
+ "__id__": 31
},
"_opacity": 255,
"_color": {
@@ -1123,7 +1235,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 26
+ "__id__": 29
},
"_enabled": true,
"_materials": [
@@ -1168,21 +1280,21 @@
"_name": "freeze3",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 32
+ "__id__": 35
}
],
"_active": false,
"_components": [
{
- "__id__": 34
+ "__id__": 37
}
],
"_prefab": {
- "__id__": 35
+ "__id__": 38
},
"_opacity": 255,
"_color": {
@@ -1236,13 +1348,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 31
+ "__id__": 34
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 33
+ "__id__": 36
},
"_opacity": 255,
"_color": {
@@ -1307,7 +1419,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 31
+ "__id__": 34
},
"_enabled": true,
"_materials": [
@@ -1367,22 +1479,22 @@
},
"_children": [
{
- "__id__": 38
+ "__id__": 41
},
{
- "__id__": 46
+ "__id__": 49
},
{
- "__id__": 66
+ "__id__": 69
},
{
- "__id__": 86
+ "__id__": 89
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 106
+ "__id__": 109
},
"_opacity": 255,
"_color": {
@@ -1436,20 +1548,20 @@
"_name": "open0",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 39
+ "__id__": 42
},
{
- "__id__": 42
+ "__id__": 45
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 45
+ "__id__": 48
},
"_opacity": 255,
"_color": {
@@ -1503,113 +1615,8 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 38
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 40
- }
- ],
- "_prefab": {
"__id__": 41
},
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 0,
- "g": 255,
- "b": 248,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 55,
- "height": 25
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.346,
- -28.534,
- 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__": 39
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": null,
- "_type": 3,
- "_sizeMode": 0,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 1,
- "_isTrimmedMode": true,
- "_atlas": null,
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "92GQniZR1BoYsVqPpsnxKZ",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "node2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 38
- },
"_children": [],
"_active": true,
"_components": [
@@ -1635,14 +1642,14 @@
},
"_anchorPoint": {
"__type__": "cc.Vec2",
- "x": 1,
+ "x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 112.862,
+ -2.346,
-28.534,
0,
0,
@@ -1697,6 +1704,111 @@
"_atlas": null,
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "92GQniZR1BoYsVqPpsnxKZ",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "node2",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 41
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 46
+ }
+ ],
+ "_prefab": {
+ "__id__": 47
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 0,
+ "g": 255,
+ "b": 248,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 55,
+ "height": 25
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 1,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 112.862,
+ -28.534,
+ 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__": 45
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": null,
+ "_type": 3,
+ "_sizeMode": 0,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 1,
+ "_isTrimmedMode": true,
+ "_atlas": null,
+ "_id": ""
+ },
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -1724,26 +1836,26 @@
"_name": "open1",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 47
+ "__id__": 50
},
{
- "__id__": 53
- },
- {
- "__id__": 59
+ "__id__": 56
},
{
"__id__": 62
+ },
+ {
+ "__id__": 65
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 65
+ "__id__": 68
},
"_opacity": 255,
"_color": {
@@ -1797,21 +1909,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [
{
- "__id__": 48
+ "__id__": 51
}
],
"_active": true,
"_components": [
{
- "__id__": 51
+ "__id__": 54
}
],
"_prefab": {
- "__id__": 52
+ "__id__": 55
},
"_opacity": 255,
"_color": {
@@ -1865,17 +1977,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 47
+ "__id__": 50
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 49
+ "__id__": 52
}
],
"_prefab": {
- "__id__": 50
+ "__id__": 53
},
"_opacity": 255,
"_color": {
@@ -1929,7 +2041,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 48
+ "__id__": 51
},
"_enabled": true,
"_materials": [
@@ -1974,7 +2086,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 47
+ "__id__": 50
},
"_enabled": true,
"_materials": [
@@ -2019,21 +2131,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [
{
- "__id__": 54
+ "__id__": 57
}
],
"_active": true,
"_components": [
{
- "__id__": 57
+ "__id__": 60
}
],
"_prefab": {
- "__id__": 58
+ "__id__": 61
},
"_opacity": 255,
"_color": {
@@ -2087,17 +2199,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 53
+ "__id__": 56
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 55
+ "__id__": 58
}
],
"_prefab": {
- "__id__": 56
+ "__id__": 59
},
"_opacity": 255,
"_color": {
@@ -2151,7 +2263,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 54
+ "__id__": 57
},
"_enabled": true,
"_materials": [
@@ -2196,7 +2308,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 53
+ "__id__": 56
},
"_enabled": true,
"_materials": [
@@ -2241,116 +2353,7 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 46
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 60
- }
- ],
- "_prefab": {
- "__id__": 61
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 9,
- "height": 42
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.731,
- -25.614,
- 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__": 59
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
- },
- "_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": "75FB/UWLZKL5NAIEn2ZFCM",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "New Sprite",
- "_objFlags": 0,
- "_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [],
"_active": true,
@@ -2384,7 +2387,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 109.525,
+ -2.731,
-25.614,
0,
0,
@@ -2443,6 +2446,115 @@
},
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "75FB/UWLZKL5NAIEn2ZFCM",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "New Sprite",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 49
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 66
+ }
+ ],
+ "_prefab": {
+ "__id__": 67
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 9,
+ "height": 42
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 109.525,
+ -25.614,
+ 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__": 65
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
+ },
+ "_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": {
@@ -2470,26 +2582,26 @@
"_name": "open2",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 67
+ "__id__": 70
},
{
- "__id__": 73
- },
- {
- "__id__": 79
+ "__id__": 76
},
{
"__id__": 82
+ },
+ {
+ "__id__": 85
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 85
+ "__id__": 88
},
"_opacity": 255,
"_color": {
@@ -2543,21 +2655,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [
{
- "__id__": 68
+ "__id__": 71
}
],
"_active": true,
"_components": [
{
- "__id__": 71
+ "__id__": 74
}
],
"_prefab": {
- "__id__": 72
+ "__id__": 75
},
"_opacity": 255,
"_color": {
@@ -2611,17 +2723,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 67
+ "__id__": 70
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 69
+ "__id__": 72
}
],
"_prefab": {
- "__id__": 70
+ "__id__": 73
},
"_opacity": 255,
"_color": {
@@ -2675,7 +2787,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 68
+ "__id__": 71
},
"_enabled": true,
"_materials": [
@@ -2720,7 +2832,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 67
+ "__id__": 70
},
"_enabled": true,
"_materials": [
@@ -2765,21 +2877,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [
{
- "__id__": 74
+ "__id__": 77
}
],
"_active": true,
"_components": [
{
- "__id__": 77
+ "__id__": 80
}
],
"_prefab": {
- "__id__": 78
+ "__id__": 81
},
"_opacity": 255,
"_color": {
@@ -2833,17 +2945,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 73
+ "__id__": 76
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 75
+ "__id__": 78
}
],
"_prefab": {
- "__id__": 76
+ "__id__": 79
},
"_opacity": 255,
"_color": {
@@ -2897,7 +3009,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 74
+ "__id__": 77
},
"_enabled": true,
"_materials": [
@@ -2942,7 +3054,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 73
+ "__id__": 76
},
"_enabled": true,
"_materials": [
@@ -2987,116 +3099,7 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 66
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 80
- }
- ],
- "_prefab": {
- "__id__": 81
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 9,
- "height": 42
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.499,
- -25.614,
- 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__": 79
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
- },
- "_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": "7edWhFIFxNgb95NFCAedVA",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "New Sprite",
- "_objFlags": 0,
- "_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [],
"_active": true,
@@ -3130,7 +3133,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 229.661,
+ -2.499,
-25.614,
0,
0,
@@ -3189,6 +3192,115 @@
},
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "7edWhFIFxNgb95NFCAedVA",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "New Sprite",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 69
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 86
+ }
+ ],
+ "_prefab": {
+ "__id__": 87
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 9,
+ "height": 42
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 229.661,
+ -25.614,
+ 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__": 85
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
+ },
+ "_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": {
@@ -3216,26 +3328,26 @@
"_name": "open3",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 87
+ "__id__": 90
},
{
- "__id__": 93
- },
- {
- "__id__": 99
+ "__id__": 96
},
{
"__id__": 102
+ },
+ {
+ "__id__": 105
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 105
+ "__id__": 108
},
"_opacity": 255,
"_color": {
@@ -3289,21 +3401,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [
{
- "__id__": 88
+ "__id__": 91
}
],
"_active": true,
"_components": [
{
- "__id__": 91
+ "__id__": 94
}
],
"_prefab": {
- "__id__": 92
+ "__id__": 95
},
"_opacity": 255,
"_color": {
@@ -3357,17 +3469,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 87
+ "__id__": 90
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 89
+ "__id__": 92
}
],
"_prefab": {
- "__id__": 90
+ "__id__": 93
},
"_opacity": 255,
"_color": {
@@ -3421,7 +3533,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 88
+ "__id__": 91
},
"_enabled": true,
"_materials": [
@@ -3466,7 +3578,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 87
+ "__id__": 90
},
"_enabled": true,
"_materials": [
@@ -3511,21 +3623,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [
{
- "__id__": 94
+ "__id__": 97
}
],
"_active": true,
"_components": [
{
- "__id__": 97
+ "__id__": 100
}
],
"_prefab": {
- "__id__": 98
+ "__id__": 101
},
"_opacity": 255,
"_color": {
@@ -3579,17 +3691,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 93
+ "__id__": 96
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 95
+ "__id__": 98
}
],
"_prefab": {
- "__id__": 96
+ "__id__": 99
},
"_opacity": 255,
"_color": {
@@ -3643,7 +3755,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 94
+ "__id__": 97
},
"_enabled": true,
"_materials": [
@@ -3688,7 +3800,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 93
+ "__id__": 96
},
"_enabled": true,
"_materials": [
@@ -3733,17 +3845,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 100
+ "__id__": 103
}
],
"_prefab": {
- "__id__": 101
+ "__id__": 104
},
"_opacity": 255,
"_color": {
@@ -3797,7 +3909,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 99
+ "__id__": 102
},
"_enabled": true,
"_materials": [
@@ -3842,17 +3954,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 103
+ "__id__": 106
}
],
"_prefab": {
- "__id__": 104
+ "__id__": 107
},
"_opacity": 255,
"_color": {
@@ -3906,7 +4018,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 102
+ "__id__": 105
},
"_enabled": true,
"_materials": [
diff --git a/assets/resources/prefab/wall/rightdown.prefab b/assets/resources/prefab/wall/rightdown.prefab
new file mode 100644
index 0000000..b2e7dcb
--- /dev/null
+++ b/assets/resources/prefab/wall/rightdown.prefab
@@ -0,0 +1,476 @@
+[
+ {
+ "__type__": "cc.Prefab",
+ "_name": "",
+ "_objFlags": 0,
+ "_native": "",
+ "data": {
+ "__id__": 1
+ },
+ "optimizationPolicy": 0,
+ "asyncLoadAssets": false,
+ "readonly": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "rightdown",
+ "_objFlags": 0,
+ "_parent": null,
+ "_children": [
+ {
+ "__id__": 2
+ },
+ {
+ "__id__": 5
+ }
+ ],
+ "_active": true,
+ "_components": [],
+ "_prefab": {
+ "__id__": 13
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 120,
+ "height": 120
+ },
+ "_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.Node",
+ "_name": "icon",
+ "_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": 64,
+ "height": 110
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 35.549,
+ 9.305,
+ 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__": "cfcc36af-42b3-41a5-874e-bb87f2ad3af1"
+ },
+ "_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": "17F4Ig/RNAUYniDvuLvn4u",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "wall",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 1
+ },
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 9
+ },
+ {
+ "__id__": 10
+ },
+ {
+ "__id__": 11
+ }
+ ],
+ "_prefab": {
+ "__id__": 12
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 120,
+ "height": 60
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -60,
+ 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.Node",
+ "_name": "num",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 5
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 7
+ }
+ ],
+ "_prefab": {
+ "__id__": 8
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 0,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 90.492,
+ 31.062,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "a9x69Mo3JOaYOJYZFMwnsg",
+ "sync": false
+ },
+ {
+ "__type__": "87a44m5f/pPAKIrsyArSr/V",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "number": null,
+ "type": 4,
+ "special": 0,
+ "color": 0,
+ "wall_SpriteFrames": {
+ "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
+ },
+ "down_SpriteFrames": null,
+ "freezeSpine": null,
+ "_id": ""
+ },
+ {
+ "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "auto_update_point": true,
+ "_id": ""
+ },
+ {
+ "__type__": "d2addiRqXVKQ4YEp6sK5d6R",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "_draw_collide": false,
+ "can_move": false,
+ "_collide_shape": 1,
+ "collide_group_id": 0,
+ "collide_scle": 1,
+ "_radius": 50,
+ "_size": {
+ "__type__": "cc.Size",
+ "width": 110,
+ "height": 10
+ },
+ "_polygon_points": [
+ {
+ "__type__": "cc.Vec2",
+ "x": -45,
+ "y": -45
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 45,
+ "y": -45
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 60,
+ "y": 40
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 70
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": -60,
+ "y": 40
+ }
+ ],
+ "_offset": {
+ "__type__": "cc.Vec2",
+ "x": 60,
+ "y": -45
+ },
+ "data_string": "100",
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "9c4l7rfONPk63bPFtWj9GC",
+ "sync": false
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "",
+ "sync": false
+ }
+]
\ No newline at end of file
diff --git a/assets/resources/prefab/wall/rightdown.prefab.meta b/assets/resources/prefab/wall/rightdown.prefab.meta
new file mode 100644
index 0000000..6262135
--- /dev/null
+++ b/assets/resources/prefab/wall/rightdown.prefab.meta
@@ -0,0 +1,9 @@
+{
+ "ver": "1.3.2",
+ "uuid": "58d75799-abbc-454d-bf35-9027ac7cc25e",
+ "importer": "prefab",
+ "optimizationPolicy": "AUTO",
+ "asyncLoadAssets": false,
+ "readonly": false,
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/assets/resources/prefab/wall/rightup.prefab b/assets/resources/prefab/wall/rightup.prefab
new file mode 100644
index 0000000..bc65841
--- /dev/null
+++ b/assets/resources/prefab/wall/rightup.prefab
@@ -0,0 +1,476 @@
+[
+ {
+ "__type__": "cc.Prefab",
+ "_name": "",
+ "_objFlags": 0,
+ "_native": "",
+ "data": {
+ "__id__": 1
+ },
+ "optimizationPolicy": 0,
+ "asyncLoadAssets": false,
+ "readonly": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "rightup",
+ "_objFlags": 0,
+ "_parent": null,
+ "_children": [
+ {
+ "__id__": 2
+ },
+ {
+ "__id__": 5
+ }
+ ],
+ "_active": true,
+ "_components": [],
+ "_prefab": {
+ "__id__": 13
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 120,
+ "height": 120
+ },
+ "_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.Node",
+ "_name": "icon",
+ "_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": 70,
+ "height": 122
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 33.034,
+ -11.041,
+ 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__": "80f35751-d652-4086-8d03-c7d67a2157ed"
+ },
+ "_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": "f7G1gnrQNEWZT2UHIrn73w",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "wall",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 1
+ },
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 9
+ },
+ {
+ "__id__": 10
+ },
+ {
+ "__id__": 11
+ }
+ ],
+ "_prefab": {
+ "__id__": 12
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 120,
+ "height": 60
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 0,
+ -60,
+ 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": "num",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 5
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 7
+ }
+ ],
+ "_prefab": {
+ "__id__": 8
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 0,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 33.506,
+ 60.693,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "0eVxennZdEJboXLz17jHwA",
+ "sync": false
+ },
+ {
+ "__type__": "87a44m5f/pPAKIrsyArSr/V",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "number": null,
+ "type": 4,
+ "special": 0,
+ "color": 0,
+ "wall_SpriteFrames": {
+ "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
+ },
+ "down_SpriteFrames": null,
+ "freezeSpine": null,
+ "_id": ""
+ },
+ {
+ "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "auto_update_point": true,
+ "_id": ""
+ },
+ {
+ "__type__": "d2addiRqXVKQ4YEp6sK5d6R",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 5
+ },
+ "_enabled": true,
+ "_draw_collide": false,
+ "can_move": false,
+ "_collide_shape": 1,
+ "collide_group_id": 0,
+ "collide_scle": 1,
+ "_radius": 50,
+ "_size": {
+ "__type__": "cc.Size",
+ "width": 10,
+ "height": 100
+ },
+ "_polygon_points": [
+ {
+ "__type__": "cc.Vec2",
+ "x": -45,
+ "y": -45
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 45,
+ "y": -45
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 60,
+ "y": 40
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 70
+ },
+ {
+ "__type__": "cc.Vec2",
+ "x": -60,
+ "y": 40
+ }
+ ],
+ "_offset": {
+ "__type__": "cc.Vec2",
+ "x": 50,
+ "y": 60
+ },
+ "data_string": "100",
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "06ziY4X0dPNb77eAVy8rMd",
+ "sync": false
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "",
+ "sync": false
+ }
+]
\ No newline at end of file
diff --git a/assets/resources/prefab/wall/rightup.prefab.meta b/assets/resources/prefab/wall/rightup.prefab.meta
new file mode 100644
index 0000000..6df54d0
--- /dev/null
+++ b/assets/resources/prefab/wall/rightup.prefab.meta
@@ -0,0 +1,9 @@
+{
+ "ver": "1.3.2",
+ "uuid": "912be168-513a-43df-9bd9-0a2e53bbc780",
+ "importer": "prefab",
+ "optimizationPolicy": "AUTO",
+ "asyncLoadAssets": false,
+ "readonly": false,
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/assets/resources/prefab/wall/up.prefab b/assets/resources/prefab/wall/up.prefab
index d93241a..c5d15cf 100644
--- a/assets/resources/prefab/wall/up.prefab
+++ b/assets/resources/prefab/wall/up.prefab
@@ -23,20 +23,20 @@
{
"__id__": 5
},
- {
- "__id__": 11
- },
{
"__id__": 14
},
{
- "__id__": 37
+ "__id__": 17
+ },
+ {
+ "__id__": 40
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 107
+ "__id__": 110
},
"_opacity": 255,
"_color": {
@@ -199,24 +199,28 @@
"_parent": {
"__id__": 1
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
"_active": true,
"_components": [
- {
- "__id__": 6
- },
- {
- "__id__": 7
- },
- {
- "__id__": 8
- },
{
"__id__": 9
+ },
+ {
+ "__id__": 10
+ },
+ {
+ "__id__": 11
+ },
+ {
+ "__id__": 12
}
],
"_prefab": {
- "__id__": 10
+ "__id__": 13
},
"_opacity": 255,
"_color": {
@@ -265,6 +269,114 @@
"groupIndex": 0,
"_id": ""
},
+ {
+ "__type__": "cc.Node",
+ "_name": "num",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 5
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 7
+ }
+ ],
+ "_prefab": {
+ "__id__": 8
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 22.25,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 69,
+ 49,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 5
+ },
+ "asset": {
+ "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
+ },
+ "fileId": "93sYUl5SxBRoTowrOf+n3a",
+ "sync": false
+ },
{
"__type__": "cc.Sprite",
"_name": "",
@@ -409,11 +521,11 @@
"_active": false,
"_components": [
{
- "__id__": 12
+ "__id__": 15
}
],
"_prefab": {
- "__id__": 13
+ "__id__": 16
},
"_opacity": 255,
"_color": {
@@ -467,7 +579,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 11
+ "__id__": 14
},
"_enabled": true,
"_materials": [
@@ -512,22 +624,22 @@
},
"_children": [
{
- "__id__": 15
+ "__id__": 18
},
{
- "__id__": 21
+ "__id__": 24
},
{
- "__id__": 26
+ "__id__": 29
},
{
- "__id__": 31
+ "__id__": 34
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 36
+ "__id__": 39
},
"_opacity": 255,
"_color": {
@@ -581,21 +693,21 @@
"_name": "freeze0",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 16
+ "__id__": 19
}
],
"_active": false,
"_components": [
{
- "__id__": 19
+ "__id__": 22
}
],
"_prefab": {
- "__id__": 20
+ "__id__": 23
},
"_opacity": 255,
"_color": {
@@ -649,17 +761,17 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 15
+ "__id__": 18
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 17
+ "__id__": 20
}
],
"_prefab": {
- "__id__": 18
+ "__id__": 21
},
"_opacity": 0,
"_color": {
@@ -713,7 +825,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 16
+ "__id__": 19
},
"_enabled": true,
"_materials": [
@@ -757,7 +869,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 15
+ "__id__": 18
},
"_enabled": false,
"_materials": [
@@ -800,21 +912,21 @@
"_name": "freeze1",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 22
+ "__id__": 25
}
],
"_active": false,
"_components": [
{
- "__id__": 24
+ "__id__": 27
}
],
"_prefab": {
- "__id__": 25
+ "__id__": 28
},
"_opacity": 255,
"_color": {
@@ -868,13 +980,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 21
+ "__id__": 24
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 23
+ "__id__": 26
},
"_opacity": 255,
"_color": {
@@ -939,7 +1051,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 21
+ "__id__": 24
},
"_enabled": true,
"_materials": [
@@ -984,21 +1096,21 @@
"_name": "freeze2",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 27
+ "__id__": 30
}
],
"_active": false,
"_components": [
{
- "__id__": 29
+ "__id__": 32
}
],
"_prefab": {
- "__id__": 30
+ "__id__": 33
},
"_opacity": 255,
"_color": {
@@ -1052,13 +1164,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 26
+ "__id__": 29
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 28
+ "__id__": 31
},
"_opacity": 255,
"_color": {
@@ -1123,7 +1235,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 26
+ "__id__": 29
},
"_enabled": true,
"_materials": [
@@ -1168,21 +1280,21 @@
"_name": "freeze3",
"_objFlags": 0,
"_parent": {
- "__id__": 14
+ "__id__": 17
},
"_children": [
{
- "__id__": 32
+ "__id__": 35
}
],
"_active": false,
"_components": [
{
- "__id__": 34
+ "__id__": 37
}
],
"_prefab": {
- "__id__": 35
+ "__id__": 38
},
"_opacity": 255,
"_color": {
@@ -1236,13 +1348,13 @@
"_name": "num",
"_objFlags": 0,
"_parent": {
- "__id__": 31
+ "__id__": 34
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 33
+ "__id__": 36
},
"_opacity": 255,
"_color": {
@@ -1307,7 +1419,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 31
+ "__id__": 34
},
"_enabled": true,
"_materials": [
@@ -1367,22 +1479,22 @@
},
"_children": [
{
- "__id__": 38
+ "__id__": 41
},
{
- "__id__": 46
+ "__id__": 49
},
{
- "__id__": 66
+ "__id__": 69
},
{
- "__id__": 86
+ "__id__": 89
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 106
+ "__id__": 109
},
"_opacity": 255,
"_color": {
@@ -1436,20 +1548,20 @@
"_name": "open0",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 39
+ "__id__": 42
},
{
- "__id__": 42
+ "__id__": 45
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 45
+ "__id__": 48
},
"_opacity": 255,
"_color": {
@@ -1503,113 +1615,8 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 38
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 40
- }
- ],
- "_prefab": {
"__id__": 41
},
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 0,
- "g": 255,
- "b": 248,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 55,
- "height": 25
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.346,
- -28.534,
- 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__": 39
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": null,
- "_type": 3,
- "_sizeMode": 0,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 1,
- "_isTrimmedMode": true,
- "_atlas": null,
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "89XNPTmj9EPLpnPjP9tDj9",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "node2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 38
- },
"_children": [],
"_active": true,
"_components": [
@@ -1635,14 +1642,14 @@
},
"_anchorPoint": {
"__type__": "cc.Vec2",
- "x": 1,
+ "x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 112.862,
+ -2.346,
-28.534,
0,
0,
@@ -1697,6 +1704,111 @@
"_atlas": null,
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "89XNPTmj9EPLpnPjP9tDj9",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "node2",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 41
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 46
+ }
+ ],
+ "_prefab": {
+ "__id__": 47
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 0,
+ "g": 255,
+ "b": 248,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 55,
+ "height": 25
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 1,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 112.862,
+ -28.534,
+ 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__": 45
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": null,
+ "_type": 3,
+ "_sizeMode": 0,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 1,
+ "_isTrimmedMode": true,
+ "_atlas": null,
+ "_id": ""
+ },
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -1724,26 +1836,26 @@
"_name": "open1",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 47
+ "__id__": 50
},
{
- "__id__": 53
- },
- {
- "__id__": 59
+ "__id__": 56
},
{
"__id__": 62
+ },
+ {
+ "__id__": 65
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 65
+ "__id__": 68
},
"_opacity": 255,
"_color": {
@@ -1797,21 +1909,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [
{
- "__id__": 48
+ "__id__": 51
}
],
"_active": true,
"_components": [
{
- "__id__": 51
+ "__id__": 54
}
],
"_prefab": {
- "__id__": 52
+ "__id__": 55
},
"_opacity": 255,
"_color": {
@@ -1865,17 +1977,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 47
+ "__id__": 50
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 49
+ "__id__": 52
}
],
"_prefab": {
- "__id__": 50
+ "__id__": 53
},
"_opacity": 255,
"_color": {
@@ -1929,7 +2041,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 48
+ "__id__": 51
},
"_enabled": true,
"_materials": [
@@ -1974,7 +2086,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 47
+ "__id__": 50
},
"_enabled": true,
"_materials": [
@@ -2019,21 +2131,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [
{
- "__id__": 54
+ "__id__": 57
}
],
"_active": true,
"_components": [
{
- "__id__": 57
+ "__id__": 60
}
],
"_prefab": {
- "__id__": 58
+ "__id__": 61
},
"_opacity": 255,
"_color": {
@@ -2087,17 +2199,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 53
+ "__id__": 56
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 55
+ "__id__": 58
}
],
"_prefab": {
- "__id__": 56
+ "__id__": 59
},
"_opacity": 255,
"_color": {
@@ -2151,7 +2263,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 54
+ "__id__": 57
},
"_enabled": true,
"_materials": [
@@ -2196,7 +2308,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 53
+ "__id__": 56
},
"_enabled": true,
"_materials": [
@@ -2241,116 +2353,7 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 46
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 60
- }
- ],
- "_prefab": {
- "__id__": 61
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 9,
- "height": 42
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.731,
- -25.614,
- 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__": 59
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
- },
- "_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": "0796YcjUtK44SylIFuKSfS",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "New Sprite",
- "_objFlags": 0,
- "_parent": {
- "__id__": 46
+ "__id__": 49
},
"_children": [],
"_active": true,
@@ -2384,7 +2387,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 109.525,
+ -2.731,
-25.614,
0,
0,
@@ -2443,6 +2446,115 @@
},
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "0796YcjUtK44SylIFuKSfS",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "New Sprite",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 49
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 66
+ }
+ ],
+ "_prefab": {
+ "__id__": 67
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 9,
+ "height": 42
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 109.525,
+ -25.614,
+ 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__": 65
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
+ },
+ "_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": {
@@ -2470,26 +2582,26 @@
"_name": "open2",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 67
+ "__id__": 70
},
{
- "__id__": 73
- },
- {
- "__id__": 79
+ "__id__": 76
},
{
"__id__": 82
+ },
+ {
+ "__id__": 85
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 85
+ "__id__": 88
},
"_opacity": 255,
"_color": {
@@ -2543,21 +2655,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [
{
- "__id__": 68
+ "__id__": 71
}
],
"_active": true,
"_components": [
{
- "__id__": 71
+ "__id__": 74
}
],
"_prefab": {
- "__id__": 72
+ "__id__": 75
},
"_opacity": 255,
"_color": {
@@ -2611,17 +2723,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 67
+ "__id__": 70
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 69
+ "__id__": 72
}
],
"_prefab": {
- "__id__": 70
+ "__id__": 73
},
"_opacity": 255,
"_color": {
@@ -2675,7 +2787,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 68
+ "__id__": 71
},
"_enabled": true,
"_materials": [
@@ -2720,7 +2832,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 67
+ "__id__": 70
},
"_enabled": true,
"_materials": [
@@ -2765,21 +2877,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [
{
- "__id__": 74
+ "__id__": 77
}
],
"_active": true,
"_components": [
{
- "__id__": 77
+ "__id__": 80
}
],
"_prefab": {
- "__id__": 78
+ "__id__": 81
},
"_opacity": 255,
"_color": {
@@ -2833,17 +2945,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 73
+ "__id__": 76
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 75
+ "__id__": 78
}
],
"_prefab": {
- "__id__": 76
+ "__id__": 79
},
"_opacity": 255,
"_color": {
@@ -2897,7 +3009,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 74
+ "__id__": 77
},
"_enabled": true,
"_materials": [
@@ -2942,7 +3054,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 73
+ "__id__": 76
},
"_enabled": true,
"_materials": [
@@ -2987,116 +3099,7 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 66
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 80
- }
- ],
- "_prefab": {
- "__id__": 81
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 9,
- "height": 42
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -2.499,
- -25.614,
- 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__": 79
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
- },
- "_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": "da6dzbF+dD55rj2zIZJC33",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "New Sprite",
- "_objFlags": 0,
- "_parent": {
- "__id__": 66
+ "__id__": 69
},
"_children": [],
"_active": true,
@@ -3130,7 +3133,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 229.661,
+ -2.499,
-25.614,
0,
0,
@@ -3189,6 +3192,115 @@
},
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "da6dzbF+dD55rj2zIZJC33",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "New Sprite",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 69
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 86
+ }
+ ],
+ "_prefab": {
+ "__id__": 87
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 9,
+ "height": 42
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 229.661,
+ -25.614,
+ 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__": 85
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
+ },
+ "_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": {
@@ -3216,26 +3328,26 @@
"_name": "open3",
"_objFlags": 0,
"_parent": {
- "__id__": 37
+ "__id__": 40
},
"_children": [
{
- "__id__": 87
+ "__id__": 90
},
{
- "__id__": 93
- },
- {
- "__id__": 99
+ "__id__": 96
},
{
"__id__": 102
+ },
+ {
+ "__id__": 105
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 105
+ "__id__": 108
},
"_opacity": 255,
"_color": {
@@ -3289,21 +3401,21 @@
"_name": "node1",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [
{
- "__id__": 88
+ "__id__": 91
}
],
"_active": true,
"_components": [
{
- "__id__": 91
+ "__id__": 94
}
],
"_prefab": {
- "__id__": 92
+ "__id__": 95
},
"_opacity": 255,
"_color": {
@@ -3357,17 +3469,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 87
+ "__id__": 90
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 89
+ "__id__": 92
}
],
"_prefab": {
- "__id__": 90
+ "__id__": 93
},
"_opacity": 255,
"_color": {
@@ -3421,7 +3533,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 88
+ "__id__": 91
},
"_enabled": true,
"_materials": [
@@ -3466,7 +3578,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 87
+ "__id__": 90
},
"_enabled": true,
"_materials": [
@@ -3511,21 +3623,21 @@
"_name": "node2",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [
{
- "__id__": 94
+ "__id__": 97
}
],
"_active": true,
"_components": [
{
- "__id__": 97
+ "__id__": 100
}
],
"_prefab": {
- "__id__": 98
+ "__id__": 101
},
"_opacity": 255,
"_color": {
@@ -3579,17 +3691,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 93
+ "__id__": 96
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 95
+ "__id__": 98
}
],
"_prefab": {
- "__id__": 96
+ "__id__": 99
},
"_opacity": 255,
"_color": {
@@ -3643,7 +3755,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 94
+ "__id__": 97
},
"_enabled": true,
"_materials": [
@@ -3688,7 +3800,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 93
+ "__id__": 96
},
"_enabled": true,
"_materials": [
@@ -3733,17 +3845,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 100
+ "__id__": 103
}
],
"_prefab": {
- "__id__": 101
+ "__id__": 104
},
"_opacity": 255,
"_color": {
@@ -3797,7 +3909,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 99
+ "__id__": 102
},
"_enabled": true,
"_materials": [
@@ -3842,17 +3954,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 86
+ "__id__": 89
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 103
+ "__id__": 106
}
],
"_prefab": {
- "__id__": 104
+ "__id__": 107
},
"_opacity": 255,
"_color": {
@@ -3906,7 +4018,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 102
+ "__id__": 105
},
"_enabled": true,
"_materials": [
diff --git a/assets/resources/prefab/wall/upLeft.prefab b/assets/resources/prefab/wall/upLeft.prefab
index 5cca3fa..6f89ea5 100644
--- a/assets/resources/prefab/wall/upLeft.prefab
+++ b/assets/resources/prefab/wall/upLeft.prefab
@@ -13,7 +13,7 @@
},
{
"__type__": "cc.Node",
- "_name": "upLeft",
+ "_name": "upleft",
"_objFlags": 0,
"_parent": null,
"_children": [
@@ -22,15 +22,12 @@
},
{
"__id__": 5
- },
- {
- "__id__": 10
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 15
+ "__id__": 13
},
"_opacity": 255,
"_color": {
@@ -106,8 +103,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
- "width": 138,
- "height": 146
+ "width": 140,
+ "height": 72
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@@ -118,8 +115,8 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- -2.2,
- -2.5,
+ 2.966,
+ 32.785,
0,
0,
0,
@@ -159,7 +156,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "232d4cf2-be5a-4a98-8d4d-10edb8325e08"
+ "__uuid__": "80fadb18-45ad-44f2-8fb0-ab08d70c375d"
},
"_type": 0,
"_sizeMode": 1,
@@ -185,7 +182,7 @@
"asset": {
"__id__": 0
},
- "fileId": "11Ipvom8JBbrjjsZ/u76ao",
+ "fileId": "77vP3VtglN0bNXF/JbZT9E",
"sync": false
},
{
@@ -195,21 +192,25 @@
"_parent": {
"__id__": 1
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
"_active": true,
"_components": [
{
- "__id__": 6
+ "__id__": 9
},
{
- "__id__": 7
+ "__id__": 10
},
{
- "__id__": 8
+ "__id__": 11
}
],
"_prefab": {
- "__id__": 9
+ "__id__": 12
},
"_opacity": 255,
"_color": {
@@ -233,12 +234,12 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 0,
-60,
0,
0,
0,
0,
+ 0,
1,
1,
1,
@@ -259,86 +260,100 @@
"_id": ""
},
{
- "__type__": "87a44m5f/pPAKIrsyArSr/V",
- "_name": "",
+ "__type__": "cc.Node",
+ "_name": "num",
"_objFlags": 0,
- "node": {
+ "_parent": {
"__id__": 5
},
- "_enabled": true,
- "number": null,
- "type": 4,
- "special": 0,
- "color": 0,
- "wall_SpriteFrames": {
- "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
- },
- "down_SpriteFrames": null,
- "_id": ""
- },
- {
- "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "auto_update_point": true,
- "_id": ""
- },
- {
- "__type__": "d2addiRqXVKQ4YEp6sK5d6R",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "_draw_collide": false,
- "can_move": false,
- "_collide_shape": 1,
- "collide_group_id": 0,
- "collide_scle": 1,
- "_radius": 50,
- "_size": {
- "__type__": "cc.Size",
- "width": 10,
- "height": 100
- },
- "_polygon_points": [
+ "_children": [],
+ "_active": true,
+ "_components": [
{
- "__type__": "cc.Vec2",
- "x": -45,
- "y": -45
- },
- {
- "__type__": "cc.Vec2",
- "x": 45,
- "y": -45
- },
- {
- "__type__": "cc.Vec2",
- "x": 60,
- "y": 40
- },
- {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 70
- },
- {
- "__type__": "cc.Vec2",
- "x": -60,
- "y": 40
+ "__id__": 7
}
],
- "_offset": {
- "__type__": "cc.Vec2",
- "x": -50,
- "y": 60
+ "_prefab": {
+ "__id__": 8
},
- "data_string": "100",
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 0,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 61,
+ 52,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
"_id": ""
},
{
@@ -349,85 +364,15 @@
"asset": {
"__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
},
- "fileId": "5bJJp7PQZPwaAqxILPAwV6",
+ "fileId": "571mEFkJlKKZjlaxTF2a43",
"sync": false
},
- {
- "__type__": "cc.Node",
- "_name": "wall",
- "_objFlags": 0,
- "_parent": {
- "__id__": 1
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 11
- },
- {
- "__id__": 12
- },
- {
- "__id__": 13
- }
- ],
- "_prefab": {
- "__id__": 14
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 120,
- "height": 60
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -60,
- 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__": "87a44m5f/pPAKIrsyArSr/V",
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 10
+ "__id__": 5
},
"_enabled": true,
"number": null,
@@ -438,6 +383,7 @@
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"down_SpriteFrames": null,
+ "freezeSpine": null,
"_id": ""
},
{
@@ -445,7 +391,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 10
+ "__id__": 5
},
"_enabled": true,
"auto_update_point": true,
@@ -456,7 +402,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 10
+ "__id__": 5
},
"_enabled": true,
"_draw_collide": false,
@@ -508,7 +454,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 10
+ "__id__": 5
},
"asset": {
"__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
diff --git a/assets/resources/prefab/wall/upRight.prefab b/assets/resources/prefab/wall/upRight.prefab
index 6dba6af..a8886b7 100644
--- a/assets/resources/prefab/wall/upRight.prefab
+++ b/assets/resources/prefab/wall/upRight.prefab
@@ -13,7 +13,7 @@
},
{
"__type__": "cc.Node",
- "_name": "upRight",
+ "_name": "upright",
"_objFlags": 0,
"_parent": null,
"_children": [
@@ -22,15 +22,12 @@
},
{
"__id__": 5
- },
- {
- "__id__": 10
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 15
+ "__id__": 13
},
"_opacity": 255,
"_color": {
@@ -106,8 +103,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
- "width": 137,
- "height": 145
+ "width": 140,
+ "height": 72
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@@ -118,8 +115,8 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- -1.8,
- -2.5,
+ -2.399,
+ 35.126,
0,
0,
0,
@@ -159,7 +156,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "b679c771-a901-4df3-a592-4ebd4cad002e"
+ "__uuid__": "a77a1165-4c89-4e9c-af8c-f3b0e16855bd"
},
"_type": 0,
"_sizeMode": 1,
@@ -185,7 +182,7 @@
"asset": {
"__id__": 0
},
- "fileId": "ae5o0y6RJJLZTzQFOYCKeP",
+ "fileId": "41gnQzAlBNy7AnSvTD4tsp",
"sync": false
},
{
@@ -195,21 +192,25 @@
"_parent": {
"__id__": 1
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 6
+ }
+ ],
"_active": true,
"_components": [
{
- "__id__": 6
+ "__id__": 9
},
{
- "__id__": 7
+ "__id__": 10
},
{
- "__id__": 8
+ "__id__": 11
}
],
"_prefab": {
- "__id__": 9
+ "__id__": 12
},
"_opacity": 255,
"_color": {
@@ -233,12 +234,12 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- 0,
-60,
0,
0,
0,
0,
+ 0,
1,
1,
1,
@@ -259,86 +260,100 @@
"_id": ""
},
{
- "__type__": "87a44m5f/pPAKIrsyArSr/V",
- "_name": "",
+ "__type__": "cc.Node",
+ "_name": "num",
"_objFlags": 0,
- "node": {
+ "_parent": {
"__id__": 5
},
- "_enabled": true,
- "number": null,
- "type": 4,
- "special": 0,
- "color": 0,
- "wall_SpriteFrames": {
- "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
- },
- "down_SpriteFrames": null,
- "_id": ""
- },
- {
- "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "auto_update_point": true,
- "_id": ""
- },
- {
- "__type__": "d2addiRqXVKQ4YEp6sK5d6R",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "_draw_collide": false,
- "can_move": false,
- "_collide_shape": 1,
- "collide_group_id": 0,
- "collide_scle": 1,
- "_radius": 50,
- "_size": {
- "__type__": "cc.Size",
- "width": 10,
- "height": 100
- },
- "_polygon_points": [
+ "_children": [],
+ "_active": true,
+ "_components": [
{
- "__type__": "cc.Vec2",
- "x": -45,
- "y": -45
- },
- {
- "__type__": "cc.Vec2",
- "x": 45,
- "y": -45
- },
- {
- "__type__": "cc.Vec2",
- "x": 60,
- "y": 40
- },
- {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 70
- },
- {
- "__type__": "cc.Vec2",
- "x": -60,
- "y": 40
+ "__id__": 7
}
],
- "_offset": {
- "__type__": "cc.Vec2",
- "x": 50,
- "y": 60
+ "_prefab": {
+ "__id__": 8
},
- "data_string": "100",
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 0,
+ "height": 50.4
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 56.492,
+ 48.027,
+ 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.Label",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 6
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_string": "",
+ "_N$string": "",
+ "_fontSize": 40,
+ "_lineHeight": 40,
+ "_enableWrapText": true,
+ "_N$file": null,
+ "_isSystemFontUsed": true,
+ "_spacingX": 0,
+ "_batchAsBitmap": false,
+ "_styleFlags": 0,
+ "_underlineHeight": 0,
+ "_N$horizontalAlign": 1,
+ "_N$verticalAlign": 1,
+ "_N$fontFamily": "Arial",
+ "_N$overflow": 0,
+ "_N$cacheMode": 0,
"_id": ""
},
{
@@ -349,85 +364,15 @@
"asset": {
"__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
},
- "fileId": "06ziY4X0dPNb77eAVy8rMd",
+ "fileId": "1eBteEu/JFTaxjHjLOxxGM",
"sync": false
},
- {
- "__type__": "cc.Node",
- "_name": "wall",
- "_objFlags": 0,
- "_parent": {
- "__id__": 1
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 11
- },
- {
- "__id__": 12
- },
- {
- "__id__": 13
- }
- ],
- "_prefab": {
- "__id__": 14
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 120,
- "height": 60
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -60,
- 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__": "87a44m5f/pPAKIrsyArSr/V",
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 10
+ "__id__": 5
},
"_enabled": true,
"number": null,
@@ -438,6 +383,7 @@
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"down_SpriteFrames": null,
+ "freezeSpine": null,
"_id": ""
},
{
@@ -445,7 +391,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 10
+ "__id__": 5
},
"_enabled": true,
"auto_update_point": true,
@@ -456,7 +402,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 10
+ "__id__": 5
},
"_enabled": true,
"_draw_collide": false,
@@ -508,7 +454,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 10
+ "__id__": 5
},
"asset": {
"__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"