修复边框问题
This commit is contained in:
parent
a0441e81ec
commit
af31e14bc1
|
@ -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() {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{741,1190},{138,69}}</string>
|
||||
<string>{{755,1029},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -30,7 +30,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,1113},{258,69}}</string>
|
||||
<string>{{356,923},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -45,7 +45,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{378,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{571,285},{378,69}}</string>
|
||||
<string>{{381,600},{378,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -60,7 +60,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,1247},{61,146}}</string>
|
||||
<string>{{761,547},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -75,7 +75,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,266}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{578,482},{61,266}}</string>
|
||||
<string>{{1,925},{61,266}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -90,7 +90,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,386}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{191,356},{61,386}}</string>
|
||||
<string>{{389,253},{61,386}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -105,7 +105,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{584,901},{138,69}}</string>
|
||||
<string>{{759,673},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -120,7 +120,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{317,490},{258,69}}</string>
|
||||
<string>{{759,744},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -135,7 +135,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{378,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{191,1},{378,69}}</string>
|
||||
<string>{{1,254},{378,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -150,9 +150,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{65,1167},{61,146}}</string>
|
||||
<string>{{779,169},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>1color5.png</key>
|
||||
<dict>
|
||||
|
@ -165,7 +165,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{579,356},{61,267}}</string>
|
||||
<string>{{1,673},{61,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -180,9 +180,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,387}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1,390},{61,387}}</string>
|
||||
<string>{{390,1},{61,387}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>2color1.png</key>
|
||||
<dict>
|
||||
|
@ -195,9 +195,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{733,613},{138,69}}</string>
|
||||
<string>{{617,745},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>2color2.png</key>
|
||||
<dict>
|
||||
|
@ -210,7 +210,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{317,561},{258,69}}</string>
|
||||
<string>{{756,886},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -225,7 +225,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{378,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{191,72},{378,69}}</string>
|
||||
<string>{{381,316},{378,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -240,9 +240,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{696,972},{61,146}}</string>
|
||||
<string>{{777,232},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>2color5.png</key>
|
||||
<dict>
|
||||
|
@ -255,7 +255,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,266}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{317,632},{61,266}}</string>
|
||||
<string>{{1,862},{61,266}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -270,9 +270,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,386}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{64,779},{61,386}}</string>
|
||||
<string>{{1,128},{61,386}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>3color1.png</key>
|
||||
<dict>
|
||||
|
@ -285,7 +285,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{724,901},{138,69}}</string>
|
||||
<string>{{616,816},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -300,7 +300,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{316,695},{258,69}}</string>
|
||||
<string>{{756,957},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -315,7 +315,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{378,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{571,1},{378,69}}</string>
|
||||
<string>{{1,325},{378,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -330,7 +330,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{557,1120},{61,146}}</string>
|
||||
<string>{{777,295},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -345,9 +345,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{190,688},{61,267}}</string>
|
||||
<string>{{1,736},{61,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>3color6.png</key>
|
||||
<dict>
|
||||
|
@ -360,9 +360,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,387}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{65,1},{61,387}}</string>
|
||||
<string>{{390,64},{61,387}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>4color1.png</key>
|
||||
<dict>
|
||||
|
@ -375,7 +375,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{409,1247},{138,69}}</string>
|
||||
<string>{{616,887},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -390,9 +390,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{316,766},{258,69}}</string>
|
||||
<string>{{1,1001},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>4color3.png</key>
|
||||
<dict>
|
||||
|
@ -405,7 +405,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{378,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{191,143},{378,69}}</string>
|
||||
<string>{{381,387},{378,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -420,7 +420,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{529,1183},{61,146}}</string>
|
||||
<string>{{761,358},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -435,9 +435,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{254,419},{61,267}}</string>
|
||||
<string>{{348,671},{61,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>4color6.png</key>
|
||||
<dict>
|
||||
|
@ -450,9 +450,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,387}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1,779},{61,387}}</string>
|
||||
<string>{{1,65},{61,387}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>5color1.png</key>
|
||||
<dict>
|
||||
|
@ -465,7 +465,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{549,1246},{138,69}}</string>
|
||||
<string>{{616,958},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -480,9 +480,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{316,837},{258,69}}</string>
|
||||
<string>{{72,1001},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>5color3.png</key>
|
||||
<dict>
|
||||
|
@ -495,7 +495,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{378,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{571,72},{378,69}}</string>
|
||||
<string>{{1,396},{378,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -510,9 +510,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{716,753},{61,146}}</string>
|
||||
<string>{{761,421},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>5color5.png</key>
|
||||
<dict>
|
||||
|
@ -525,7 +525,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,266}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{316,908},{61,266}}</string>
|
||||
<string>{{348,797},{61,266}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -540,9 +540,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,386}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{127,390},{61,386}}</string>
|
||||
<string>{{389,190},{61,386}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>6color1.png</key>
|
||||
<dict>
|
||||
|
@ -555,9 +555,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{842,747},{138,69}}</string>
|
||||
<string>{{356,1177},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>6color2.png</key>
|
||||
<dict>
|
||||
|
@ -570,7 +570,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{190,957},{258,69}}</string>
|
||||
<string>{{143,1001},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -585,7 +585,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{378,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{191,214},{378,69}}</string>
|
||||
<string>{{381,458},{378,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -600,9 +600,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{779,753},{61,146}}</string>
|
||||
<string>{{761,484},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>6color5.png</key>
|
||||
<dict>
|
||||
|
@ -615,9 +615,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{253,688},{61,267}}</string>
|
||||
<string>{{348,734},{61,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>6color6.png</key>
|
||||
<dict>
|
||||
|
@ -630,7 +630,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,387}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{64,390},{61,387}}</string>
|
||||
<string>{{956,71},{61,387}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -645,7 +645,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{759,1119},{138,69}}</string>
|
||||
<string>{{615,1029},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -660,9 +660,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,971},{258,69}}</string>
|
||||
<string>{{214,1001},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>7color3.png</key>
|
||||
<dict>
|
||||
|
@ -675,7 +675,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{378,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{571,143},{378,69}}</string>
|
||||
<string>{{1,467},{378,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -690,9 +690,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{62,147}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1,1168},{62,147}}</string>
|
||||
<string>{{779,105},{62,147}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>7color5.png</key>
|
||||
<dict>
|
||||
|
@ -705,9 +705,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{62,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{190,419},{62,267}}</string>
|
||||
<string>{{1,609},{62,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>7color6.png</key>
|
||||
<dict>
|
||||
|
@ -722,7 +722,7 @@
|
|||
<key>textureRect</key>
|
||||
<string>{{1,1},{62,387}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>8color1.png</key>
|
||||
<dict>
|
||||
|
@ -735,7 +735,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{898,894},{138,69}}</string>
|
||||
<string>{{618,1100},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -750,7 +750,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{259,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{317,419},{259,69}}</string>
|
||||
<string>{{757,815},{259,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -765,7 +765,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{378,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{191,285},{378,69}}</string>
|
||||
<string>{{381,529},{378,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -780,7 +780,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,145}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{913,747},{61,145}}</string>
|
||||
<string>{{418,1029},{61,145}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -795,7 +795,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,266}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,1184},{61,266}}</string>
|
||||
<string>{{348,860},{61,266}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -810,9 +810,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,386}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{127,778},{61,386}}</string>
|
||||
<string>{{1,191},{61,386}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>9color1.png</key>
|
||||
<dict>
|
||||
|
@ -825,7 +825,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{899,1034},{138,69}}</string>
|
||||
<string>{{689,1100},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -840,9 +840,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,1042},{258,69}}</string>
|
||||
<string>{{285,1001},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>9color3.png</key>
|
||||
<dict>
|
||||
|
@ -855,7 +855,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{378,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{571,214},{378,69}}</string>
|
||||
<string>{{1,538},{378,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -870,7 +870,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{60,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{128,1166},{60,146}}</string>
|
||||
<string>{{356,1029},{60,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -885,7 +885,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{578,419},{61,267}}</string>
|
||||
<string>{{1,799},{61,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -900,9 +900,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,387}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{128,1},{61,387}}</string>
|
||||
<string>{{390,127},{61,387}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>dikuai.png</key>
|
||||
<dict>
|
||||
|
@ -915,10 +915,100 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{120,120}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{848,356},{120,120}}</string>
|
||||
<string>{{496,1133},{120,120}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>downLeft.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{-34,-11}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{76,124}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{270,751},{76,124}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>downRight.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{33,-12}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{70,122}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{269,877},{70,122}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>leftDown.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{-1,-37}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{140,72}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{945,460},{140,72}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>leftUp.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{-39,16}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{64,114}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{895,1028},{64,114}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>rightDown.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{-1,-35}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{140,76}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{270,609},{140,76}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>rightUp.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{36,15}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{64,110}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{895,1094},{64,110}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>shu_zl1.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
|
@ -930,9 +1020,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{9,42}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,957},{9,42}}</string>
|
||||
<string>{{940,105},{9,42}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>shu_zl1_1.png</key>
|
||||
<dict>
|
||||
|
@ -945,7 +1035,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{58,34}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{190,1280},{58,34}}</string>
|
||||
<string>{{959,35},{58,34}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -960,7 +1050,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{118,34}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{705,1120},{118,34}}</string>
|
||||
<string>{{909,358},{118,34}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -975,9 +1065,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{178,34}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{521,971},{178,34}}</string>
|
||||
<string>{{779,35},{178,34}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>shu_zl2.png</key>
|
||||
<dict>
|
||||
|
@ -990,7 +1080,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{40,10}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{951,1},{40,10}}</string>
|
||||
<string>{{928,105},{40,10}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -1005,7 +1095,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,54}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{759,545},{32,54}}</string>
|
||||
<string>{{961,1},{32,54}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -1020,9 +1110,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,59}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{864,887},{32,59}}</string>
|
||||
<string>{{356,994},{32,59}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>shu_zl2_2.png</key>
|
||||
<dict>
|
||||
|
@ -1035,9 +1125,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,114}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{689,1261},{32,114}}</string>
|
||||
<string>{{909,600},{32,114}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>shu_zl2_22.png</key>
|
||||
<dict>
|
||||
|
@ -1050,9 +1140,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,120}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{847,478},{32,120}}</string>
|
||||
<string>{{909,478},{32,120}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>shu_zl2_3.png</key>
|
||||
<dict>
|
||||
|
@ -1065,7 +1155,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,175}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{577,579},{32,175}}</string>
|
||||
<string>{{779,71},{32,175}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -1080,7 +1170,52 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,180}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{577,545},{32,180}}</string>
|
||||
<string>{{779,1},{32,180}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>upLeft.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{-1,34}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{140,72}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{943,602},{140,72}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>upRight.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{-2,35}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{140,72}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{617,671},{140,72}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>wal_up.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{-39,16}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{64,114}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{895,1028},{64,114}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -1095,7 +1230,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{899,1174},{138,69}}</string>
|
||||
<string>{{760,1100},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -1110,70 +1245,10 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{804,684},{61,146}}</string>
|
||||
<string>{{761,610},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>wall3.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{138,146}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{138,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{585,613},{138,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>wall4.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{137,145}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{137,145}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{759,972},{137,145}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>wall5.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{137,146}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{137,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{557,972},{137,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>wall6.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{138,146}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{138,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{576,753},{138,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>wall7.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
|
@ -1185,7 +1260,22 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{190,1217},{61,69}}</string>
|
||||
<string>{{831,1100},{61,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>wall_down.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{-1,-37}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{140,72}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{945,460},{140,72}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
@ -1200,7 +1290,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{132,137}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{842,545},{132,137}}</string>
|
||||
<string>{{481,994},{132,137}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
@ -1216,9 +1306,9 @@
|
|||
<key>realTextureFileName</key>
|
||||
<string>door.png</string>
|
||||
<key>size</key>
|
||||
<string>{975,1317}</string>
|
||||
<string>{1018,1260}</string>
|
||||
<key>smartupdate</key>
|
||||
<string>$TexturePacker:SmartUpdate:f5bae28f66ea3b1a792b8af8926caa86:2de56ca10f79f320e01cf0fec7444b62:db7a2f380db9915dc051ce2c1170bc84$</string>
|
||||
<string>$TexturePacker:SmartUpdate:a481c0bc13ca6bd4b9ff4d2cf457789e:35d2cb3770c387f1c34752aed28ef2bd:db7a2f380db9915dc051ce2c1170bc84$</string>
|
||||
<key>textureFileName</key>
|
||||
<string>door.png</string>
|
||||
</dict>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 130 KiB After Width: | Height: | Size: 133 KiB |
|
@ -8,8 +8,8 @@
|
|||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 975,
|
||||
"height": 1317,
|
||||
"width": 1018,
|
||||
"height": 1260,
|
||||
"platformSettings": {},
|
||||
"subMetas": {}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -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": {
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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": {
|
||||
|
|
File diff suppressed because it is too large
Load Diff
476
assets/resources/prefab/wall/leftdown.prefab
Normal file
476
assets/resources/prefab/wall/leftdown.prefab
Normal file
|
@ -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
|
||||
}
|
||||
]
|
9
assets/resources/prefab/wall/leftdown.prefab.meta
Normal file
9
assets/resources/prefab/wall/leftdown.prefab.meta
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "6880788c-f9ff-4a7f-a2a8-d84b636c7175",
|
||||
"importer": "prefab",
|
||||
"optimizationPolicy": "AUTO",
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false,
|
||||
"subMetas": {}
|
||||
}
|
476
assets/resources/prefab/wall/leftup.prefab
Normal file
476
assets/resources/prefab/wall/leftup.prefab
Normal file
|
@ -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
|
||||
}
|
||||
]
|
9
assets/resources/prefab/wall/leftup.prefab.meta
Normal file
9
assets/resources/prefab/wall/leftup.prefab.meta
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "a2e2aab1-b8b2-4858-9d8c-14bdad524c08",
|
||||
"importer": "prefab",
|
||||
"optimizationPolicy": "AUTO",
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false,
|
||||
"subMetas": {}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
476
assets/resources/prefab/wall/rightdown.prefab
Normal file
476
assets/resources/prefab/wall/rightdown.prefab
Normal file
|
@ -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
|
||||
}
|
||||
]
|
9
assets/resources/prefab/wall/rightdown.prefab.meta
Normal file
9
assets/resources/prefab/wall/rightdown.prefab.meta
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "58d75799-abbc-454d-bf35-9027ac7cc25e",
|
||||
"importer": "prefab",
|
||||
"optimizationPolicy": "AUTO",
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false,
|
||||
"subMetas": {}
|
||||
}
|
476
assets/resources/prefab/wall/rightup.prefab
Normal file
476
assets/resources/prefab/wall/rightup.prefab
Normal file
|
@ -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
|
||||
}
|
||||
]
|
9
assets/resources/prefab/wall/rightup.prefab.meta
Normal file
9
assets/resources/prefab/wall/rightup.prefab.meta
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "912be168-513a-43df-9bd9-0a2e53bbc780",
|
||||
"importer": "prefab",
|
||||
"optimizationPolicy": "AUTO",
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false,
|
||||
"subMetas": {}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue
Block a user